* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Arial', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.hidden {
    display: none !important;
}

/* Login Dropdown Styles */
.login-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.login-toggle {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.login-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.login-dropdown {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid white;
    border-radius: 10px;
    padding: 20px;
    min-width: 250px;
    display: none;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease;
}

.login-dropdown.active {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-dropdown input {
    padding: 10px 15px;
    border: 2px solid white;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-dropdown input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.login-dropdown input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff69b4;
}

.login-btn {
    padding: 10px 15px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.login-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

.small-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flower {
    position: relative;
    width: 200px;
    height: 200px;
    animation: floatIn 1.2s ease-out;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stamen {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #ffeb3b, #ff9800);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(255, 152, 0, 0.8);
    }
}

.petal {
    position: absolute;
    width: 50px;
    height: 80px;
    background: linear-gradient(180deg, #ff69b4, #ff1493);
    border-radius: 50% 50% 50% 0;
    top: 50%;
    left: 50%;
    transform-origin: center bottom;
    box-shadow: 0 4px 10px rgba(255, 20, 147, 0.3);
}

.petal-1 {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-60px) rotate(90deg);
    animation: bloomPetal 3s ease-in-out infinite;
}

.petal-2 {
    transform: translate(-50%, -50%) rotate(60deg) translateY(-60px) rotate(90deg);
    animation: bloomPetal 3s ease-in-out infinite 0.2s;
}

.petal-3 {
    transform: translate(-50%, -50%) rotate(120deg) translateY(-60px) rotate(90deg);
    animation: bloomPetal 3s ease-in-out infinite 0.4s;
}

.petal-4 {
    transform: translate(-50%, -50%) rotate(180deg) translateY(-60px) rotate(90deg);
    animation: bloomPetal 3s ease-in-out infinite 0.6s;
}

.petal-5 {
    transform: translate(-50%, -50%) rotate(240deg) translateY(-60px) rotate(90deg);
    animation: bloomPetal 3s ease-in-out infinite 0.8s;
}

.petal-6 {
    transform: translate(-50%, -50%) rotate(300deg) translateY(-60px) rotate(90deg);
    animation: bloomPetal 3s ease-in-out infinite 1s;
}

@keyframes bloomPetal {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-60px) rotate(90deg) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-80px) rotate(90deg) scale(1);
    }
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-60px) rotate(90deg) scale(0.8);
    }
}

.petal-1 { --angle: 0deg; }
.petal-2 { --angle: 60deg; }
.petal-3 { --angle: 120deg; }
.petal-4 { --angle: 180deg; }
.petal-5 { --angle: 240deg; }
.petal-6 { --angle: 300deg; }

/* Responsive design */
@media (max-width: 600px) {
    .login-dropdown {
        min-width: 200px;
        padding: 15px;
    }
    
    .flower {
        width: 150px;
        height: 150px;
    }
    
    .petal {
        width: 35px;
        height: 60px;
    }
}

