/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    color: #1a1a2e;
    background: 
        radial-gradient(ellipse 90% 60% at 20% 40%, rgba(120, 180, 222, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse 75% 50% at 80% 60%, rgba(120, 180, 222, 0.7) 0%, transparent 30%),
        radial-gradient(ellipse 100% 70% at 45% 70%, rgba(120, 180, 222, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 85% 65% at 70% 30%, rgba(120, 180, 222, 0.5) 0%, transparent 30%),
        #ffffff;
    background-attachment: fixed;
    line-height: 1.8;
    font-size: 1.1rem;
    min-height: 100vh;
}

/* Section Styling */
.section {
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    text-align: center;
    padding: 2rem;
}

.section-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.header-section {
    min-height: 100vh;
}


/* Mascot Logo */
.mascot-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
    border-radius: 20%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Header Styling */
.section-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a2e;
    text-shadow: none;
}

.section-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a2e;
    text-shadow: none;
}

/* Content Sections */
.content-section {
    background: rgba(30, 58, 95, 0.1);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(30, 58, 95, 0.3);
    margin: 4rem auto;
    padding: 3rem 2rem;
    max-width: 750px;
    color: #1a1a2e;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Two Column Layout */
.two-column-section {
    max-width: 1200px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
}

.left-column,
.right-column {
    margin: 0;
}

.why-it-works {
    text-align: left;
}

.why-it-works h2 {
    text-align: center;
}

/* Content & CTA Sections */
.cta-section {
    background: rgba(30, 58, 95, 0.1);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(30, 58, 95, 0.3);
    margin: 4rem auto;
    padding: 3rem 2rem;
    max-width: 750px;
    color: #1a1a2e;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-section {
    text-align: center;
}

/* Specific content sections */
.final-cta {
    background: rgba(30, 58, 95, 0.15);
    border: 2px solid rgba(30, 58, 95, 0.4);
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.no-spam {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}


/* List styling */
ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

ul li {
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

ul li .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #1e3a5f;
    transform: translateY(4px);
}

/* Nested list styling */
ul ul {
    margin: 0.5rem 0 0 0;
    padding-left: 0;
}

ul ul li {
    margin-bottom: 0;
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

ul ul li::before {
    content: "◦";
    color: #1e3a5f;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Button Styling */
.join-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1e3a5f;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(30, 58, 95, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.join-button:hover {
    background-color: #2c4f7c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(30, 58, 95, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.primary-cta {
    font-size: 1.4rem;
    padding: 1.2rem 3rem;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Iframe styling */
iframe {
    display: block;
    margin: 2rem auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #1a1a2e;
}

.footer-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}


/* Responsive Design */
@media (max-width: 768px) {
    .mascot-logo {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }

    .section-content h1 {
        font-size: 2.8rem;
    }

    .section-content h2 {
        font-size: 1.5rem;
    }

    .content-section,
    .cta-section {
        margin: 2rem 1.5rem;
        padding: 2rem 1.5rem;
    }

    .section {
        min-height: 300px;
    }

    .header-section {
        min-height: 100vh;
    }

    /* Two column mobile adjustments */
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

}

@media (max-width: 480px) {
    .mascot-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }

    .section-content h1 {
        font-size: 2.2rem;
    }

    .section-content h2 {
        font-size: 1.2rem;
    }

    .join-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .content-section, .cta-section {
        margin: 1.5rem 1.5rem;
        padding: 1.5rem 1.5rem;
    }
}
