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

html {
    scroll-behavior: smooth;
}

:root {
    /* Dark navy palette */
    --navy-deepest: #060A14;
    --navy-deep: #0A0E1A;
    --navy-mid: #0F1629;
    --navy-surface: #141D35;
    --navy-elevated: #1A2440;
    --navy-border: rgba(255, 255, 255, 0.08);
    --navy-border-bright: rgba(255, 255, 255, 0.14);

    /* Pitch-style blue accent */
    --blue: #2563EB;
    --blue-bright: #3B7BFF;
    --blue-glow: rgba(37, 99, 235, 0.35);
    --blue-faint: rgba(37, 99, 235, 0.1);

    /* White section */
    --white: #ffffff;
    --off-white: #F7F8FC;
    --ink: #0A0E1A;
    --ink-mid: #1E2840;
    --ink-soft: #4A5578;
    --muted: #8892AA;
    --border-light: #E4E8F0;
    --border-blue: #BFCFFF;

    /* Gold accent */
    --gold: #F5C842;
    --gold-dim: rgba(245, 200, 66, 0.15);
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy-deepest);
    color: #fff;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero-wrapper {
    position: relative;
    background: var(--navy-deepest);
    padding-top: 30px;
    overflow: visible;
    min-height: 100vh;
}

/* Radial glow background */
.hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center,
            rgba(37, 99, 235, 0.22) 0%,
            rgba(37, 99, 235, 0.08) 35%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-2 {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 155, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-3 {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(245, 200, 66, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Grid overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 30%, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
}

/* Floating decoration elements */
.deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Pitch-like corner dot clusters */
.deco-dots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
}

.deco-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.deco-dot:nth-child(odd) {
    background: rgba(37, 99, 235, 0.5);
}

.deco-dot:nth-child(3n) {
    background: rgba(255, 255, 255, 0.12);
}

/* Floating badge/pill elements */
.deco-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 7px;
    animation: floatDrift 6s ease-in-out infinite;
    white-space: nowrap;
}

.deco-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.deco-pill-gold {
    background: rgba(245, 200, 66, 0.15);
    border-color: rgba(245, 200, 66, 0.25);
    color: var(--gold);
}

.deco-pill-blue {
    background: rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.3);
    color: #7FB3FF;
}

/* Deco cards */
.deco-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 12px 16px;
    animation: floatDrift 8s ease-in-out infinite;
}

/* Geometric shapes */
.deco-ring {
    border-radius: 50%;
    border: 1.5px solid rgba(37, 99, 235, 0.25);
    animation: slowSpin 20s linear infinite;
}

.deco-ring-inner {
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    animation: slowSpinReverse 15s linear infinite;
}

.deco-square {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    animation: floatDrift 10s ease-in-out infinite;
    transform: rotate(20deg);
}

.deco-cross {
    position: relative;
}

.deco-cross::before,
.deco-cross::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.deco-cross::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.deco-cross::after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Lines */
.deco-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
    animation: linePulse 3s ease-in-out infinite;
}

@keyframes floatDrift {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-10px) translateX(3px);
    }

    50% {
        transform: translateY(-5px) translateX(-3px);
    }

    75% {
        transform: translateY(-12px) translateX(2px);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

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

    to {
        transform: rotate(-360deg);
    }
}

@keyframes linePulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
    }
}

.hero-inner {
    position: relative;
    z-index: 5;
    max-width: 860px;
    margin: 0 auto;
    padding: 90px 40px 200px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    padding: 5px 14px 5px 6px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeSlideDown 0.6s ease both;
    letter-spacing: -0.1px;
}

.hero-badge-pill {
    background: var(--blue);
    border-radius: 100px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-h1 {
    font-size: clamp(48px, 8.5vw, 88px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 24px;
    animation: fadeSlideDown 0.6s 0.07s ease both;
}

.hero-h1 em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 540px;
    margin: 0 auto 44px;
    font-weight: 400;
    letter-spacing: -0.2px;
    animation: fadeSlideDown 0.6s 0.14s ease both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideDown 0.6s 0.21s ease both;
    margin-bottom: 72px;
}

.btn-hero-primary {
    padding: 14px 32px;
    background: var(--blue);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.22s;
    letter-spacing: -0.2px;
    box-shadow: 0 0 0 0 var(--blue-glow);
}

.btn-hero-primary:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--blue-glow);
}

.btn-hero-secondary {
    padding: 14px 32px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.22s;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.btn-hero-secondary:hover {
    background: #edf0f8;
    border-color: rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}

/* Mockup Tabs */
.mockup-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.9s 0.2s ease both;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0px;
}

.mockup-tab {
    background: transparent;
    border: none;
    padding: 10px 0 14px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.mockup-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.mockup-tab:hover {
    color: #ffffff;
}

.mockup-tab:hover::after {
    transform: scaleX(1);
}

.mockup-tab.active {
    color: #ffffff;
}

.mockup-tab.active::after {
    transform: scaleX(1);
    background-color: #ffffff;
}

.mockup-content {
    display: none;
    width: 100%;
}

.mockup-content.active {
    display: flex;
}

.mockup-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Browser mockup */
.hero-video-wrap {
    position: relative;
    animation: fadeSlideUp 0.9s 0.3s ease both;
}

.browser-chrome {
    background: var(--navy-surface);
    border: 1px solid var(--navy-border-bright);
    border-radius: 14px 14px 0 0;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.browser-dot:nth-child(1) {
    background: #FF5F57;
}

.browser-dot:nth-child(2) {
    background: #FEBC2E;
}

.browser-dot:nth-child(3) {
    background: #28C840;
}

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    letter-spacing: 0;
}

.browser-screen {
    background: #07101F;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    border: 1px solid var(--navy-border);
    border-top: none;
    min-height: 360px;
    position: relative;
    display: flex;
    align-items: stretch;
}

/* Auction dashboard inside browser */
.auction-sidebar {
    width: 190px;
    flex-shrink: 0;
    background: #050D1A;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 12px;
}

.auction-sidebar-logo {
    margin-bottom: 20px;
    padding: 0 4px;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 8px;
    border-radius: 7px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
    cursor: default;
    font-family: 'Inter', sans-serif;
}

.sidebar-nav-item.active {
    background: rgba(37, 99, 235, 0.15);
    color: #7FB3FF;
}

.sidebar-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.auction-main {
    flex: 1;
    padding: 20px;
    overflow: hidden;
}

.auction-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.auction-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter';
    letter-spacing: -0.3px;
}

.auction-round {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1px;
}

.auction-live {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
    font-family: 'Inter';
}

.live-pulse {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 1.4s infinite;
}

.auction-player-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(99, 102, 241, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.player-avatar-lg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1847F0, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Newsreader', serif;
    font-style: italic;
}

.player-info-lg {
    flex: 1;
    min-width: 0;
}

.player-name-lg {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    font-family: 'Inter';
    letter-spacing: -0.3px;
}

.player-role-lg {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 7px;
}

.player-price-lg {
    font-family: 'JetBrains Mono', monospace;
    font-size: 17px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: -0.5px;
}

.player-timer {
    text-align: right;
    flex-shrink: 0;
}

.timer-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -1px;
}

.timer-label {
    font-size: 8.5px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bids-label {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-family: 'Inter';
}

.bid-rows {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bid-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 7px;
    font-size: 11px;
    font-family: 'Inter';
}

.bid-row.top-bid {
    background: rgba(245, 200, 66, 0.07);
    border: 1px solid rgba(245, 200, 66, 0.12);
}

.bid-rank {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    width: 14px;
}

.bid-team {
    flex: 1;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.bid-amt {
    font-family: 'JetBrains Mono', monospace;
    color: rgba(255, 255, 255, 0.85);
    font-size: 10.5px;
}

.bid-row.top-bid .bid-amt {
    color: var(--gold);
}

.bid-crown {
    font-size: 10px;
}

/* Concave white curve cutting into navy hero from below */
.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -10%;
    right: -10%;
    height: 120px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 3;
}

/* ═══════════════════════════════════════
   WHITE BODY
═══════════════════════════════════════ */
.white-body {
    background: var(--white);
    position: relative;
    z-index: 4;
    color: var(--ink);
}

/* Trusted */
.trusted-section {
    padding: 72px 48px 52px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.trusted-label {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 28px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logo {
    font-size: 14.5px;
    font-weight: 800;
    color: #B8C4D4;
    letter-spacing: -0.5px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.trusted-logo:hover {
    color: var(--muted);
}

.trusted-logo-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: currentColor;
    opacity: 0.3;
}

.section-divider {
    height: 1px;
    background: var(--border-light);
    margin: 0 48px;
}

/* ═══════════════════════════════════════
   FEATURES SECTION (dark navy band)
═══════════════════════════════════════ */
.features-band {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 48px;
}

.features-band-grid {
    display: none;
}

.features-band-glow {
    position: absolute;
    right: -10%;
    top: -20%;
    width: 600px;
    height: 600px;
    background: none;
    pointer-events: none;
}

.features-band-inner {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    margin: 0 auto;
}

.features-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.features-eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue-bright);
    border-radius: 1px;
}

.features-h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--ink);
    margin-bottom: 16px;
}

.features-h2 em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.features-sub {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 56px;
    letter-spacing: -0.2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    padding: 28px 22px 26px;
    position: relative;
    overflow: hidden;
    transition: all 0.28s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--fc-accent, linear-gradient(90deg, #2563EB, #6366f1));
    opacity: 0;
    transition: opacity 0.28s;
    border-radius: 20px 20px 0 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(10, 14, 26, 0.09), 0 4px 12px rgba(37, 99, 235, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.feature-icon svg {
    display: block;
}

.feature-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
    margin-bottom: 9px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.75;
    letter-spacing: -0.1px;
    flex: 1;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    cursor: pointer;
    transition: gap 0.18s;
    text-decoration: none;
}

.feature-tag:hover {
    gap: 9px;
}

/* Deco elements inside features */
.feature-card-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.06;
}

/* ═══════════════════════════════════════
   TEMPLATES SECTION (white bg)
═══════════════════════════════════════ */
.templates-section {
    background: var(--white);
    padding: 90px 0 0;
    overflow: hidden;
    position: relative;
}

.templates-section-deco {
    position: absolute;
    pointer-events: none;
}

.templates-header-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 56px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--blue);
    border-radius: 1px;
}

.templates-h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--ink);
}

.templates-h2 em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
}

.templates-sub {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.pitch-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: gap 0.18s;
    letter-spacing: -0.2px;
}

.pitch-explore-link:hover {
    gap: 14px;
}

/* Pitch scrolling rows */
.pitch-row {
    display: flex;
    gap: 10px;
    padding: 0 0 10px 0;
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.pitch-row-wrap {
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
}

.pitch-row-wrap:last-child {
    margin-bottom: 0;
}

.pitch-row-wrap.row1 .pitch-row {
    animation: scrollLeft 40s linear infinite;
}

.pitch-row-wrap.row2 .pitch-row {
    animation: scrollRight 50s linear infinite;
}

.pitch-row-wrap.row3 .pitch-row {
    animation: scrollLeft 35s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.pitch-row-wrap:hover .pitch-row {
    animation-play-state: paused;
}

.pitch-tile {
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #0A0F1E;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pitch-tile:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.pitch-tile img {
    display: block;
    height: 160px;
    width: auto;
    object-fit: cover;
    transition: filter 0.3s;
}

.pitch-tile:hover img {
    filter: brightness(0.85);
}

.pitch-tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(37, 99, 235, 0.15);
}

.pitch-tile:hover .pitch-tile-overlay {
    opacity: 1;
}

.pitch-tile-pill {
    background: #fff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(6px);
    transition: transform 0.3s;
}

.pitch-tile:hover .pitch-tile-pill {
    transform: translateY(0);
}

.pitch-rows-outer {
    position: relative;
}

.pitch-rows-outer::before,
.pitch-rows-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 5;
    pointer-events: none;
}

.pitch-rows-outer::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.pitch-rows-outer::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* ═══════════════════════════════════════
   HOW IT WORKS (dark navy)
═══════════════════════════════════════ */
.how-section {
    background: var(--white);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.how-section-glow {
    position: absolute;
    left: -5%;
    top: -10%;
    width: 500px;
    height: 500px;
    background: none;
    pointer-events: none;
}

.how-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
}

.how-step {
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: all 0.28s;
}

.how-step:first-child {
    border-radius: 16px 0 0 16px;
}

.how-step:last-child {
    border-radius: 0 16px 16px 0;
}

.how-step:hover {
    background: var(--off-white);
    border-color: rgba(37, 99, 235, 0.25);
    z-index: 2;
}

.how-step-num {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 64px;
    font-weight: 400;
    color: rgba(37, 99, 235, 0.15);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.how-step-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.how-step-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}

.how-step-desc {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.7;
    letter-spacing: -0.1px;
}

/* ═══════════════════════════════════════
   STATS BAND
═══════════════════════════════════════ */
.stats-band {
    background: var(--white);
    padding: 80px 48px;
    border-top: none;
    border-bottom: none;
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {}

.stat-num {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: -0.1px;
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
    background: var(--white);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: none;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 5;
    max-width: 680px;
    margin: 0 auto;
}

.cta-h2 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -2.5px;
    line-height: 1.06;
    margin-bottom: 20px;
}

.cta-h2 em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
}

.cta-sub {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 44px;
    letter-spacing: -0.2px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA deco dots */
.cta-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 32px;
}

.cta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.25);
}

.cta-dot:nth-child(3) {
    background: var(--blue);
    width: 6px;
    height: 6px;
    margin-top: -1px;
}


/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── HERO ── */
    .hero-inner {
        padding: 80px 20px 120px;
    }

    .hero-h1 {
        font-size: clamp(32px, 10vw, 52px);
        letter-spacing: -1.5px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 40px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }


    /* ── HERO INNER — tight padding so mockup is visible ── */
    .hero-inner {
        padding: 80px 20px 40px !important;
    }

    .hero-actions {
        margin-bottom: 28px !important;
    }

    /* ── BROWSER MOCKUP — full width, sidebar hidden ── */
    .hero-video-wrap {
        display: block !important;
    }

    .browser-chrome {
        padding: 8px 12px;
        border-radius: 10px 10px 0 0;
    }

    .browser-url {
        font-size: 10px;
    }

    .browser-screen {
        min-height: 220px;
        flex-direction: row;
    }

    .auction-sidebar {
        display: none !important;
    }

    .auction-main {
        padding: 14px 14px;
        width: 100%;
    }

    .auction-topbar {
        margin-bottom: 10px;
    }

    .auction-title {
        font-size: 12px;
    }

    .auction-round {
        font-size: 9px;
    }

    .auction-live {
        font-size: 9px;
        padding: 3px 8px;
    }

    .auction-player-card {
        padding: 10px;
        gap: 8px;
        margin-bottom: 10px;
    }

    .player-avatar-lg {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .player-name-lg {
        font-size: 11px;
    }

    .player-role-lg {
        font-size: 8px;
        margin-bottom: 4px;
    }

    .player-price-lg {
        font-size: 15px;
    }

    .player-timer {
        flex-shrink: 0;
    }

    .timer-val {
        font-size: 17px;
    }

    .timer-label {
        font-size: 7px;
    }

    .bids-label {
        font-size: 8px;
        margin-bottom: 6px;
    }

    .bid-row {
        padding: 5px 8px;
        border-radius: 6px;
        gap: 6px;
        font-size: 10px;
    }

    .bid-team {
        font-size: 10px;
    }

    .bid-amt {
        font-size: 9.5px;
    }

    .bid-crown {
        font-size: 10px;
    }


    /* ── TRUSTED ── */
    .trusted-section {
        padding: 48px 20px 32px;
    }

    .trusted-logos {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trusted-logo {
        font-size: 13px;
    }

    /* ── STATS ── */
    .stats-band {
        padding: 48px 20px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-num {
        font-size: 36px;
    }

    /* ── FEATURES ── */
    .features-band {
        padding: 64px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .features-h2 {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    /* ── TEMPLATES ── */
    .templates-section {
        padding: 64px 0 0;
    }

    .templates-header-wrap {
        padding: 0 20px 32px;
        flex-direction: column;
        gap: 16px;
    }

    .templates-h2 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .pitch-tile img {
        height: 100px;
    }

    /* ── HOW IT WORKS ── */
    .how-section {
        padding: 64px 20px;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .how-step {
        border-radius: 16px !important;
    }

    .how-step-num {
        font-size: 48px;
    }

    /* ── TOURNAMENTS ── */
    .tournaments-dark,
    .tournaments-white {
        padding: 64px 20px;
    }

    .tourn-grid {
        grid-template-columns: 1fr !important;
    }

    .tourn-card-dark.featured,
    .tourn-card-light.featured {
        grid-column: span 1;
    }

    .tourn-card-dark.featured .tc-body,
    .tourn-card-light.featured .tc-body {
        flex-direction: column;
    }

    .tourn-card-dark.featured .tc-left,
    .tourn-card-light.featured .tc-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .tourn-card-dark.featured .tc-right,
    .tourn-card-light.featured .tc-right {
        width: 100%;
        padding-left: 0;
    }

    /* ── PRICING ── */
    .pricing-section {
        padding: 64px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .pc.popular {
        transform: none;
    }

    /* ── CONTACT ── */
    .contact-section {
        padding: 64px 20px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .contact-form {
        padding: 28px 20px;
    }

    /* ── CTA ── */
    .cta-section {
        padding: 64px 20px;
    }

    .cta-h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btns button {
        width: 100%;
        justify-content: center;
    }

    /* ── BOUNDARY BLOBS + OVERFLOW — mobile fix ── */
    .boundary-blob,
    .boundary-blob::before {
        display: none !important;
    }

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .white-body,
    .features-band,
    .templates-section,
    .how-section,
    .stats-band,
    .tournaments-dark,
    .tournaments-white,
    .pricing-section,
    .contact-section,
    .cta-section {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    /* ── SECTIONS padding ── */
    .how-section,
    .stats-band {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ═══════════════════════════════════════════════════════
   LIVE TOURNAMENTS SECTION — DARK NAVY VERSION
════════════════════════════════════════════════════════ */
.tournaments-dark {
    background: var(--white);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.tournaments-dark-grid {
    display: none;
}

.tournaments-dark-glow {
    position: absolute;
    top: -15%;
    right: -5%;
    width: 700px;
    height: 600px;
    background: none;
    pointer-events: none;
}

.tournaments-dark-glow2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 400px;
    background: none;
    pointer-events: none;
}

.tournaments-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Section header row */
.tournaments-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 52px;
}

.tournaments-title-block {}

.tournaments-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 9px;
    padding: 8px 18px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    letter-spacing: -0.2px;
    text-decoration: none;
}

.tournaments-view-all:hover {
    color: var(--ink);
    border-color: rgba(37, 99, 235, 0.25);
    background: #edf0f8;
}

/* Filter tabs */
.tourn-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tourn-tab {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--border-light);
    background: transparent;
    color: var(--muted);
    font-family: 'Inter';
    transition: all 0.18s;
    letter-spacing: -0.1px;
}

.tourn-tab:hover {
    color: var(--ink);
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(37, 99, 235, 0.04);
}

.tourn-tab.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

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

/* ── THE CARD — dark version ── */
.tourn-card-dark {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.tourn-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 30%, rgba(37, 99, 235, 0.3) 50%, rgba(255, 255, 255, 0.12) 70%, transparent 100%);
    transition: opacity 0.3s;
}

.tourn-card-dark:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(37, 99, 235, 0.15),
        0 24px 64px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(37, 99, 235, 0.12);
}

.tourn-card-dark:hover::before {
    opacity: 0;
}

.tourn-card-dark:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.6), transparent);
}

/* Card top accent bar (sport-colour coded) */
.tc-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #6366f1);
    position: relative;
    overflow: hidden;
}

.tc-accent-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 2.5s ease-in-out infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

.tc-accent-bar.cricket {
    background: linear-gradient(90deg, #2563EB, #3B7BFF);
}

.tc-accent-bar.football {
    background: linear-gradient(90deg, #059669, #10b981);
}

.tc-accent-bar.kabaddi {
    background: linear-gradient(90deg, #D97706, #F59E0B);
}

.tc-accent-bar.esports {
    background: linear-gradient(90deg, #7C3AED, #A855F7);
}

/* Card body */
.tc-body {
    padding: 24px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Top row: logo + live badge */
.tc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
}

/* Tournament logo */
.tc-logo {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.tc-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.tourn-card-dark:hover .tc-logo {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
}

/* Live badge */
.tc-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 700;
    font-family: 'Inter';
    letter-spacing: 0.3px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.tc-live-badge.live {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.tc-live-badge.upcoming {
    background: rgba(245, 200, 66, 0.1);
    border: 1px solid rgba(245, 200, 66, 0.2);
    color: var(--gold);
}

.tc-live-badge.completed {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.35);
}

.tc-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.tc-live-badge.live .tc-live-dot {
    animation: livePulse 1.3s ease-in-out infinite;
}

/* Name + sport */
.tc-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-bottom: 5px;
}

.tc-sport-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Divider */
.tc-divider {
    height: 1px;
    background: var(--border-light);
    margin: 16px 0;
}

/* Meta info grid */
.tc-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.tc-meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tc-meta-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tc-meta-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-mid);
    letter-spacing: -0.2px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tc-meta-icon {
    font-size: 12px;
    opacity: 0.7;
}

/* Teams row with avatar chips */
.tc-teams-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.tc-team-chips {
    display: flex;
    align-items: center;
}

.tc-team-chip {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--off-white);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    margin-left: -7px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.tc-team-chip:first-child {
    margin-left: 0;
}

.tourn-card-dark:hover .tc-team-chip {
    border-color: var(--navy-surface);
}

.tc-team-chip.more {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--blue-bright);
    font-size: 9px;
}

.tc-teams-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: -0.1px;
}

/* Card footer: buttons */
.tc-footer {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.tc-btn-watch {
    flex: 1;
    padding: 10px 16px;
    background: var(--blue);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter';
    transition: all 0.22s;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tc-btn-watch:hover {
    background: var(--blue-bright);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.tc-btn-watch.watch {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #7FB3FF;
}

.tc-btn-watch.watch:hover {
    background: rgba(37, 99, 235, 0.25);
    box-shadow: none;
}

.tc-btn-view {
    padding: 10px 14px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter';
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: -0.1px;
}

.tc-btn-view:hover {
    background: #edf0f8;
    color: var(--ink);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Featured card — spans 2 cols */
.tourn-card-dark.featured {
    grid-column: span 2;
}

.tourn-card-dark.featured .tc-body {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
}

.tourn-card-dark.featured .tc-left {
    flex: 1;
    min-width: 240px;
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.tourn-card-dark.featured .tc-right {
    width: 220px;
    padding-left: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tourn-card-dark.featured .tc-logo {
    width: 80px;
    height: 80px;
    font-size: 34px;
    border-radius: 20px;
}

.tourn-card-dark.featured .tc-name {
    font-size: 20px;
    letter-spacing: -0.8px;
}

/* Featured pulse ring around logo */
.tc-logo-wrap {
    position: relative;
    flex-shrink: 0;
}

.tc-logo-ring {
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    border: 1.5px solid rgba(37, 99, 235, 0.4);
    animation: ringPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

/* Progress bar for live auctions */
.tc-progress-wrap {
    margin-top: 14px;
}

.tc-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 10.5px;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.tc-progress-label span:last-child {
    color: var(--ink-mid);
    font-weight: 600;
}

.tc-progress-track {
    height: 4px;
    background: var(--border-light);
    border-radius: 100px;
    overflow: hidden;
}

.tc-progress-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    position: relative;
    overflow: hidden;
    transition: width 0.5s ease;
}

.tc-progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s linear infinite;
}

/* ═══════════════════════════════════════════════════════
   LIVE TOURNAMENTS SECTION — WHITE VERSION
════════════════════════════════════════════════════════ */
.tournaments-white {
    background: var(--white);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.tournaments-white-bg-deco {
    position: absolute;
    pointer-events: none;
}

/* ── THE CARD — white/light version ── */
.tourn-card-light {
    background: #fff;
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(10, 14, 26, 0.06);
}

.tourn-card-light:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-6px);
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.06),
        0 24px 64px rgba(10, 14, 26, 0.14),
        0 8px 24px rgba(37, 99, 235, 0.08);
}

/* Light card internals — override colours */
.tourn-card-light .tc-name {
    color: var(--ink);
}

.tourn-card-light .tc-sport-tag {
    color: rgba(10, 14, 26, 0.35);
}

.tourn-card-light .tc-meta-label {
    color: rgba(10, 14, 26, 0.3);
}

.tourn-card-light .tc-meta-value {
    color: var(--ink-mid);
}

.tourn-card-light .tc-teams-count {
    color: rgba(10, 14, 26, 0.4);
}

.tourn-card-light .tc-divider {
    background: var(--border-light);
}

.tourn-card-light .tc-logo {
    background: var(--off-white);
    border-color: var(--border-light);
}

.tourn-card-light .tc-logo::after {
    background: none;
}

.tourn-card-light .tc-team-chip {
    background: var(--off-white);
    border-color: #fff;
    color: var(--ink-soft);
}

.tourn-card-light .tc-team-chip.more {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
    color: var(--blue);
}

.tourn-card-light .tc-btn-view {
    background: var(--off-white);
    border-color: var(--border-light);
    color: var(--ink-soft);
}

.tourn-card-light .tc-btn-view:hover {
    background: #edf0f8;
    color: var(--ink);
    border-color: rgba(37, 99, 235, 0.2);
}

.tourn-card-light .tc-live-badge.live {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.tourn-card-light .tc-live-badge.upcoming {
    background: rgba(245, 200, 66, 0.08);
    border-color: rgba(245, 200, 66, 0.2);
}

.tourn-card-light .tc-progress-track {
    background: rgba(10, 14, 26, 0.07);
}

.tourn-card-light .tc-progress-label {
    color: rgba(10, 14, 26, 0.35);
}

.tourn-card-light .tc-progress-label span:last-child {
    color: var(--ink-mid);
}

.tourn-card-light .tc-logo-ring {
    border-color: rgba(37, 99, 235, 0.25);
}

.tourn-card-light .featured .tc-left {
    border-right-color: var(--border-light);
}

/* Section separator label */
.section-separator {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 64px;
}

.section-separator-line {
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.section-separator-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    white-space: nowrap;
}

/* Tab bar light version */
.tourn-tab-light {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--border-light);
    background: transparent;
    color: var(--muted);
    font-family: 'Inter';
    transition: all 0.18s;
    letter-spacing: -0.1px;
}

.tourn-tab-light:hover {
    color: var(--ink);
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(37, 99, 235, 0.04);
}

.tourn-tab-light.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

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

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

    .tourn-card-dark.featured {
        grid-column: span 2;
    }
}

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

    .tourn-card-dark.featured {
        grid-column: span 1;
    }

    .tourn-card-dark.featured .tc-body {
        flex-direction: column;
    }

    .tourn-card-dark.featured .tc-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .tourn-card-dark.featured .tc-right {
        width: 100%;
        padding-left: 0;
    }

    .tournaments-dark,
    .tournaments-white {
        padding: 72px 20px;
    }
}


/* ═══════════════════════════════════════════════════════
   PRICING SECTION
════════════════════════════════════════════════════════ */
.pricing-section {
    background: var(--white);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.pricing-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 100px;
    padding: 5px 6px 5px 18px;
    margin: 28px auto 56px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(10, 14, 26, 0.06);
}

.pricing-toggle-pill {
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.2px;
}

/* Grid — 4 cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

/* Base card */
.pc {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.pc:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(10, 14, 26, 0.1), 0 4px 16px rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Popular card — elevated */
.pc.popular {
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(10, 14, 26, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pc.popular:hover {
    transform: translateY(-14px);
    box-shadow: 0 40px 100px rgba(10, 14, 26, 0.3), 0 0 0 1px rgba(37, 99, 235, 0.3);
}

/* Top accent bar */
.pc-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
}

/* Popular badge */
.pc-popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

/* Plan name */
.pc-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pc.popular .pc-name {
    color: rgba(255, 255, 255, 0.45);
}

/* Price */
.pc-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
    line-height: 1;
}

.pc-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.pc.popular .pc-currency {
    color: rgba(255, 255, 255, 0.7);
}

.pc-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -3px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.pc.popular .pc-amount {
    color: #fff;
}

.pc-period {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 2px;
}

.pc.popular .pc-period {
    color: rgba(255, 255, 255, 0.4);
}

/* Per event note */
.pc-note {
    font-size: 11.5px;
    color: var(--muted);
    margin-bottom: 20px;
    letter-spacing: -0.1px;
}

.pc.popular .pc-note {
    color: rgba(255, 255, 255, 0.35);
}

/* Divider */
.pc-divider {
    height: 1px;
    background: var(--border-light);
    margin: 20px 0;
}

.pc.popular .pc-divider {
    background: rgba(255, 255, 255, 0.1);
}

/* CTA button */
.pc-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: center;
    text-decoration: none;
    transition: all 0.22s;
    letter-spacing: -0.2px;
    border: none;
    margin-bottom: 24px;
}

.pc-btn.outline {
    background: transparent;
    border: 1.5px solid var(--border-light);
    color: var(--ink);
}

.pc-btn.outline:hover {
    background: var(--off-white);
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--blue);
    transform: translateY(-1px);
}

.pc-btn.primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.pc-btn.primary:hover {
    background: var(--blue-bright);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

.pc-btn.dark {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.pc-btn.dark:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.pc-btn.white {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.pc-btn.white:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* Features list */
.pc-features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.pc-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-mid);
    line-height: 1.45;
    letter-spacing: -0.1px;
}

.pc.popular .pc-feature {
    color: rgba(255, 255, 255, 0.75);
}

.pc-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    border: 1.5px solid rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.pc.popular .pc-check {
    background: rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.4);
}

.pc-check svg {
    display: block;
}

.pc-feature.muted .pc-feature-text {
    color: var(--muted);
}

.pc.popular .pc-feature.muted .pc-feature-text {
    color: rgba(255, 255, 255, 0.3);
}

.pc-check.muted {
    background: rgba(0, 0, 0, 0.04);
    border-color: var(--border-light);
}

.pc.popular .pc-check.muted {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Bottom note */
.pricing-bottom-note {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: var(--muted);
}

.pricing-bottom-note a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════ */
.contact-section {
    background: var(--white);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.contact-left {}

.contact-tagline {
    font-size: 14px;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-tagline::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 1px;
    flex-shrink: 0;
}

.contact-h2 {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.contact-h2 em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
}

.contact-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 36px;
    letter-spacing: -0.2px;
}

/* Contact info blocks */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--off-white);
    border: 1.5px solid var(--border-light);
    border-radius: 14px;
    transition: all 0.22s;
}

.contact-info-item:hover {
    border-color: rgba(37, 99, 235, 0.25);
    background: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.07);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-text {}

.contact-info-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.contact-info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.3px;
}

/* Contact form */
.contact-form {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(10, 14, 26, 0.07);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #6366f1);
}

.contact-form-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.6px;
    margin-bottom: 6px;
}

.contact-form-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
    letter-spacing: -0.1px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group.full {
    grid-column: span 2;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-mid);
    letter-spacing: -0.1px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 11px 14px;
    background: var(--off-white);
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.2s;
    letter-spacing: -0.1px;
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

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

.form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.form-select {
    appearance: none;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 13px 24px;
    background: var(--blue);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.2px;
    transition: all 0.22s;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.form-submit:hover {
    background: var(--blue-bright);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

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

    .pc.popular {
        transform: none;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .pricing-section,
    .contact-section {
        padding: 72px 20px;
    }
}

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

/* ══════════════════════════════════════════════════════
       SEAMLESS SECTION FLOW
    ══════════════════════════════════════════════════════ */

.section-divider {
    display: none !important;
}

.stats-band {
    border-top: none !important;
    border-bottom: none !important;
    padding-top: 56px;
    padding-bottom: 56px;
}

/* All white sections */
.white-body,
.features-band,
.templates-section,
.how-section,
.stats-band,
.tournaments-dark,
.tournaments-white,
.pricing-section,
.contact-section,
.cta-section {
    background: var(--white) !important;
    position: relative;
    overflow: visible;
}

/* The blob divs injected between sections */
.boundary-blob {
    position: relative;
    height: 0;
    overflow: visible;
    z-index: 1;
    pointer-events: none;
}

.boundary-blob::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: -300px;
    /* exactly centered on boundary — 300px up and 300px down */
    background: radial-gradient(circle, rgba(218, 226, 255, 0.75) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Alternate: right side */
.boundary-blob.right::before {
    right: -200px;
}

/* Alternate: left side */
.boundary-blob.left::before {
    left: -200px;
}

.trusted-section {
    padding-bottom: 36px;
}
/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES (v2)
   - Hide floating deco elements on small screens
   - Fix features grid to 1 column on mobile
═══════════════════════════════════════════════════════ */

/* Hide all floating decoration elements on mobile to prevent overlap */
@media (max-width: 768px) {

    /* Hero section breathing room */
    .hero-inner {
        padding-bottom: 60px;
        position: relative;
        z-index: 10;
    }

    /* Ensure hero content sits abovef any remaining bg elements */
    .hero-h1,
    .hero-sub,
    .hero-actions,
    .hero-badge {
        position: relative;
        z-index: 10;
    }

    /* Position deco elements in the corners/edges on mobile, and place them above main content */
    .deco {
        z-index: 11 !important;
    }

    .deco-item-1 { top: 20px !important; left: -10px !important; }
    .deco-item-2 { top: 20px !important; right: -10px !important; }
    .deco-item-3 { top: 70px !important; left: 10px !important; transform: scale(0.85); transform-origin: left; }
    .deco-item-4 { top: 85px !important; right: 10px !important; transform: scale(0.85); transform-origin: right; }
    .deco-item-5 { top: 250px !important; left: -20px !important; }
    .deco-item-6 { bottom: 200px !important; right: -30px !important; }
    .deco-item-7 { bottom: -20px !important; left: 10px !important; transform: scale(0.85); transform-origin: left; }
    .deco-item-8,
    .deco-item-9,
    .deco-item-10,
    .deco-item-12,
    .deco-item-13 { display: none !important; } /* Hide clutter on small screens */
    .deco-item-11 { bottom: -40px !important; right: 10px !important; transform: scale(0.85); transform-origin: right; }
    .deco-item-11 .deco-card {
        background: linear-gradient(135deg, rgba(20, 29, 53, 0.98), #060A14) !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
}

/* Features grid — 1 card per row on mobile (overrides 900px 2-col rule) */
@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
}

/* Also fix at 480px to be safe for very small phones */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .feature-card {
        padding: 22px 18px 20px;
    }

    /* Prevent horizontal overflow on small screens */
    .hero-video-wrap {
        display: none;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-num {
        font-size: 28px;
    }

    /* Contact form improvements on very small screens */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        gap: 32px;
    }

    /* Tournament cards */
    .tourn-grid {
        grid-template-columns: 1fr !important;
    }

    .tourn-card-dark.featured,
    .tourn-card-light.featured {
        grid-column: span 1 !important;
    }
}

/* ═══════════════════════════════════════════════════════
   TOURNAMENT CARD — YouTube button & responsive footer
═══════════════════════════════════════════════════════ */

.tc-btn-yt {
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #ff4444;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.tc-btn-yt:hover {
    background: rgba(255, 0, 0, 0.18);
    border-color: rgba(255, 0, 0, 0.35);
    color: #ff2222;
    transform: translateY(-1px);
}

/* Allow footer to wrap when there are many buttons */
.tc-footer {
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .tc-footer {
        flex-direction: column;
        gap: 6px;
    }

    .tc-btn-watch,
    .tc-btn-view,
    .tc-btn-yt {
        width: 100%;
        justify-content: center;
    }
}
