/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --money-green: #00FF00;
    --neon-pink: #FF1493;
    --neon-blue: #00FFFF;
    --neon-purple: #9D00FF;
    --dark-bg: #000000;
    --card-bg: #1a1a1a;
    --text-white: #FFFFFF;
    --rainbow-1: #FF0000;
    --rainbow-2: #FF7F00;
    --rainbow-3: #FFFF00;
    --rainbow-4: #00FF00;
    --rainbow-5: #0000FF;
    --rainbow-6: #4B0082;
    --rainbow-7: #9400D3;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, var(--money-green) 0%, var(--dark-bg) 20%, var(--dark-bg) 80%, var(--neon-purple) 100%);
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--money-green);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--money-green);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(157, 0, 255, 0.1) 0%, transparent 50%);
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

/* Glitch Text Effect */
.glitch-text {
    font-family: 'Comic Sans MS', cursive;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: var(--money-green);
    text-shadow:
        0 0 10px var(--money-green),
        0 0 20px var(--money-green),
        0 0 30px var(--money-green);
    animation: glitch 2s infinite;
    margin-bottom: 1rem;
}

@keyframes glitch {
    0%, 100% {
        text-shadow:
            0 0 10px var(--money-green),
            0 0 20px var(--money-green);
    }
    25% {
        text-shadow:
            -2px 0 var(--neon-pink),
            2px 0 var(--neon-blue);
    }
    50% {
        text-shadow:
            2px 0 var(--neon-pink),
            -2px 0 var(--neon-blue);
    }
    75% {
        text-shadow:
            0 0 10px var(--money-green),
            0 0 20px var(--money-green);
    }
}

.subtitle {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    background: linear-gradient(45deg, var(--rainbow-1), var(--rainbow-2), var(--rainbow-3), var(--rainbow-4), var(--rainbow-5), var(--rainbow-6), var(--rainbow-7));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 5s ease infinite;
    margin-bottom: 1rem;
}

@keyframes rainbow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.company-plug {
    color: var(--neon-blue);
    font-size: 0.9rem;
}

/* Countdown */
.countdown-container {
    margin: 3rem 0;
}

.countdown-label {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 0, 0, 0.2);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    border: 2px solid #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    min-width: 100px;
}

.time-value {
    font-size: 3rem;
    font-weight: bold;
    color: #FF0000;
    text-shadow: 0 0 10px #FF0000;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 10px #FF0000;
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px #FF0000, 0 0 30px #FF0000;
        transform: scale(1.05);
    }
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-white);
    margin-top: 0.5rem;
}

.time-separator {
    font-size: 3rem;
    color: #FF0000;
    font-weight: bold;
}

.countdown-subtext {
    font-size: 1.2rem;
    color: var(--neon-pink);
    margin-top: 1rem;
}

.trend-reference {
    font-size: 0.9rem;
    color: var(--neon-blue);
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, var(--money-green), var(--neon-blue));
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--dark-bg);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 2rem;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--money-green), 0 0 40px var(--neon-blue);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Comic Sans MS', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--money-green);
    text-shadow: 0 0 10px var(--money-green);
}

/* Challenge Section */
.challenge-section {
    background: rgba(0, 0, 0, 0.5);
}

.challenge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.challenge-list {
    list-style: none;
}

.challenge-list li {
    background: var(--card-bg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--money-green);
    transition: all 0.3s;
}

.challenge-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.trend-note {
    margin-top: 2rem;
    color: var(--neon-blue);
    font-style: italic;
}

/* Pie Chart */
.challenge-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pie-chart {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--rainbow-1) 0deg,
        var(--rainbow-2) 36deg,
        var(--rainbow-3) 72deg,
        var(--rainbow-4) 108deg,
        var(--rainbow-5) 144deg,
        var(--rainbow-6) 180deg,
        var(--rainbow-7) 216deg,
        var(--rainbow-1) 252deg,
        var(--money-green) 356.4deg,
        var(--money-green) 360deg
    );
    position: relative;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pie-chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-stats {
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
}

.fail-stat .stat-value {
    color: var(--neon-pink);
}

.success-stat .stat-value {
    color: var(--money-green);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.stat-note {
    font-size: 0.7rem;
    color: #888;
    font-style: italic;
}

.mission-icons {
    display: flex;
    gap: 2rem;
    font-size: 3rem;
}

.icon-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.icon-item:hover {
    transform: scale(1.3) rotate(15deg);
}

/* Fail Section */
.fail-section {
    background:
        linear-gradient(135deg, rgba(157, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
}

.timeline {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--neon-pink);
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    flex-grow: 1;
    border: 2px solid var(--neon-pink);
}

.timeline-content h3 {
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
}

/* Stick Figure Animation */
.stick-figure-animation {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin: 3rem 0;
    height: 150px;
}

.stick-figure {
    font-size: 3rem;
    animation: jump 2s ease-in-out infinite;
}

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

.cliff {
    font-size: 4rem;
}

.rainbow-pool {
    font-size: 3rem;
    animation: wave 1s ease-in-out infinite;
}

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

/* Gay-pocalypse Image */
.gay-pocalypse-image {
    text-align: center;
    margin: 3rem auto;
    max-width: 600px;
    padding: 0 1rem;
}

.responsive-meme-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.responsive-meme-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 20, 147, 0.8);
}

/* Meme Section */
.memes-section {
    background: rgba(0, 0, 0, 0.7);
}

.meme-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--card-bg);
    border: 2px solid var(--money-green);
    color: var(--text-white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--money-green);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--money-green);
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.meme-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--neon-blue);
    transition: all 0.3s;
}

.meme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: var(--neon-pink);
}

.meme-placeholder {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--neon-blue);
}

.meme-text {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8;
}

.meme-caption {
    padding: 1.5rem;
}

.meme-caption h4 {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.meme-caption p {
    font-size: 0.9rem;
    color: #ccc;
}

.user-submit {
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--neon-pink);
}

.user-submit h3 {
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
}

.submit-button {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-white);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
}

.submit-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--neon-pink);
}

/* Socials Section */
.socials-section {
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
}

.socials-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--neon-blue);
}

.social-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
    color: var(--text-white);
    display: block;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.social-card.instagram {
    border-color: #E1306C;
}

.social-card.instagram:hover {
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.5);
}

.social-card.twitter {
    border-color: #1DA1F2;
}

.social-card.twitter:hover {
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.5);
}

.social-card.tiktok {
    border-color: #FF0050;
}

.social-card.tiktok:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.5);
}

.social-card.linkedin {
    border-color: #0077B5;
}

.social-card.linkedin:hover {
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.5);
}

.social-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-badge {
    display: inline-block;
    background: var(--neon-pink);
    color: var(--dark-bg);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 1rem;
    font-weight: bold;
}

.betting-pool {
    text-align: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--money-green);
}

.betting-pool h3 {
    color: var(--money-green);
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.twitter-share {
    background: #1DA1F2;
    color: white;
}

.twitter-share:hover {
    background: #0d8bd9;
    box-shadow: 0 0 20px #1DA1F2;
}

.generic-share {
    background: var(--money-green);
    color: var(--dark-bg);
}

.generic-share:hover {
    background: #00cc00;
    box-shadow: 0 0 20px var(--money-green);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0;
    border-top: 2px solid var(--money-green);
    text-align: center;
}

.footer-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-text strong {
    color: var(--money-green);
}

.disclaimer {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        gap: 1rem;
        padding: 0.8rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    /* Container */
    .container {
        padding: 1rem;
    }

    /* Hero Section */
    .hero-section {
        min-height: auto;
        padding: 100px 1rem 3rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .company-plug {
        font-size: 0.8rem;
    }

    /* Countdown */
    .countdown-container {
        margin: 2rem 0;
    }

    .countdown-label {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .time-unit {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }

    .time-value {
        font-size: 2rem;
    }

    .time-separator {
        font-size: 2rem;
        display: none;
    }

    .countdown-subtext {
        font-size: 1rem;
    }

    /* CTA Button */
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    /* Challenge Section */
    .challenge-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .challenge-list li {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .pie-chart {
        width: 200px;
        height: 200px;
    }

    .pie-chart-center {
        width: 140px;
        height: 140px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .mission-icons {
        gap: 1.5rem;
        font-size: 2.5rem;
    }

    /* Timeline */
    .timeline-item {
        gap: 1rem;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    /* Stick Figure */
    .stick-figure-animation {
        gap: 1rem;
        height: 100px;
    }

    .stick-figure {
        font-size: 2rem;
    }

    .cliff {
        font-size: 3rem;
    }

    .rainbow-pool {
        font-size: 2rem;
    }

    /* Gay-pocalypse Image */
    .gay-pocalypse-image {
        max-width: 100%;
        margin: 2rem auto;
    }

    /* Memes */
    .meme-filters {
        padding: 0 1rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .meme-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .meme-placeholder {
        height: 200px;
    }

    .meme-text {
        font-size: 1.2rem;
    }

    .meme-caption {
        padding: 1rem;
    }

    .meme-caption h4 {
        font-size: 1rem;
    }

    .meme-caption p {
        font-size: 0.85rem;
    }

    .user-submit {
        padding: 2rem 1rem;
    }

    .user-submit h3 {
        font-size: 1.1rem;
    }

    /* Socials */
    .socials-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .social-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-card {
        padding: 1.5rem;
    }

    .social-icon {
        font-size: 3rem;
    }

    .social-card h3 {
        font-size: 1.3rem;
    }

    .social-card p {
        font-size: 0.9rem;
    }

    .betting-pool {
        padding: 1.5rem;
    }

    .betting-pool h3 {
        font-size: 1.2rem;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .share-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
    }

    .footer-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .nav-link {
        font-size: 0.65rem;
        padding: 0.3rem;
    }

    .glitch-text {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .time-unit {
        min-width: 60px;
        padding: 0.8rem 0.3rem;
    }

    .time-value {
        font-size: 1.5rem;
    }

    .time-label {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Gay-pocalypse Image */
    .gay-pocalypse-image {
        margin: 1.5rem auto;
    }

    .responsive-meme-image {
        border-width: 2px;
    }

    .social-carousel {
        gap: 1rem;
    }
}

/* Hidden class for filtering */
.hidden {
    display: none;
}
