:root {
    --teal: #5eced4;
    --teal-dark: #3ba8ad;
    --red: #e63946;
    --white: #ffffff;
    --yellow: #ffd23f;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Playful Background */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('assets/background.jpg');
    background-size: 50%;
    /* Smaller pattern */
    background-position: center center;
    background-repeat: repeat;
}

/* Light overlay for text readability */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(94, 206, 212, 0.3);
    pointer-events: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

/* Hero Section */
.hero {
    margin-bottom: 3rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: white;
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: inline-block;
    animation: bounceIn 1.5s ease-out;
}

.hero .subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--teal-dark);
    background: white;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: fadeIn 1.5s ease-out 0.5s backwards;
}

/* Video Section */
.video-section {
    width: 100%;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 1s forwards;
}

.video-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1rem;
    background: white;
    display: inline-block;
    padding: 15px 35px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.video-section p {
    font-size: 1.2rem;
    color: var(--teal-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    background: white;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
    padding: 15px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container {
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #f0f0f0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 2rem;
    color: var(--red);
    font-size: 1.3rem;
    font-weight: 600;
    background: white;
    display: inline-block;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    animation: fadeIn 1.5s ease-out 1.5s backwards;
}

/* Snow container */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: var(--white);
    font-size: 1.2em;
    font-family: Arial;
    opacity: 0.9;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-100px);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fall {
    to {
        transform: translateY(105vh);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
        text-shadow:
            2px 2px 0 var(--red),
            4px 4px 0 var(--yellow),
            0 0 15px rgba(0, 0, 0, 0.3);
    }

    .hero .subtitle {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .container {
        padding: 2rem 1rem;
    }
}