@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Share+Tech+Mono&display=swap');

:root {
    --bg-deep: #05160e;
    --bg-pattern: repeating-linear-gradient(45deg, rgba(10, 41, 26, 0.03) 0px, rgba(10, 41, 26, 0.03) 2px, transparent 2px, transparent 10px);
    --bg-panel: rgba(10, 41, 26, 0.7);
    --bg-panel-solid: #0a291a;
    --bg-panel-hover: rgba(17, 61, 40, 0.9);
    --primary-neon: #00ff88;
    --primary-neon-glow: 0 0 15px rgba(0, 255, 136, 0.5);
    --text-main: #ffffff;
    --text-muted: #8ab09c;
    --gold: #ffd700;
    --gold-glow: 0 0 20px rgba(255, 215, 0, 0.3);
    --silver: #e0e0e0;
    --silver-glow: 0 0 20px rgba(224, 224, 224, 0.2);
    --bronze: #cd7f32;
    --bronze-glow: 0 0 20px rgba(205, 127, 50, 0.2);
    --card-glass: rgba(255, 255, 255, 0.03);
    --card-border: 1px solid rgba(255, 255, 255, 0.05);
    --kick: #53fc18;
    --discord: #5865F2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-pattern), radial-gradient(circle at 50% -20%, #0d3822 0%, transparent 60%);
    z-index: -2;
    background-attachment: fixed;
}

/* --- UPDATED FLOATING IMAGES --- */
.floating-symbols {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.symbol {
    position: absolute;
    font-size: 8rem;
    animation: floatOrganic infinite linear;
}

/* Dispersed to the Four Corners */
.spade {
    color: #05d9e8;
    text-shadow: 0 0 25px rgba(5, 217, 232, 0.6);
    top: 8%;
    left: 8%;
    /* Top Left */
    animation-duration: 45s;
}

.heart {
    color: #ff2a6d;
    text-shadow: 0 0 25px rgba(255, 42, 109, 0.6);
    top: 15%;
    left: 82%;
    /* Top Right */
    animation-duration: 38s;
    animation-delay: -12s;
}

.diamond {
    color: #ffd700;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    top: 75%;
    left: 12%;
    /* Bottom Left */
    animation-duration: 50s;
    animation-delay: -25s;
}

.club {
    color: var(--primary-neon);
    text-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    top: 80%;
    left: 80%;
    /* Bottom Right */
    animation-duration: 42s;
    animation-delay: -8s;
}

/* Wider, multi-directional drifting animation */
@keyframes floatOrganic {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
        opacity: 0.2;
    }

    33% {
        transform: translate(40px, -50px) rotate(15deg);
        opacity: 0.6;
    }

    66% {
        transform: translate(-30px, 30px) rotate(-10deg);
        opacity: 0.4;
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
        opacity: 0.2;
    }
}

/* --- UPDATED 3-PART NAVBAR --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    background: rgba(7, 26, 17, 0.9);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-logo {
    height: 60px;
    width: auto;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-neon);
    text-shadow: var(--primary-neon-glow);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: var(--primary-neon);
    box-shadow: var(--primary-neon-glow);
    border-radius: 2px;
}

/* Support Button */
.support-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(88, 101, 242, 0.15);
    color: var(--text-main);
    border: 1px solid rgba(88, 101, 242, 0.4);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-btn:hover {
    background: var(--discord);
    border-color: var(--discord);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.support-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Container & Pages */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page {
    display: none;
    animation: pageIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.page.active {
    display: block;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

/* --- Updated Sponsor Images --- */
.sponsor-logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap; 
}

/* 1. This is the BOX */
.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4); /* Dark background for the box */
    border: var(--card-border);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 1.5rem 2.5rem; /* THIS creates the perfect space around the image */
    width: 100%;
    max-width: 320px; /* Size of the box */
    height: 110px; /* Forces both boxes to be the exact same height */
    text-decoration: none;
    transition: all 0.4s ease;
}

/* Box Hover Effect */
.sponsor-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15); /* Subtle neon glow */
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

/* 2. This is the IMAGE inside the box */
.sponsor-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Prevents stretching or cropping */
    transition: transform 0.3s ease;
}

/* Makes the logo itself pop slightly when hovering the box */
.sponsor-card:hover .sponsor-img {
    transform: scale(1.05);
}

.sponsor-card.active-sponsor {
    border-color: var(--primary-neon);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3); 
    background: rgba(0, 255, 136, 0.05); /* Slight green tint */
    transform: scale(1.02); /* Keeps it slightly popped out */
}

/* Make the image inside the active box stay popped out too */
.sponsor-card.active-sponsor .sponsor-img {
    transform: scale(1.05);
}

/* --- Side-by-Side Buttons --- */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Base Play Button (Solid Neon) */
.play-btn {
    text-decoration: none;
    display: inline-block;
    background: var(--primary-neon);
    color: var(--bg-deep);
    border: 2px solid var(--primary-neon);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.7);
    background: #3cff9d;
}

/* Acebet Play Button (Outlined Neon) */
.play-btn.acebet-btn {
    background: transparent;
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}

.play-btn.acebet-btn:hover {
    background: var(--primary-neon);
    color: var(--bg-deep);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.7);
}

.hero-desc {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.highlight-green {
    color: var(--primary-neon);
    font-weight: 600;
}

.highlight-gold {
    color: var(--gold);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
}

.play-btn {
    background: var(--primary-neon);
    color: var(--bg-deep);
    border: none;
    padding: 1.2rem 4rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.7);
    background: #3cff9d;
}

/* Podium */
.podium-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 5rem;
    margin-top: 8rem;
}

.podium-card {
    background: var(--bg-panel);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 24px 24px 0 0;
    padding: 4rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    width: 290px;
    position: relative;
    border: var(--card-border);
    border-bottom: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    z-index: 1;
}

.podium-card:hover {
    transform: translateY(-10px);
    background: var(--bg-panel-hover);
}

.podium-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.podium-rank-bg {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16rem;
    font-weight: 800;
    z-index: -1;
    pointer-events: none;
    line-height: 1;
}

.first .podium-rank-bg {
    color: rgba(255, 215, 0, 0.04);
    font-size: 20rem;
}

.second .podium-rank-bg {
    color: rgba(224, 224, 224, 0.03);
}

.third .podium-rank-bg {
    color: rgba(205, 127, 50, 0.03);
}

.podium-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bg-deep);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a422d;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.podium-card.first {
    height: 460px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, var(--bg-panel-solid) 100%);
    border-top: 4px solid var(--gold);
    box-shadow: var(--gold-glow);
    z-index: 3;
    width: 330px;
}

.podium-card.first .podium-avatar {
    width: 120px;
    height: 120px;
    top: -60px;
    border-color: var(--gold);
}

.podium-card.second {
    height: 380px;
    background: linear-gradient(180deg, rgba(224, 224, 224, 0.05) 0%, var(--bg-panel-solid) 100%);
    border-top: 4px solid var(--silver);
    box-shadow: var(--silver-glow);
}

.podium-card.second .podium-avatar {
    border-color: var(--silver);
}

.podium-card.third {
    height: 340px;
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.05) 0%, var(--bg-panel-solid) 100%);
    border-top: 4px solid var(--bronze);
    box-shadow: var(--bronze-glow);
}

.podium-card.third .podium-avatar {
    border-color: var(--bronze);
}

.name-badge {
    margin-bottom: 1rem;
}

.name-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.player-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.first .player-name {
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: var(--gold-glow);
}

.wager-section {
    margin-bottom: 1.5rem;
}

.podium-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.player-wager {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.prize-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 1.2rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.prize-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.prize-box.gold-box {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.08);
}

.prize-box.gold-box .podium-stat-label {
    color: var(--gold);
}

.prize-box.gold-box .player-prize {
    font-size: 2rem;
    color: var(--primary-neon);
    text-shadow: var(--primary-neon-glow);
}

.prize-box.silver-box {
    border-color: rgba(224, 224, 224, 0.2);
    box-shadow: inset 0 0 30px rgba(224, 224, 224, 0.05);
}

.prize-box.bronze-box {
    border-color: rgba(205, 127, 50, 0.2);
    box-shadow: inset 0 0 30px rgba(205, 127, 50, 0.05);
}

.player-prize {
    color: var(--primary-neon);
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: 0.3rem;
    font-variant-numeric: tabular-nums;
}

/* Digital Timer */
.timer-section {
    text-align: center;
    margin-bottom: 5rem;
    background: radial-gradient(circle, var(--bg-panel-solid) 0%, transparent 80%);
    padding: 2rem;
    position: relative;
}

.timer-title {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-weight: 600;
}

#countdown-container {
    display: inline-flex;
    gap: 15px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 3.5rem;
    color: var(--primary-neon);
    text-shadow: var(--primary-neon-glow);
    letter-spacing: -2px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.time-block {
    display: flex;
    align-items: baseline;
    position: relative;
}

.time-val {
    font-variant-numeric: tabular-nums;
}

.time-sep {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    margin: 0 5px;
    animation: sepBlink 1s infinite;
}

.time-label {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes sepBlink {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.1;
    }
}

/* Grid Leaderboard */
.leaderboard-container {
    background: var(--bg-panel-solid);
    border-radius: 20px;
    border: var(--card-border);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 6rem;
}

.list-grid-layout {
    display: grid;
    grid-template-columns: 90px 2.5fr 1.8fr 1.8fr;
    align-items: center;
    padding: 1.2rem 2.5rem;
}

.list-header {
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease;
}

.list-item:hover {
    background: var(--bg-panel-hover);
    transform: scale(1.005);
}

.list-item:last-child {
    border-bottom: none;
}

.list-rank {
    font-weight: 800;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-variant-numeric: tabular-nums;
}

.list-user {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.list-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #1a422d;
    object-fit: cover;
}

.list-wager {
    color: var(--text-main);
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}

.list-prize {
    color: var(--primary-neon);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-shadow: var(--primary-neon-glow);
    font-size: 1.1rem;
}

/* Socials */
.socials-section {
    margin-top: 6rem;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
}

.social-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-card {
    background: var(--card-glass);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: var(--card-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.social-card:hover::before {
    opacity: 1;
}

.social-card.kick .card-logo {
    width: 50px;
    height: auto;
    margin-bottom: 1.5rem;
}

.social-card.kick:hover {
    box-shadow: 0 10px 40px rgba(83, 252, 24, 0.2);
    border-color: rgba(83, 252, 24, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    fill: var(--text-main);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.social-card.x:hover {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-card.x .card-icon {
    fill: white;
    width: 55px;
    height: 55px;
}

.social-card.discord .card-icon {
    fill: var(--discord);
}

.social-card.discord:hover {
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.3);
}

.card-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.social-card.kick .card-name {
    color: var(--kick);
    text-shadow: 0 0 10px rgba(83, 252, 24, 0.3);
}

.social-card.discord .card-name {
    color: var(--discord);
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 250px;
}

.card-btn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-card.kick .card-btn {
    border-color: rgba(83, 252, 24, 0.4);
    color: var(--kick);
}

.social-card.kick:hover .card-btn {
    background: var(--kick);
    color: #000;
    border-color: var(--kick);
}

.social-card.x .card-btn {
    border-color: rgba(255, 255, 255, 0.3);
}

.social-card.x:hover .card-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.social-card.discord .card-btn {
    border-color: rgba(88, 101, 242, 0.4);
    color: var(--discord);
}

.social-card.discord:hover .card-btn {
    background: var(--discord);
    color: #fff;
    border-color: var(--discord);
}

/* Stream Section Container */
.stream-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: var(--card-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Adjustments for Navbar */
@media (max-width: 950px) {
    nav {
        padding: 1rem;
    }

    .nav-left {
        display: none;
    }

    /* Hide logo on small screens to save space */
    .support-btn span {
        display: none;
    }

    /* Hide the word "Support", keep icon */
    .nav-links {
        gap: 1.5rem;
    }

    .social-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .podium-wrapper {
        align-items: center;
        flex-direction: column;
        gap: 6rem;
        margin-top: 6rem;
    }

    .podium-card,
    .podium-card.first {
        width: 100%;
        max-width: 350px;
        height: auto;
        padding-top: 5rem;
        border-radius: 24px;
    }

    .podium-card.first {
        order: -1;
    }

    .list-grid-layout {
        grid-template-columns: 60px 2fr 1fr;
        padding: 1rem 1.5rem;
    }

    /*.hide-mobile {*/
    /*    display: none;*/
    /*}*/

    #countdown-container {
        font-size: 2.2rem;
        gap: 8px;
        padding: 10px 15px;
    }

    .time-sep {
        font-size: 2rem;
    }

    .time-label {
        font-size: 0.6rem;
        bottom: -15px;
    }
}

/* ========================================== */
/* FOOTER SECTION                             */
/* ========================================== */
.site-footer {
    background: rgba(7, 26, 17, 0.9); /* Exactly matches the Navbar background */
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);      /* Adds the same premium glass blur */
    border-top: 1px solid rgba(0, 255, 136, 0.1); /* Matches the Navbar border */
    padding: 4rem 1.5rem 1.5rem 1.5rem;
    margin-top: auto; 
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 3rem;
    margin-bottom: 1.5rem;
}

/* Brand Section */
.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.footer-logo:hover { opacity: 1; }
.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 18+ Warning Section */
.footer-warning {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
}
.footer-warning p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}
.footer-warning strong { color: var(--text-main); }

/* Social Links */
.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}
.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}
.footer-social-btn svg, .footer-social-btn img {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Social Hover Effects */
.footer-social-btn:hover { transform: translateY(-3px); }
.footer-social-btn.kick:hover { border-color: var(--kick); box-shadow: 0 5px 15px rgba(83, 252, 24, 0.2); }
.footer-social-btn.kick:hover img { opacity: 1; filter: drop-shadow(0 0 5px var(--kick)); }

.footer-social-btn.x:hover { border-color: #fff; box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1); }
.footer-social-btn.x:hover svg { fill: #fff; opacity: 1; }

.footer-social-btn.discord:hover { border-color: var(--discord); box-shadow: 0 5px 15px rgba(88, 101, 242, 0.2); }
.footer-social-btn.discord:hover svg { fill: var(--discord); opacity: 1; }

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255, 255, 255, 0.3); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary-neon); }

/* Mobile Footer Adjustments */
@media (max-width: 950px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .footer-warning {
        flex-direction: column;
        text-align: center;
    }
    .footer-socials { justify-content: center; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 1rem; }
}