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

body {
    font-family: 'Inter', sans-serif;
    background: #0B0B0E; /* Reel Black */
    color: #F7F7FA; /* White Paper */
    overflow-x: hidden;
}

/* Top Tagline */
.top-tagline {
    position: sticky;
    top: 0;
    background: #0B0B0E; /* Reel Black */
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    overflow: hidden;
}

.top-tagline p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #C4C4C9; /* Foggy Silver */
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    background: #0B0B0E; /* Reel Black */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00FFF7, #FF00C8, #925CFF); /* Glitch Aurora */
    background-size: 200%;
    opacity: 0.2;
    animation: gradient-flow 10s ease infinite;
}

.hero-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #F7F7FA; /* White Paper */
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #C4C4C9; /* Foggy Silver */
    margin-bottom: 30px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 12px 20px;
    background: #00FFF7; /* Neon Teal */
    border: none;
    border-radius: 50px;
    color: #0B0B0E; /* Reel Black */
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #FF6B6B; /* Creator Coral */
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.2); /* Hover Glow */
}

.cta-link {
    color: #00FFF7; /* Neon Teal */
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.cta-link:hover {
    text-decoration: underline;
    color: #FF6B6B; /* Creator Coral */
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.varia-avatar {
    width: 336px;
    height: 336px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.5), transparent); /* Glitch Blue gradient */
    background-image: url('#'); /* Replace with your image file name */
    background-size: 70%; /* Adjust to fit the image within the circle */
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s infinite;
    opacity: 0.8; /* Slight transparency to blend with the glow */
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 168, 255, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(0, 168, 255, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 168, 255, 0.5); }
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Marquee for $VARIA Bonding Curve */
.marquee {
    padding: 20px 0;
    background: #1A1A1F; /* Pitch Graphite */
    overflow: hidden;
    border-top: 1px solid #2D2E36; /* Gunmetal Fog */
    border-bottom: 1px solid #2D2E36; /* Gunmetal Fog */
}

.marquee-content {
    display: flex;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-tile {
    flex: 0 0 250px;
    margin: 0 15px;
    padding: 15px;
    background: #1A1A1F; /* Pitch Graphite */
    border: 1px solid #00FFF7; /* Neon Teal */
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.marquee-tile .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #00E59B; /* VARIA Green */
    color: #0B0B0E; /* Reel Black */
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 400;
}

.marquee-tile h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #F7F7FA; /* White Paper */
    margin-bottom: 5px;
}

.marquee-tile p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #C4C4C9; /* Foggy Silver */
}

.marquee-tile span {
    font-size: 0.8rem;
    color: #00E59B; /* VARIA Green */
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* What is Reel3 */
.what-is-reel3 {
    padding: 50px;
    text-align: center;
    background: linear-gradient(to bottom, #0B0B0E 0%, #1A1A1F 100%); /* Midnight Fade */
}

.what-is-reel3 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F7F7FA; /* White Paper */
    margin-bottom: 30px;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar {
    padding: 20px;
    background: #1A1A1F; /* Pitch Graphite */
    border: 1px solid #2D2E36; /* Gunmetal Fog */
    border-radius: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: #00FFF7; /* Neon Teal */
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.2); /* Hover Glow */
}

.pillar .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #00FFF7; /* Neon Teal */
}

.pillar h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #F7F7FA; /* White Paper */
    margin-bottom: 10px;
}

.pillar p {
    font-size: 1rem;
    font-weight: 300;
    color: #C4C4C9; /* Foggy Silver */
}

/* Contests */
.contests {
    padding: 50px;
    background: #0B0B0E; /* Reel Black */
}

.contests h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #FF00C8; /* Electric Magenta */
    margin-bottom: 20px;
}

.contests p {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    font-weight: 300;
    color: #C4C4C9; /* Foggy Silver */
}

.contest-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contest-card {
    padding: 20px;
    background: #1A1A1F; /* Pitch Graphite */
    border: 1px solid #2D2E36; /* Gunmetal Fog */
    border-radius: 15px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.contest-card:hover {
    border-color: #00FFF7; /* Neon Teal */
}

.contest-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #FF00C8; /* Electric Magenta */
    margin-bottom: 10px;
}

.contest-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.contest-card ul li {
    margin: 10px 0;
    font-weight: 300;
    color: #C4C4C9; /* Foggy Silver */
}

.token-amount {
    color: #FFD700; /* Circuit Gold */
}

/* Creator Spotlight */
.creator-spotlight {
    padding: 50px;
    text-align: center;
    background: #0B0B0E; /* Reel Black */
}

.creator-spotlight h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F7F7FA; /* White Paper */
    margin-bottom: 30px;
}

.spotlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spotlight-card {
    padding: 20px;
    background: #1A1A1F; /* Pitch Graphite */
    border: 1px solid #2D2E36; /* Gunmetal Fog */
    border-radius: 15px;
    transition: border-color 0.3s ease;
}

.spotlight-card:hover {
    border-color: #FF00C8; /* Electric Magenta */
    box-shadow: 0 0 20px rgba(255, 0, 200, 0.2); /* Spotlight Pulse */
}

.spotlight-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.spotlight-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #F7F7FA; /* White Paper */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.spotlight-card .badge {
    background: #FF6B6B; /* Creator Coral */
    color: #0B0B0E; /* Reel Black */
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 400;
}

.spotlight-card p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #C4C4C9; /* Foggy Silver */
}

.spotlight-card span {
    font-size: 0.9rem;
    color: #FF00C8; /* Electric Magenta */
}

.centered {
    display: block;
    margin: 30px auto;
}

/* Varia Feed */
.varia-feed {
    padding: 50px;
    background: #0B0B0E; /* Reel Black */
}

.feed-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feed-left, .feed-right {
    padding: 20px;
    background: #1A1A1F; /* Pitch Graphite */
    border: 1px solid #2D2E36; /* Gunmetal Fog */
    border-radius: 15px;
}

.feed-left h2, .feed-right h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F7F7FA; /* White Paper */
    margin-bottom: 20px;
}

.tweet-placeholder {
    padding: 20px;
    background: #1A1A1F; /* Pitch Graphite */
    border: 1px solid #2D2E36; /* Gunmetal Fog */
    border-radius: 10px;
    color: #C4C4C9; /* Foggy Silver */
    font-weight: 300;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.culture-tile {
    padding: 15px;
    background: #1A1A1F; /* Pitch Graphite */
    border: 1px solid #2D2E36; /* Gunmetal Fog */
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    color: #F7F7FA; /* White Paper */
    font-weight: 400;
}

.culture-tile:hover {
    transform: scale(1.05);
    border-color: #FF6B6B; /* Creator Coral */
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
}

/* Join the Movement */
.join-movement {
    padding: 50px;
    text-align: center;
    background: linear-gradient(135deg, #00FFF7, #FF00C8, #925CFF); /* Glitch Aurora */
    background-size: 200%;
    animation: gradient-flow 10s ease infinite;
    position: relative;
}

.join-movement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 14, 0.8); /* Reel Black with opacity */
}

.join-movement h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F7F7FA; /* White Paper */
    margin-bottom: 30px;
    position: relative;
}

.movement-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
}

/* Footer */
.footer {
    padding: 30px 50px;
    background: #0B0B0E; /* Reel Black */
    border-top: 1px solid #2D2E36; /* Gunmetal Fog */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-left img {
    width: 50px;
}

.footer-left p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #C4C4C9; /* Foggy Silver */
}

.footer-center, .footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #00FFF7; /* Neon Teal */
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF6B6B; /* Creator Coral */
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 300;
    color: #888892; /* Terminal Gray */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-content, .hero-visual {
        width: 100%;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .pillars, .contest-highlights, .spotlight-cards, .feed-container {
        grid-template-columns: 1fr;
    }

    .marquee-content {
        flex-direction: column;
        animation: none;
    }

    .marquee-tile {
        margin: 10px 0;
    }

    .varia-avatar {
        width: 200px; /* Reduce size on mobile for better fit */
        height: 200px;
        background-size: 60%; /* Adjust image size for smaller circle */
    }
}