:root {
    --bg-color: #121212; 
    --text-color: #EAEAEA;
    --accent-color: #00796B;
    --dim-text-color: #88A0B8;
    --card-bg: rgba(24, 26, 27, 0.7);
}

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

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background-color: transparent;
    color: var(--text-color);
    scroll-behavior: smooth;
}

#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
    z-index: 1;
    background-color: var(--bg-color); /* Fallback color */
}

.scroll-container {
    width: 100%;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.hero-section .content-container {
    opacity: 0;
    animation: fadeInContent 2s 0.5s ease-out forwards;
}

@keyframes fadeInContent { to { opacity: 1; } }

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #eee, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

p {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--dim-text-color);
    margin-bottom: 3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.launch-button {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px 0px rgba(0, 121, 107, 0.3);
}

.launch-button:hover {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 0 25px 5px rgba(0, 121, 107, 0.5);
}

/* --- Section Styling (No Faded Background) --- */
.info-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    /* Removed background-color and backdrop-filter to keep main background visible */
}

/* --- General Animation --- */
.info-section h2, .feature-row, .creator-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.info-section.is-visible h2,
.info-section.is-visible .feature-row,
.info-section.is-visible .creator-card {
    opacity: 1;
    transform: translateY(0);
}

/* --- Staggered Delays --- */
.info-section.is-visible h2 { transition-delay: 0.1s; }
/* Features Sections */
#about-section.is-visible .feature-row:nth-child(1) { transition-delay: 0.3s; }
#about-section.is-visible .feature-row:nth-child(2) { transition-delay: 0.4s; }
#features-continued.is-visible .feature-row:nth-child(1) { transition-delay: 0.3s; }
#features-continued.is-visible .feature-row:nth-child(2) { transition-delay: 0.4s; }
/* Creators Section */
#creators-section.is-visible .creator-card:nth-child(1) { transition-delay: 0.3s; }
#creators-section.is-visible .creator-card:nth-child(2) { transition-delay: 0.5s; }


/* --- Feature Showcase Layout --- */
.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    max-width: 1000px;
    margin-top: 3rem;
}
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
    text-align: left;
}
.feature-row:nth-child(even) .feature-text {
    text-align: right;
}
.feature-visual {
    flex: 0 0 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-color) 0%, rgba(0, 121, 107, 0) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-visual svg {
    width: 80px;
    height: 80px;
    color: #fff;
}
.feature-text h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--dim-text-color);
}

/* --- Creators Section --- */
.creators-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}
.creator-card {
    background: var(--card-bg);
    border: 1px solid rgba(136, 160, 184, 0.2);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 280px;
}
.creator-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.creator-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--dim-text-color);
    transition: border-color 0.3s ease;
}
.creator-card:hover img {
    border-color: var(--accent-color);
}
.creator-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.social-links a svg {
    width: 24px;
    height: 24px;
    color: var(--dim-text-color);
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-links a:hover svg {
    color: var(--accent-color);
    transform: scale(1.1);
}
.copyright {
    margin-top: 4rem;
    color: var(--dim-text-color);
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .feature-row, .feature-row:nth-child(even) {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .feature-text, .feature-row:nth-child(even) .feature-text {
        text-align: center;
    }
    .feature-visual {
        flex: 0 0 150px;
        height: 150px;
        width: 150px;
    }
    .feature-visual svg {
        width: 60px;
        height: 60px;
    }
}
