/* ==========================================================================
   ESPORTS JUNKIE - Gaming & Esports Betting Template
   Dark Theme with Neon Accents - 2026 Design
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    /* Dark Theme Colors */
    --c-bg-primary: #0d0d0f;
    --c-bg-secondary: #121218;
    --c-bg-card: #1a1a24;
    --c-bg-elevated: #22222e;

    /* Neon Accent Colors */
    --c-neon-cyan: #00d4ff;
    --c-neon-magenta: #ff00ff;
    --c-neon-lime: #00ff88;
    --c-neon-orange: #ff6b00;
    --c-neon-red: #ff3366;
    --c-neon-gold: #ffd700;

    /* Primary accent (cyan) */
    --c-accent: var(--c-neon-cyan);
    --c-accent-hover: #33ddff;

    /* Text Colors */
    --c-text-primary: #ffffff;
    --c-text-secondary: #a0a0b0;
    --c-text-muted: #6b6b7b;

    /* Border Colors */
    --c-border: #2a2a3a;
    --c-border-glow: rgba(0, 212, 255, 0.3);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-head: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

    /* Layout */
    --h-header: 72px;
    --container-width: 1280px;
    --border-radius: 12px;
    --border-radius-sm: 8px;

    /* Glow Effects */
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.4);
    --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.4);
    --glow-lime: 0 0 20px rgba(0, 255, 136, 0.4);
    --glow-orange: 0 0 20px rgba(255, 107, 0, 0.4);
}

/* BASE RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--c-text-primary);
    background: transparent; /* Animated canvas provides background */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

section {
    padding: 5rem 0;
    position: relative;
}

main,
.main-content {
    padding-top: var(--h-header);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    height: var(--h-header);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
    z-index: 10000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(13, 13, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-text-primary);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--c-accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-accent);
    box-shadow: var(--glow-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--c-text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Live indicator in nav */
.nav-link.live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--c-neon-red);
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(255, 51, 102, 0); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary,
.btn {
    background: linear-gradient(135deg, var(--c-neon-cyan) 0%, #0099cc 100%);
    color: var(--c-bg-primary);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--c-text-primary);
    border: 2px solid var(--c-border);
}

.btn-secondary:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

.btn-accent-orange {
    background: linear-gradient(135deg, var(--c-neon-orange) 0%, #cc5500 100%);
    color: var(--c-text-primary);
    box-shadow: var(--glow-orange);
}

.btn-accent-orange:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
    transform: translateY(-2px);
}

.btn-accent-lime {
    background: linear-gradient(135deg, var(--c-neon-lime) 0%, #00cc6a 100%);
    color: var(--c-bg-primary);
    box-shadow: var(--glow-lime);
}

.btn-accent-lime:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--c-text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--c-text-secondary);
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--c-accent);
}

.text-gradient {
    background: linear-gradient(135deg, var(--c-neon-cyan) 0%, var(--c-neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-mono {
    font-family: var(--font-mono);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--c-accent);
    border-radius: 50%;
    animation: pulse-live 2s ease-in-out infinite;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding: 6rem 0 4rem;
    min-height: calc(100vh - var(--h-header));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge .live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-neon-lime);
    text-transform: uppercase;
}

.hero-badge .live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--c-neon-lime);
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero p {
    font-size: 1.25rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Hero Stats Card */
.hero-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-neon-cyan) 0%, var(--c-neon-magenta) 50%, var(--c-neon-lime) 100%);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--c-border);
}

.stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-row:first-child {
    padding-top: 0;
}

.stat-big {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--c-accent);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: var(--glow-cyan);
}

.stat-big.orange {
    color: var(--c-neon-orange);
    text-shadow: var(--glow-orange);
}

.stat-big.lime {
    color: var(--c-neon-lime);
    text-shadow: var(--glow-lime);
}

.stat-big.magenta {
    color: var(--c-neon-magenta);
    text-shadow: var(--glow-magenta);
}

.stat-lbl {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   GAMES/ESPORTS SECTION
   ========================================================================== */
.games-section {
    background: rgba(18, 18, 24, 0.85);
    backdrop-filter: blur(8px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.game-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
    transform: translateY(-4px);
}

.game-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.game-card:hover img {
    filter: grayscale(0%);
}

.game-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--c-text-primary);
}

.game-card .matches-count {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.game-card.live .matches-count {
    color: var(--c-neon-lime);
}

/* ==========================================================================
   LIVE STREAM SECTION
   ========================================================================== */
.live-stream-section {
    padding: 5rem 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%),
        var(--c-bg-primary);
    position: relative;
}

.live-stream-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-neon-cyan), transparent);
}

.live-stream-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.live-stream-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0 1.5rem;
}

.live-stream-content p {
    color: var(--c-text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.live-stream-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--c-text-secondary);
}

.feature-item .feature-icon {
    font-size: 1.1rem;
}

.live-stream-embed {
    position: relative;
}

.stream-wrapper {
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.stream-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--border-radius);
    padding: 1px;
    background: linear-gradient(135deg, var(--c-neon-cyan), transparent 50%, var(--c-neon-magenta));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.stream-wrapper #twitch-embed {
    display: block;
}

.stream-wrapper #twitch-embed iframe {
    display: block;
    border-radius: var(--border-radius);
}

.stream-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
}

.stream-channel {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--c-text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stream-channel::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--c-neon-red);
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

.stream-link {
    color: var(--c-accent);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.stream-link:hover {
    color: var(--c-accent-hover);
}

@media (max-width: 900px) {
    .live-stream-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .live-stream-content {
        text-align: center;
    }

    .live-stream-content h2 {
        font-size: 2rem;
    }

    .live-stream-features {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .live-stream-section {
        padding: 3rem 0;
    }

    .live-stream-features {
        flex-direction: column;
        align-items: center;
    }

    .stream-info {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

/* ==========================================================================
   FEATURED MATCHES / ODDS CARDS
   ========================================================================== */
.matches-section {
    padding: 5rem 0;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.match-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.match-card:hover {
    border-color: var(--c-accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.match-game {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
}

.match-game img {
    width: 20px;
    height: 20px;
}

.match-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.match-status.live {
    background: rgba(255, 51, 102, 0.2);
    color: var(--c-neon-red);
    animation: pulse-bg 2s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { background: rgba(255, 51, 102, 0.2); }
    50% { background: rgba(255, 51, 102, 0.3); }
}

.match-status.upcoming {
    background: rgba(0, 212, 255, 0.2);
    color: var(--c-accent);
}

.match-teams {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--c-bg-elevated);
    border-radius: var(--border-radius-sm);
}

.team-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.team-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.team-odds {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-neon-lime);
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.team-odds:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: var(--glow-lime);
}

.match-tournament {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--c-border);
}

/* ==========================================================================
   MODULES / SERVICES GRID
   ========================================================================== */
.services-section {
    background: rgba(18, 18, 24, 0.85);
    backdrop-filter: blur(8px);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.module-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.module-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.module-card:hover::before {
    transform: scaleX(1);
}

.mod-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.module-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.module-card p {
    font-size: 0.95rem;
    color: var(--c-text-secondary);
    margin-bottom: 1.5rem;
}

.module-card a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.module-card a:hover {
    gap: 0.75rem;
}

/* ==========================================================================
   LOGOS / PARTNERS SECTION
   ========================================================================== */
.logos-section {
    background: rgba(18, 18, 24, 0.9);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 3rem 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.logo-box {
    padding: 1.25rem;
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-bg-card);
    transition: all 0.3s ease;
}

.logo-box:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

.logo-box img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-box:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.95) 0%, rgba(34, 34, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 5rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
}

.cta-banner-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--c-text-primary);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--c-text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-phone {
    background: linear-gradient(135deg, var(--c-neon-lime) 0%, #00cc6a 100%);
    color: var(--c-bg-primary);
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-family: var(--font-head);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--glow-lime);
}

.btn-cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-cta-callback {
    background: transparent;
    color: var(--c-text-primary);
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-family: var(--font-head);
    border: 2px solid var(--c-border);
}

.btn-cta-callback:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

/* ==========================================================================
   CONTENT TYPOGRAPHY - Posts & Pages
   ========================================================================== */
.post-body,
.page-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-text-secondary);
    max-width: 900px;
}

/* Better page layout for betting content */
.page-content .container {
    max-width: 1000px;
}

/* Style images in content as betting site cards - NOT inside betting components */
.page-body > p > img,
.page-body > img {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 2rem auto 1rem;
    padding: 1rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.page-body > p > img:hover,
.page-body > img:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

/* First heading - page title styling */
.page-body > h1:first-child {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--c-border);
    background: linear-gradient(135deg, var(--c-neon-cyan) 0%, var(--c-neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Intro paragraph styling */
.page-body > p:first-of-type {
    font-size: 1.15rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--c-text-secondary);
}

/* Style betting site lists */
.page-body ul {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    margin: 2rem 0;
}

.page-body ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text-primary);
    font-weight: 500;
}

.page-body ul li:last-child {
    border-bottom: none;
}

.page-body ul li::marker {
    color: var(--c-neon-lime);
    font-size: 1.2em;
}

/* Content sections with better spacing */
.page-body h2 {
    margin-top: 3rem;
    padding: 1rem;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
    border-left: 4px solid var(--c-accent);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.page-body h3 {
    color: var(--c-neon-lime);
    margin-top: 2.5rem;
}

/* Style for bonus/offer text patterns */
.page-body strong {
    color: var(--c-neon-orange);
}

/* ==========================================================================
   BETTING SITE CONTENT STYLING
   Enhanced styles for betting site listing pages
   ========================================================================== */

/* Container for better readability */
.page-body {
    padding: 0 1rem;
}

/* External link styling */
.page-body a[href^="http"] {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-body a[href^="http"]:hover {
    color: var(--c-accent-hover);
    text-shadow: var(--glow-cyan);
}

/* Better blockquote for bonus info */
.page-body blockquote {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-left-color: var(--c-neon-lime);
}

/* Better horizontal rules */
.page-body hr {
    margin: 3rem 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
}

/* Improve contrast for important terms */
.page-body em {
    color: var(--c-text-primary);
    font-style: normal;
    font-weight: 500;
}

/* ==========================================================================
   BETTING SITE CARDS (JS-generated)
   ========================================================================== */
.betting-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.betting-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.betting-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
    transform: translateY(-4px);
}

.betting-card-logo {
    max-width: 150px;
    max-height: 80px;
    margin: 0 auto 1rem;
    object-fit: contain;
    background: white;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
}

.betting-card-name {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-text-primary);
    margin-bottom: 0.5rem;
}

.betting-card-name a {
    color: inherit;
    text-decoration: none;
}

.betting-card-name a:hover {
    color: var(--c-accent);
}

.betting-card-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--c-neon-gold);
}

.betting-card-bonus {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-neon-lime);
    padding: 0.75rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.betting-card-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.betting-card-btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.betting-card-btn.primary {
    background: linear-gradient(135deg, var(--c-neon-lime) 0%, #00cc6a 100%);
    color: var(--c-bg-primary);
    box-shadow: var(--glow-lime);
}

.betting-card-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.betting-card-btn.secondary {
    background: transparent;
    color: var(--c-accent);
    border: 1px solid var(--c-border);
}

.betting-card-btn.secondary:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

.betting-card-terms {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--c-border);
}

/* Betting Banner (shortcode) - Esports Style matching old site */
.betting-banner {
    background: linear-gradient(135deg, #1a1a2a 0%, #0a0a0f 100%);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-right: 4px solid var(--c-neon-magenta);
    border-radius: 0;
    padding: 0;
    margin: 2rem -1rem;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(255, 0, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.betting-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.05));
    pointer-events: none;
}

.betting-banner-inner {
    display: flex;
    align-items: center;
    padding: 1.25rem 2rem;
    gap: 2rem;
}

.betting-banner-logo {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.betting-banner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.betting-banner-info {
    flex-shrink: 0;
    min-width: 140px;
}

.betting-banner-name {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #ff66ff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.betting-banner-text {
    flex: 1;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 0 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.betting-banner-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid var(--c-neon-magenta);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.betting-banner-btn:hover {
    background: var(--c-neon-magenta);
    color: #000;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    transform: translateY(-2px);
}

.betting-banner-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 2rem 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Tablet layout */
@media (max-width: 900px) {
    .betting-banner {
        margin: 1.5rem 0;
    }

    .betting-banner-inner {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .betting-banner-text {
        flex-basis: 100%;
        order: 3;
        text-align: left;
        padding: 0;
        font-size: 1.25rem;
    }
}

/* Mobile layout */
@media (max-width: 640px) {
    .betting-banner {
        margin: 1rem 0;
    }

    .betting-banner-inner {
        padding: 1rem;
        gap: 0.75rem;
    }

    .betting-banner-logo {
        width: 65px;
        height: 50px;
    }

    .betting-banner-name {
        font-size: 0.85rem;
    }

    .betting-banner-text {
        font-size: 1.1rem;
    }

    .betting-banner-btn {
        flex-basis: 100%;
        order: 4;
        padding: 0.75rem 1.5rem;
    }

    .betting-banner-legal {
        padding: 0.5rem 1rem;
    }
}

/* Disclaimer box */
.disclaimer-box {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--c-neon-orange);
    text-align: center;
    margin: 1.5rem 0;
}

/* Quick list of betting sites */
.betting-quick-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.betting-quick-item {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    text-align: center;
    transition: all 0.2s ease;
}

.betting-quick-item:hover {
    border-color: var(--c-neon-lime);
    box-shadow: var(--glow-lime);
}

.betting-quick-item a {
    color: var(--c-text-primary);
    font-weight: 600;
    text-decoration: none;
}

.betting-quick-item:hover a {
    color: var(--c-neon-lime);
}

.post-body h2,
.page-body h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--c-border);
    color: var(--c-text-primary);
}

.post-body h3,
.page-body h3 {
    font-size: 1.35rem;
    margin: 2rem 0 0.75rem;
    color: var(--c-text-primary);
}

.post-body h4,
.page-body h4 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--c-text-primary);
}

.post-body p,
.page-body p {
    margin-bottom: 1.25rem;
}

.post-body ul,
.post-body ol,
.page-body ul,
.page-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.post-body li,
.page-body li {
    margin-bottom: 0.5rem;
    color: var(--c-text-secondary);
}

.post-body ul li::marker {
    color: var(--c-accent);
}

/* Tables */
.post-body table,
.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.95rem;
    background: var(--c-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.post-body thead,
.page-body thead {
    background: var(--c-bg-elevated);
}

.post-body th,
.page-body th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-primary);
    border-bottom: 1px solid var(--c-border);
}

.post-body td,
.page-body td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--c-border);
    vertical-align: top;
    color: var(--c-text-secondary);
}

.post-body tbody tr:last-child td,
.page-body tbody tr:last-child td {
    border-bottom: none;
}

.post-body tbody tr:hover,
.page-body tbody tr:hover {
    background: var(--c-bg-elevated);
}

/* Blockquotes */
.post-body blockquote,
.page-body blockquote {
    margin: 1.5rem 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    background: var(--c-bg-card);
    border-left: 4px solid var(--c-accent);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-style: italic;
    color: var(--c-text-secondary);
}

.post-body blockquote p:last-child,
.page-body blockquote p:last-child {
    margin-bottom: 0;
}

.post-body blockquote cite,
.page-body blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    color: var(--c-accent);
}

.post-body blockquote cite::before,
.page-body blockquote cite::before {
    content: "— ";
}

/* Code */
.post-body code,
.page-body code {
    background: var(--c-bg-card);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9em;
    color: var(--c-neon-magenta);
    border: 1px solid var(--c-border);
}

.post-body pre,
.page-body pre {
    background: var(--c-bg-card);
    color: var(--c-text-secondary);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-sm);
    overflow-x: auto;
    margin: 1.5rem 0 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
    border: 1px solid var(--c-border);
}

.post-body pre code,
.page-body pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
    border: none;
}

/* Images in content */
.post-body img,
.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
}

.post-body figure,
.page-body figure {
    margin: 1.5rem 0 2rem;
    padding: 0;
}

.post-body figure img,
.page-body figure img {
    margin: 0;
    display: block;
}

/* WordPress figure classes */
.wp-block-image {
    margin: 1.5rem 0 2rem;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
}

.wp-block-image.is-resized img {
    width: auto;
    max-width: 100%;
}

.wp-block-image.aligncenter {
    text-align: center;
}

.wp-block-image.aligncenter img {
    margin: 0 auto;
}

.post-body figcaption,
.page-body figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

/* WordPress embed classes */
.wp-block-embed {
    margin: 1.5rem 0 2rem;
}

.wp-block-embed__wrapper {
    position: relative;
}

.wp-block-embed-twitter {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Links in content */
.post-body a,
.page-body a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-body a:hover,
.page-body a:hover {
    color: var(--c-accent-hover);
    text-shadow: var(--glow-cyan);
}

/* Horizontal rule */
.post-body hr,
.page-body hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 2.5rem 0;
}

/* Responsive tables */
@media (max-width: 768px) {
    .post-body table,
    .page-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .post-body th,
    .post-body td,
    .page-body th,
    .page-body td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   LANDSCAPE BANNER
   ========================================================================== */
.landscape-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-top: 4rem;
}

.landscape-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.landscape-banner:hover img {
    filter: grayscale(0%);
}

.landscape-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 13, 15, 0.9));
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

.landscape-overlay span {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landscape-banner {
        height: 200px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background:
        linear-gradient(180deg, rgba(18, 18, 28, 0.98) 0%, rgba(8, 8, 12, 0.99) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    backdrop-filter: blur(10px);
    border-top: none;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

/* Animated neon top border */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--c-neon-cyan),
        var(--c-neon-magenta),
        var(--c-neon-lime),
        var(--c-neon-cyan)
    );
    background-size: 300% 100%;
    animation: footerGlow 8s linear infinite;
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.4),
        0 0 40px rgba(255, 0, 255, 0.2);
}

/* Floating particles effect */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(0, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(1px 1px at 80% 20%, rgba(255, 0, 255, 0.3) 1px, transparent 1px),
        radial-gradient(1px 1px at 40% 70%, rgba(0, 255, 102, 0.2) 1px, transparent 1px),
        radial-gradient(1px 1px at 60% 50%, rgba(0, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 0, 255, 0.2) 1px, transparent 1px),
        radial-gradient(1px 1px at 10% 90%, rgba(0, 255, 102, 0.3) 1px, transparent 1px);
    background-size: 250px 250px;
    animation: footerParticles 20s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes footerGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@keyframes footerParticles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-250px); }
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    height: 35px;
    width: auto;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--c-neon-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-neon-cyan), transparent);
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    color: var(--c-accent);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--c-text-muted);
    transition: all 0.3s ease;
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--c-neon-cyan) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    border-color: transparent;
    color: var(--c-neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-icon:hover::before {
    opacity: 1;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid transparent;
    background-image: linear-gradient(rgba(18, 18, 28, 1), rgba(18, 18, 28, 1)),
                      linear-gradient(90deg, transparent, var(--c-neon-magenta), var(--c-neon-cyan), transparent);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   RATING BADGES
   ========================================================================== */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 50px;
}

.rating-badge .stars {
    color: var(--c-neon-gold);
    font-size: 0.9rem;
}

.rating-badge .score {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-text-primary);
}

/* ==========================================================================
   PROGRESS BARS
   ========================================================================== */
.progress-bar {
    height: 8px;
    background: var(--c-bg-elevated);
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar .progress {
    height: 100%;
    background: linear-gradient(90deg, var(--c-neon-cyan) 0%, var(--c-neon-lime) 100%);
    border-radius: 50px;
    transition: width 0.5s ease;
}

/* ==========================================================================
   VIDEO CONTAINER
   ========================================================================== */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--c-bg-card);
    margin: 2rem 0;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-page {
    padding: 2rem 0;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--c-text-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Methods Cards */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--c-accent);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-head);
    color: var(--c-text-primary);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-bottom: 0.75rem;
}

.contact-link {
    font-weight: 600;
    color: var(--c-accent);
    font-size: 1rem;
    display: inline-block;
}

.contact-link:hover {
    text-decoration: underline;
    text-shadow: var(--glow-cyan);
}

.contact-locations {
    font-size: 0.95rem;
    color: var(--c-text-secondary);
    font-weight: 500;
}

.contact-card-social {
    grid-column: span 2;
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--c-bg-elevated);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all 0.2s ease;
}

.contact-social a:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--c-text-primary);
}

.contact-form-header p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-text-primary);
}

.form-group .optional {
    font-weight: 400;
    color: var(--c-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.2s ease;
    background: var(--c-bg-elevated);
    color: var(--c-text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--c-text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0a0b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    padding: 1rem;
    background: var(--c-bg-elevated);
    border-radius: var(--border-radius-sm);
    margin-top: 0.5rem;
}

.form-privacy p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.5;
}

.form-privacy a {
    color: var(--c-accent);
    text-decoration: underline;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--c-neon-cyan) 0%, #0099cc 100%);
    color: var(--c-bg-primary);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-head);
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    box-shadow: var(--glow-cyan);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-submit svg {
    transition: transform 0.2s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success svg {
    color: var(--c-neon-lime);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--c-text-primary);
}

.form-success p {
    color: var(--c-text-muted);
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-methods {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 640px) {
    .contact-hero h2 {
        font-size: 1.75rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-card-social {
        grid-column: span 1;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero p {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .matches-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-phone,
    .btn-cta-callback {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--c-text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: var(--glow-cyan);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    }
}

.glow-animation {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* ==========================================================================
   SCROLLBAR STYLING
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--c-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--c-border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--c-text-muted);
}

/* ==========================================================================
   SELECTION STYLING
   ========================================================================== */
::selection {
    background: var(--c-accent);
    color: var(--c-bg-primary);
}

::-moz-selection {
    background: var(--c-accent);
    color: var(--c-bg-primary);
}

/* ==========================================================================
   MOBILE NAVIGATION MENU
   ========================================================================== */
.mobile-nav {
    position: fixed;
    top: var(--h-header);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-bg-secondary);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: none;
}

.mobile-nav.active {
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .mobile-nav {
        display: block;
    }
}

.mobile-nav-content {
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 640px) {
    .mobile-nav-content {
        grid-template-columns: 1fr;
    }
}

.mobile-nav-section h4 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--c-border);
}

.mobile-nav-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-section ul li a {
    color: var(--c-text-secondary);
    font-size: 1rem;
    transition: all 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.mobile-nav-section ul li a:hover {
    color: var(--c-text-primary);
    padding-left: 0.5rem;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   FOOTER GAMBLING NOTICE
   ========================================================================== */
.footer-gambling-notice {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--border-radius-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-gambling-notice .gambleaware-logo {
    display: block;
}

.footer-gambling-notice .gambleaware-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-gambling-notice .gambleaware-logo:hover img {
    opacity: 1;
}

.footer-gambling-notice p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
}

.footer-gambling-notice strong {
    color: var(--c-neon-orange);
}

.footer-gambling-notice p a {
    color: var(--c-accent);
    text-decoration: underline;
}

.footer-gambling-notice p a:hover {
    text-shadow: var(--glow-cyan);
}

/* ==========================================================================
   BETTING SITE CARD COMPONENT
   ========================================================================== */
.betting-site-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.betting-site-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

.betting-site-logo {
    width: 80px;
    height: 80px;
    background: var(--c-bg-elevated);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.betting-site-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.betting-site-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.betting-site-info .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.betting-site-info .rating .stars {
    color: var(--c-neon-gold);
}

.betting-site-info .rating .score {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--c-text-primary);
}

.betting-site-info .features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.betting-site-info .feature-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    color: var(--c-accent);
}

.betting-site-bonus {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--border-radius-sm);
    min-width: 180px;
}

.betting-site-bonus .bonus-amount {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-neon-lime);
    display: block;
    margin-bottom: 0.25rem;
}

.betting-site-bonus .bonus-label {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
    display: block;
}

.betting-site-bonus .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .betting-site-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .betting-site-logo {
        margin: 0 auto;
    }

    .betting-site-info .features {
        justify-content: center;
    }
}

/* ==========================================================================
   ODDS DISPLAY COMPONENT
   ========================================================================== */
.odds-display {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--c-bg-elevated);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-mono);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.odds-display:hover {
    border-color: var(--c-neon-lime);
    background: rgba(0, 255, 136, 0.1);
}

.odds-display .odds-value {
    color: var(--c-neon-lime);
    font-size: 1.1rem;
}

.odds-display .odds-label {
    color: var(--c-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ==========================================================================
   TOURNAMENT BADGE
   ========================================================================== */
.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--c-text-secondary);
}

.tournament-badge img {
    width: 16px;
    height: 16px;
}

.tournament-badge.major {
    border-color: var(--c-neon-gold);
    color: var(--c-neon-gold);
}

/* ==========================================================================
   LIVE STREAM INDICATOR
   ========================================================================== */
.live-stream-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 51, 102, 0.15);
    border: 1px solid rgba(255, 51, 102, 0.4);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-neon-red);
    text-transform: uppercase;
}

.live-stream-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--c-neon-red);
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown-timer {
    display: flex;
    gap: 0.5rem;
    font-family: var(--font-mono);
}

.countdown-unit {
    text-align: center;
    padding: 0.5rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    min-width: 50px;
}

.countdown-unit .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-accent);
    display: block;
}

.countdown-unit .label {
    font-size: 0.65rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
}

/* ==========================================================================
   POST & PAGE HEADERS
   ========================================================================== */
.post-header,
.page-header {
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--c-border);
}

.post-title,
.page-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.post-date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.post-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.category-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: var(--glow-cyan);
}

/* ==========================================================================
   CATEGORY PAGE
   ========================================================================== */
.category-header {
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 3rem;
}

.category-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.15rem;
    color: var(--c-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   POSTS GRID
   ========================================================================== */
.posts-section {
    padding: 3rem 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

.post-card {
    padding: 1.5rem;
}

.post-card-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.post-card-title a {
    color: var(--c-text-primary);
    transition: color 0.2s ease;
}

.post-card-title a:hover {
    color: var(--c-accent);
}

.post-excerpt {
    font-size: 0.9rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.75rem;
}
