:root {
    --primary: #fad429;
    --bg-white: #fdfeff;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --glass: rgba(253, 254, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #FFED99;
    bottom: -50px;
    left: -50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    padding: 2rem 0;
}

.logo {
    height: 40px;
}

.hero {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex: 1;
    width: 100%;
    padding: 2rem 0;
}

.mascot-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 500px;
}

.mascot {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.content {
    flex: 1;
    text-align: left;
}

.title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), 0 0 10px rgba(250, 212, 41, 0.2);
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.countdown-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.signup-form {
    display: flex;
    gap: 1rem;
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 1rem;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: var(--primary);
}

button {
    background-color: var(--primary);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 212, 41, 0.3);
}

.socials {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
}

.social-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary);
}

@media (max-width: 968px) {
    .container {
        padding: 1.5rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 0;
    }

    .mascot-wrapper {
        max-width: 260px;
        order: -1;
        /* Ensure mascot is above content */
    }

    .content {
        text-align: center;
        width: 100%;
    }

    .title {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }

    .tagline {
        font-size: 1.1rem;
        margin: 0 auto 1.5rem;
        padding: 0 1rem;
    }

    .countdown-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .signup-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    button {
        width: 100%;
    }

    .socials {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .social-link {
        font-size: 0.9rem;
    }
}