* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #f6d365, #fda085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.2rem;
    color: #cccccc;
    letter-spacing: 2px;
}

.coming-soon {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.time-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.time-block:hover {
    transform: translateY(-5px);
}

.time-block span {
    display: block;
}

.time-block span:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f6d365;
}

.label {
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

.newsletter {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

#subscribe-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    flex-grow: 1;
    transition: background-color 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #f6d365, #fda085);
    color: #1a1a1a;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 211, 101, 0.3);
}

.floating-bottles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.bottle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.bottle1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bottle2 {
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.bottle3 {
    top: 40%;
    left: 80%;
    animation-delay: -4s;
}

.game-section {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.9s backwards;
}

.game-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-button {
    margin-top: 1rem;
    background: linear-gradient(45deg, #f6d365, #fda085);
}

#game-container {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

#game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.card {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card.flipped {
    background: linear-gradient(45deg, #f6d365, #fda085);
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    margin-bottom: 1rem;
}

.social-icon {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #f6d365;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    #countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .time-block {
        min-width: 100px;
        padding: 1rem;
    }

    #subscribe-form {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
} 