/* =============================================================
   SHOT MASTER — Complete Stylesheet v2
   Matches: shot-master-mockup.png (Canvas design)
   ============================================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', 'Oswald', sans-serif;
    background: #05070f;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.4;
    min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ===== BACKGROUND LAYER ===== */
.bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 25% 50%, rgba(50, 200, 50, 0.15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 20% 45%, rgba(255, 210, 0, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at 30% 40%, rgba(0, 200, 0, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #05070f 0%, #080c18 25%, #0a0f1f 55%, #0b1220 100%);
}
.bg-diagonal-streaks {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent 0px,
        transparent 60px,
        rgba(255, 255, 255, 0.015) 60px,
        rgba(255, 255, 255, 0.015) 61px
    );
}
.bg-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 10% 20%, rgba(100, 255, 100, 0.7) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 25% 45%, rgba(255, 215, 0, 0.6) 0%, transparent 100%),
        radial-gradient(2px 2px at 35% 30%, rgba(100, 255, 100, 0.8) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 15%, rgba(255, 215, 0, 0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 60% 55%, rgba(100, 255, 100, 0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 15% 70%, rgba(255, 215, 0, 0.7) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 80%, rgba(100, 255, 100, 0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 70% 25%, rgba(255, 215, 0, 0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 80% 60%, rgba(100, 255, 100, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 90% 35%, rgba(255, 215, 0, 0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 55% 75%, rgba(100, 255, 100, 0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 5% 55%, rgba(255, 215, 0, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 75% 10%, rgba(100, 255, 100, 0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 45% 40%, rgba(255, 215, 0, 0.7) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 85% 80%, rgba(100, 255, 100, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 30% 65%, rgba(255, 215, 0, 0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 65% 90%, rgba(100, 255, 100, 0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 20% 85%, rgba(255, 215, 0, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 95% 50%, rgba(100, 255, 100, 0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 12% 90%, rgba(255, 215, 0, 0.5) 0%, transparent 100%);
    animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}
.bg-halftone {
    position: absolute;
    top: 0; right: 0;
    width: 35%; height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(100, 255, 100, 0.09) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.4;
    mask-image: linear-gradient(to left, transparent 0%, #000 25%, #000 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 25%, #000 75%, transparent 100%);
}
.bg-radial-glow {
    position: absolute;
    top: 12%; left: 12%;
    width: 75%; height: 85%;
    background:
        radial-gradient(ellipse 55% 60% at 28% 45%, rgba(50, 200, 50, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 35% 40% at 22% 40%, rgba(255, 210, 0, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* ===== NAV ===== */
.top-nav {
    position: relative;
    z-index: 100;
    background: linear-gradient(180deg, rgba(7, 11, 22, 0.98) 0%, rgba(10, 15, 31, 0.95) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
    padding: 0;
    height: 90px;
    display: flex;
    align-items: center;
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.nav-logo-ring {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(8, 12, 20, 0.8);
    border: 2px solid rgba(100, 255, 100, 0.5);
    box-shadow: 0 0 25px rgba(100, 255, 100, 0.2), inset 0 0 20px rgba(100, 255, 100, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.ring-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(100, 255, 100, 0.15);
    box-shadow: 0 0 30px rgba(100, 255, 100, 0.1);
    animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.nav-logo-ring img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 50%;
}
.nav-title {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 3px;
    background: linear-gradient(180deg, #ffffff 0%, #c0c0c0 50%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 0 rgba(0,0,0,0.6)) drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
}
.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 0;
    position: relative;
    transition: all 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-link.active {
    color: #7CFF4A;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(124, 255, 74, 0.3);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #7CFF4A;
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(124, 255, 74, 0.7), 0 0 25px rgba(124, 255, 74, 0.3);
}
.btn-primary.nav-cta {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #52D63B 0%, #FFD11A 100%);
    color: #0a0f1f;
    letter-spacing: 2px;
    border: 2.5px solid #FFD700;
    box-shadow:
        0 0 25px rgba(255, 209, 26, 0.4),
        0 0 50px rgba(255, 209, 26, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.btn-primary.nav-cta:hover {
    box-shadow:
        0 0 40px rgba(255, 209, 26, 0.6),
        0 0 70px rgba(255, 209, 26, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    padding: 40px 0 60px;
}
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* LEFT: Mascot */
.hero-left {
    flex: 0 0 42%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mascot-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}
.mascot-glow-bloom {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(60, 220, 60, 0.3) 0%, rgba(255, 210, 0, 0.12) 30%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.mascot-glow-bloom-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(60, 220, 60, 0.15) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite alternate;
}
@keyframes glowPulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
.mascot-hero-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 50px rgba(60,200,60,0.3)) drop-shadow(0 0 100px rgba(255,210,0,0.1)) drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}
.mascot-sparkles { display: none; }

/* RIGHT: Content */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(8, 12, 24, 0.85);
    border: 1.5px solid rgba(124, 255, 74, 0.4);
    border-radius: 50px;
    padding: 10px 26px;
    width: fit-content;
    box-shadow:
        0 0 20px rgba(124, 255, 74, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.08);
}
.badge-icon {
    font-size: 18px;
    color: #FFD700;
}
.badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1.5px;
}

/* Title - dramatic gold beveled 3D effect */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
    transform: perspective(600px) rotateX(3deg);
}
.hero-title-line1, .hero-title-line2 {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: clamp(64px, 8.5vw, 110px);
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #FFD700;
    text-shadow:
        -1px -1px 0 #AA7700,
        1px -1px 0 #AA7700,
        -1px 1px 0 #AA7700,
        1px 1px 0 #AA7700,
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000,
        0 6px 0 rgba(0,0,0,0.35),
        0 12px 20px rgba(0,0,0,0.4);
    background: linear-gradient(
        180deg,
        #FFF3A0 0%,
        #FFD700 15%,
        #FFAA00 40%,
        #FFD700 55%,
        #FFE44D 70%,
        #FFAA00 85%,
        #CC8800 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 6px 2px rgba(0,0,0,0.4)) drop-shadow(0 10px 30px rgba(255, 215, 0, 0.2));
    position: relative;
    letter-spacing: 2px;
}
.hero-title-line2 {
    margin-top: -8px; /* Tighter stacking */
}

/* Tagline */
.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-family: 'Inter', 'Oswald', sans-serif;
    font-size: clamp(17px, 1.8vw, 23px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    margin-top: -4px;
}
.tg-white { color: #fff; }
.tg-green { color: #7CFF4A; }
.tg-gold { color: #FFD700; }

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}
.btn-cta-play, .btn-cta-join {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    padding: 18px 50px;
    border-radius: 50px;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}
.btn-cta-play {
    background: linear-gradient(135deg, #52D63B 0%, #FFD11A 100%);
    color: #0a0f1f;
    border: 3px solid #FFD700;
    box-shadow:
        0 0 30px rgba(255, 209, 26, 0.4),
        0 0 60px rgba(255, 209, 26, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 8px 25px rgba(0,0,0,0.4);
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}
.btn-cta-play:hover {
    box-shadow:
        0 0 50px rgba(255, 209, 26, 0.55),
        0 0 80px rgba(255, 209, 26, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translateY(-2px);
}
.btn-cta-join {
    background: rgba(5, 8, 18, 0.85);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow:
        0 0 20px rgba(124, 255, 74, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 8px 25px rgba(0,0,0,0.3);
}
.btn-cta-join:hover {
    border-color: rgba(124, 255, 74, 0.5);
    box-shadow:
        0 0 30px rgba(124, 255, 74, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* ===== STATS CARDS ===== */
.stats-row {
    display: flex;
    gap: 16px;
}
.stat-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, rgba(11, 19, 34, 0.9), rgba(16, 26, 45, 0.7));
    border: 1px solid rgba(124, 255, 74, 0.2);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow:
        0 0 15px rgba(124, 255, 74, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    transition: all 0.25s;
}
.stat-card:hover {
    border-color: rgba(124, 255, 74, 0.35);
    box-shadow: 0 0 25px rgba(124, 255, 74, 0.1);
}
.stat-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(124, 255, 74, 0.08);
    border: 1px solid rgba(124, 255, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #7CFF4A;
}
.si-clipboard { color: #FFD700; border-color: rgba(255, 215, 0, 0.15); background: rgba(255, 215, 0, 0.06); }
.si-users { color: #7CFF4A; }
.stat-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}
.stat-value {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #7CFF4A;
    line-height: 1;
    letter-spacing: 1px;
}

/* ===== FEATURED MATCH ===== */
.featured-match-wrap {
    margin-top: 4px;
}
.featured-card {
    background: linear-gradient(145deg, rgba(11, 19, 34, 0.92), rgba(16, 26, 45, 0.78));
    border: 1px solid rgba(124, 255, 74, 0.22);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 0 25px rgba(124, 255, 74, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
}
.featured-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(82, 214, 59, 0.1), rgba(255, 209, 26, 0.06));
    padding: 10px 24px;
    font-family: 'Inter', 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #7CFF4A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(124, 255, 74, 0.1);
}
.featured-tab i { color: #FFD700; font-size: 14px; filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4)); }
.featured-body {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    gap: 0;
}
.featured-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.feat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    flex-shrink: 0;
    margin: 0 18px;
}

/* Teams column */
.teams-col {
    flex: 2.2;
    flex-direction: row;
    gap: 6px;
    justify-content: center;
}
.featured-team {
    display: flex;
    align-items: center;
    gap: 8px;
}
.featured-team-logo {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mini-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 50%;
    opacity: 0.6;
}
.featured-team-name {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.home-name-yellow { color: #FFD700; }
.away-name-white { color: #fff; }
.featured-vs-badge {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #7CFF4A;
    padding: 2px 10px;
    text-align: center;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(124, 255, 74, 0.3);
}

/* Datetime column */
.datetime-col { flex: 1.8; }
.featured-datetime {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.datetime-item {
    font-family: 'Inter', 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
}
.datetime-item i {
    margin-right: 6px;
    color: #7CFF4A;
    font-size: 12px;
    width: 14px;
    text-align: center;
}

/* Score column */
.score-col { flex: 1.6; }
.featured-score {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 2px 0 rgba(0,0,0,0.3);
}
.featured-entries {
    font-family: 'Inter', 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}
.featured-entries i {
    margin-right: 4px;
    color: #7CFF4A;
}

/* CTA column */
.cta-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-join-btn {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    padding: 12px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #52D63B 0%, #FFD11A 100%);
    color: #0a0f1f;
    border: 2px solid #FFD700;
    letter-spacing: 1.5px;
    box-shadow:
        0 0 25px rgba(255, 209, 26, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.featured-join-btn:hover {
    box-shadow: 0 0 40px rgba(255, 209, 26, 0.45);
    transform: translateY(-1px);
}

/* ===== RULES SECTION ===== */
.rules-section {
    position: relative;
    z-index: 1;
    padding: 60px 0 80px;
}
.rules-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.rules-title {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 0 24px;
    color: #FFD700;
    text-shadow:
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 30px rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, #FFD700 0%, #FFAA00 35%, #FFE44D 60%, #FFAA00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 0 rgba(0,0,0,0.35)) drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}
.rules-lightning {
    display: flex;
    align-items: center;
    color: #FFD700;
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}
.rules-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7CFF4A);
    box-shadow: 0 0 15px rgba(124, 255, 74, 0.3);
    border-radius: 2px;
}
.rules-line.right {
    background: linear-gradient(270deg, transparent, #7CFF4A);
}

/* Rules Grid - 6 cards */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.rule-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: linear-gradient(145deg, rgba(11, 19, 34, 0.85), rgba(16, 26, 45, 0.65));
    border: 1px solid rgba(124, 255, 74, 0.15);
    border-radius: 18px;
    padding: 32px 16px 28px;
    box-shadow:
        0 0 15px rgba(124, 255, 74, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(4px);
    transition: all 0.25s;
    text-align: center;
}
.rule-card:hover {
    border-color: rgba(124, 255, 74, 0.3);
    box-shadow: 0 0 25px rgba(124, 255, 74, 0.1);
    transform: translateY(-3px);
}
.rule-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rule-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(124, 255, 74, 0.12));
}
.rule-card-label {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.rule-emoji {
    margin-right: 4px;
    font-style: normal;
}

/* ===== TAGLINE STRIP ===== */
.tagline-strip {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, rgba(82, 214, 59, 0.06), rgba(255, 209, 26, 0.03), rgba(82, 214, 59, 0.06));
    border-top: 1px solid rgba(124, 255, 74, 0.06);
    border-bottom: 1px solid rgba(124, 255, 74, 0.06);
    padding: 24px 0;
    text-align: center;
}
.tagline-strip p {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.ts-white { color: rgba(255,255,255,0.5); }
.ts-green { color: rgba(124, 255, 74, 0.6); }
.ts-gold { color: rgba(255, 215, 0, 0.6); }

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    background: rgba(5, 7, 15, 0.85);
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 36px 0;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo-ring {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(8, 12, 20, 0.6);
    border: 1px solid rgba(100, 255, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.footer-logo-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.4;
}
.footer-name {
    font-family: 'Oswald', 'Anton', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: rgba(255,255,255,0.25);
    letter-spacing: 3px;
}
.footer-links {
    display: flex;
    gap: 28px;
}
.footer-links a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.55); }
.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.18);
    letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero-container { flex-direction: column; gap: 0; }
    .hero-left { flex: none; max-width: 380px; margin: 0 auto; }
    .hero-right { text-align: center; align-items: center; }
    .hero-badge { margin: 0 auto; }
    .hero-cta-group { justify-content: center; }
    .stats-row { flex-wrap: wrap; }
    .rules-grid { grid-template-columns: repeat(3, 1fr); }
    .nav-inner { padding: 0 24px; }
    .nav-links { gap: 28px; }
    .rules-line { width: 60px; }
}
@media (max-width: 768px) {
    .top-nav { height: auto; padding: 12px 0; }
    .nav-inner { flex-wrap: wrap; gap: 6px; justify-content: center; }
    .nav-links { order: 3; width: 100%; justify-content: center; gap: 20px; }
    .nav-title { font-size: 26px; }
    .nav-logo-ring { width: 40px; height: 40px; }
    .nav-logo-ring img { width: 30px; }
    .btn-primary.nav-cta { font-size: 14px; padding: 10px 24px; }
    .hero-left { max-width: 300px; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .btn-cta-play, .btn-cta-join { width: 100%; max-width: 340px; padding: 16px 32px; font-size: 18px; }
    .stats-row { flex-direction: column; }
    .stat-card { width: 100%; }
    .featured-body { flex-wrap: wrap; gap: 10px; padding: 16px; }
    .teams-col { flex: 0 0 100%; }
    .feat-divider { display: none; }
    .rules-grid { grid-template-columns: repeat(2, 1fr); }
    .rules-header { flex-wrap: wrap; }
    .rules-line { display: none; }
}
@media (max-width: 480px) {
    .hero-container { padding: 0 16px; }
    .rules-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .rule-card-icon { width: 60px; height: 60px; }
    .rule-card-label { font-size: 12px; letter-spacing: 1px; }
    .rule-card { padding: 24px 12px 20px; }
}
