@font-face {
    font-family: 'Schabo';
    src: url('../assets/fonts/SCHABO-Condensed.woff2') format('woff2'), url('../assets/fonts/SCHABO-Condensed.woff') format('woff');
    /* Backup */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --theme-color: #e8001d;
    --second-color: #14192B;
    --dark: #14192B;
    --dark2: #111111;
    --dark3: #1a1a1a;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #f5f5f5;
    --width: 80px;
    --height: 80px;
    --border-radius: 100%;
    --theme-color2: #e8001d;
}

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

html,
body {
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
    /* overflow-x: visible; */
}

body {
    font-family: "Space Mono", monospace;
    background: var(--dark);
    /* overflow-x: hidden; */
}

html,
body {
    color: #141414;
    font-size: 16px;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--second-color);
}

.heading-color {
    color: var(--bs-gray-900) !important;
    font-weight: 600;
}

.lead {
    font-size: 16px;
    font-weight: 500;
}

.bg-theme {
    background: var(--second-color) !important;
}

.bg-theme1 {
    background: var(--theme-color2) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 500;
    color: #272727;
    letter-spacing: -0.01em;
    font-family: 'Schabo', sans-serif;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
    margin-bottom: 0;
}

img {
    object-fit: cover;
}

.icon-lg {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.text-primary {
    color: var(--theme-color) !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(235, 238, 255, 1) !important;
}

.z-index-2 {
    z-index: 2 !important;
}

.display-6 {
    /* font-size: 3.2rem; */
    font-weight: 700;
}

h1,
.h1 {
    /* font-size: 0.625rem; */
}

.pt-xl-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.btn-theme {
    color: rgb(255, 255, 255);
    line-height: 1.62;
    background: linear-gradient(to right, rgb(0 166 158) 0%, rgb(11 26 87) 51%, rgb(0 166 158) 100%) 0% 0% / 200%;
    transition: 0.3s ease-in-out;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    padding: 0.96rem 1.8rem;
}

.btn-theme:active,
.btn-theme:focus,
.btn-theme:hover,
.btn-theme:focus-visible {
    color: rgb(255, 255, 255) !important;
    background-position: right center;
}

.btn-nav {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--theme-color);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-nav:hover {
    background: #c0001a;
    color: var(--white);
}

.navbar {
    z-index: 1000;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: background 0.4s;
}

.navbar.scrolled {
    background: rgb(10 14 24 / 95%);
    backdrop-filter: blur(8px);
}

.navbar-brand {
    /* font-family: 'Bebas Neue', sans-serif; */
    /* font-size: 1.6rem; */
    letter-spacing: 2px;
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-brand span {
    color: var(--theme-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links :hover {
    color: var(--white);
}

.navbar-brand span {
    color: var(--red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-item a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

@media (min-width: 992px) {
    .navbar-expand-lg .dropdown:hover>.dropdown-menu,
    .navbar-expand-lg .dropstart:hover>.dropdown-menu {
        animation: dropdown-show .2s;
        display: block;
    }
}


/* Mega menu full width */


/* ===== HAMBURGER ===== */

.custom-toggler {
    width: 30px;
    height: 22px;
    position: relative;
    border: none;
    background: none;
}

.custom-toggler span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    left: 0;
    transition: .3s;
}

.custom-toggler span:nth-child(1) {
    top: 0;
}

.custom-toggler span:nth-child(2) {
    top: 9px;
}

.custom-toggler span:nth-child(3) {
    top: 18px;
}

.custom-toggler.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.custom-toggler.active span:nth-child(2) {
    opacity: 0;
}

.custom-toggler.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}


/* ===== MOBILE MENU ===== */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #0b1220;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Screens base */

.menu-screen {
    position: absolute;
    inset: 0;
    padding: 25px;
    color: #fff;
    opacity: 0;
    transition: opacity .4s ease, transform .5s cubic-bezier(.77, 0, .18, 1);
}

.demobtn:hover {
    color: var(--theme-color2) !important;
}


/* Active screen */

.menu-screen.active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
}


/* Exit left (slide) */

.menu-screen.exit-left {
    transform: translateX(-30%);
    opacity: 0;
}


/* Make mobile menu full height and column */

.menu-list li a.menu-link {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
}

.menu-list li a.menu-link:hover {
    text-decoration: underline;
}

.sport-card a {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    margin: auto;
}

.sport-card a:hover span {
    color: #38A69E;
}

.menu-screen.screen-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* menu starts from center */
    padding: 25px;
    height: 100%;
    background: #ff2d2d;
    color: #fff;
}


/* Menu list styling */

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    /* font-size: 1.5rem; */
    /* margin: 15px 0; */
}


/* Arrow justify content */

.menu-list li.open-sports {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Optional: arrow style */

.menu-list li .arrow {
    /* font-size: 4.5rem; */
}


/* Colors */

.screen-1 {
    background: #ff2d2d;
}

.screen-3 {
    background: #0b1220;
}


/* Demo button at bottom */

.menu-list {
    list-style: none;
    padding-left: 0;
    font-size: 4rem;
    font-family: 'Schabo', sans-serif;
    text-transform: uppercase;
}


/* ===== HEADER ===== */

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-demo {
    border: 1px solid #fff;
    padding: 4px 10px;
    font-size: 11px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.close-menu,
.back-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
}

.navbar .dropdown-fullwidth {
    position: static;
}

@media (min-width: 992px) {
    .w-lg-auto {
        width: auto !important;
    }
}

.navbar .dropdown-fullwidth .dropdown-menu {
    left: 0;
    margin: 0 auto;
    max-width: 1320px;
    /* padding: 1rem 0; */
    right: 0;
    /* top: 49px; */
}

.dropdown-menu .sport-card {
    height: 400px;
}

.bgcolor {
    background: #0b0f18 !important;
}


/* ===== SCREEN 1 (PIXEL PERFECT) ===== */

.menu-big {
    font-size: 42px;
    line-height: 1.05;
    text-transform: uppercase;
    margin-top: 60px;
}

.book-btn {
    position: absolute;
    bottom: 40px;
    left: 25px;
    right: 25px;
    text-align: center;
    background: #fff;
    color: #ff2d2d;
    padding: 12px;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
}


/* ===== SCREEN 3 CARDS ===== */

.sport-grid {
    display: grid;
    gap: 15px;
}

.sport-card {
    position: relative;
    /* height: 160px; */
    overflow: hidden;
    border-radius: 12px;
}


/* image */

.sport-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: .5s ease;
}


/* overlay gradient */

.sport-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}


/* text */

.sport-card span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    width: 100%;
    justify-content: center;
    display: flex;
    z-index: 1;
}


/* hover effect */

.sport-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* ===== DESKTOP ===== */

.mega-menu {
    width: 100%;
    background: #0b1220;
    padding: 30px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(min-width:992px) {
    .mega-dropdown:hover .mega-menu {
        display: block;
    }
}


/* ── ANIMATIONS ── */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}


/* Dropdown animation */

@keyframes dropdown-show {
    from {
        opacity: 0;
        transform: scale(.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.dropdown-item {
    background-color: transparent;
    border: 0;
    clear: both;
    color: #33354d;
    display: block;
    font-weight: 400;
    padding: 0.375rem 1rem;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    font-size: 14px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        background-color: #fff;
        border: 1px solid #fff;
        border-radius: 0.5rem;
        box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, .05), 0 0.25rem 0.5625rem rgba(11, 15, 25, .03);
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .dropdown:before {
        content: "";
        height: .375rem;
        left: 0;
        position: absolute;
        top: 100%;
        width: 100%;
    }
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--theme-color);
    background-color: transparent;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
        padding: 2rem 0.875rem;
    }
}


/* ── HERO ── */


/* ── HERO ── */

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 14, 24, 0.88) 40%, rgba(10, 10, 10, 0.35) 100%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #0E1220);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 80px;
}

.hero-eyebrow {
    /* font-family: 'Barlow Condensed', sans-serif; */
    /* font-size: 0.75rem; */
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 16px;
}

.hero-title {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: clamp(5rem, 10vw, 9rem);
    line-height: 0.92;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 380px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
}

.select-sport {
    background: #0E1220;
}

.btn-primary-custom {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: var(--theme-color);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary-custom:hover {
    background: #c0001a;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid #fff;
    padding: 14px 30px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: var(--white);
}

.section-padding {
    padding: 100px 0;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}

.section-title {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 98px;
    letter-spacing: 3px;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
    line-height: 1;
}

.headingsection {
    margin-bottom: 60px;
}


/* sports */

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── SPORT ACCORDION GRID ── */

.sport-grid {
    display: flex;
    gap: 6px;
    height: 551px;
    max-width: 100%;
    padding: 0 40px;
}

.sport-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 3px;
    background: #0d0d14;
    /* default: equal share */
    flex: 1;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
}


/* When grid is hovered, shrink all cards */

.sport-grid:hover .sport-card {
    flex: 1.18;
}


/* Expand the hovered card */

.sport-grid:hover .sport-card:hover {
    flex: 3.2;
}


/* Image */

.sport-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) brightness(0.35);
    transition: filter 0.55s ease, transform 0.55s ease;
    display: block;
}


/* Hovered card: full color, slight zoom */

.sport-grid:hover .sport-card:hover img {
    filter: grayscale(0%) brightness(0.72);
    transform: scale(1.04);
}


/* Dark overlay always present */

.sport-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(6, 6, 14, 0.96) 0%, rgba(6, 6, 14, 0.45) 35%, rgba(6, 6, 14, 0.1) 70%, transparent 100%);
    transition: opacity 0.4s;
    z-index: 1;
}


/* Content pinned bottom-left */

.sport-card-content {
    position: absolute;
    top: 0;
    /* Covers the whole card so the link works */
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: grid;
    align-content: end;
    padding: 0 24px 26px 24px;
    white-space: nowrap;
}

.sport-card-title {
    /* font-family: 'Barlow Condensed', sans-serif; */
    /* font-size: 0.72rem; */
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    /* inactive: dim white */
    color: rgba(255, 255, 255, 0.45) !important;
    transition: color 0.4s;
    opacity: 1;
}


/* Hovered card title becomes red */

.sport-grid:hover .sport-card:hover .sport-card-title {
    color: var(--theme-color);
}


/* Thin red line reveal on hover */

.sport-card-line {
    width: 0;
    height: 2px;
    background: var(--theme-color);
    margin-top: 7px;
    transition: width 0.4s ease 0.15s;
    margin: 7px auto;
}

.sport-grid:hover .sport-card:hover .sport-card-line {
    width: 32px;
}


/* Responsive */

@media (max-width: 991px) {
    .sport-grid {
        height: 420px;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .sport-grid {
        flex-direction: column;
        height: auto;
        padding: 0 16px;
        gap: 6px;
    }
    .sport-card {
        flex: none;
        height: 240px;
    }
    .sport-grid:hover .sport-card {
        flex: none;
        height: 100px;
    }
    .sport-grid:hover .sport-card:hover {
        flex: none;
        height: 280px;
    }
}

.text-theme {
    color: var(--theme-color);
}


/* steps slider */


/* Swiper */

.hiw-swiper {
    overflow: hidden !important;
}


/* ── STEP CARD ── */

.step-card {
    background: transparent;
    margin-top: 2rem;
}


/* Visual zone — fixed height, clipping off */

.step-visual {
    position: relative;
    height: 280px;
    overflow: visible;
}


/* Giant number — fills the zone */

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Schabo', sans-serif;
    font-size: clamp(18rem, 19vw, 36rem);
    line-height: 0.88;
    color: #fff;
    letter-spacing: -4px;
    user-select: none;
    z-index: 1;
}


/* ─── OBJECT IMAGES ─── */

.step-img {
    position: absolute;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}


/* 01 — Camera: RIGHT of "1", vertically centred in the zone */

.step-img--camera {
    height: 190px;
    width: auto;
    right: 47px;
    top: 50%;
    transform: translateY(-45%);
    filter: drop-shadow(4px 8px 20px rgba(0, 0, 0, 0.22));
}


/* 02 — Ball: BELOW "02", horizontally centred */

.step-img--ball {
    height: 130px;
    width: auto;
    bottom: -20px;
    left: 35%;
    transform: translateX(-50%);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}


/* 03 — Phone: LEFT of "3", leaning/diagonal */

.step-img--phone {
    height: 176px;
    width: auto;
    right: 79%;
    bottom: 17%;
    filter: drop-shadow(4px 8px 20px rgba(0, 0, 0, 0.2));
}


/* ── Body text ── */

.step-body {
    /* padding-top: 28px; */
    margin-top: 20px;
    /* border-top: 1px solid #e5e5e5; */
}

.step-eyebrow {
    /* font-family: 'Barlow Condensed', sans-serif; */
    /* font-size: 0.7rem; */
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.step-desc {
    /* font-size: 0.82rem; */
    color: #fff;
    line-height: 1.8;
    max-width: 260px;
}


/* ── Arrow buttons ── */

.slider-btn {
    width: 60px;
    height: 60px;
    border: 1.5px solid #bbb;
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s, color .2s;
    flex-shrink: 0;
    line-height: 1;
}

.slider-btn:hover {
    border-color: var(--theme-color);
    background: var(--theme-color);
    color: #fff;
}

.slider-btn.is-disabled {
    opacity: 0.3;
    pointer-events: none;
}


/* ── Footer row ── */

.hiw-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 14px;
}

.hiw-footer-arrows {
    display: none;
    gap: 10px;
}

@media (max-width: 767px) {
    .hiw-footer-arrows {
        display: flex;
    }
}


/* quote section */

.quote-section {
    position: relative;
    overflow: hidden;
}


/* Image layer */

.quote-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.25);
    z-index: 0;
}


/* Gradient overlay */

.quote-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgb(10 14 24 / 80%) 40%, rgb(10 14 24 / 30%) 100%);
    z-index: 1;
}


/* Content on top */

.quote-content {
    position: relative;
    z-index: 2;
}

.quote-section {
    position: relative;
    padding: 290px 0 140px 0;
    overflow: hidden;
}

.quote-text {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 32px;
}

.quote-mark {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 5rem;
    color: var(--theme-color);
    line-height: 1;
    margin-bottom: 24px;
}


/* stats section */


/* ── STATS ── */

.stats-section {
    background: var(--theme-color);
    /* padding: 100px 0; */
    position: relative;
    overflow: hidden;
}

.stats-player {
    position: absolute;
    bottom: 0;
    left: 60px;
    height: 90%;
    object-fit: contain;
}

.stats-content {
    position: relative;
    z-index: 2;
    padding-left: 40px;
}

.stats-eyebrow {
    /* font-family: 'Barlow Condensed', sans-serif; */
    /* font-size: 0.72rem; */
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    /* margin-bottom: 12px; */
}

.stats-number {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: clamp(7rem, 20vw, 500px);
    line-height: 1;
    color: var(--white);
    letter-spacing: -2px;
    margin-bottom: 0;
}

.stats-label {
    /* font-family: 'Barlow Condensed', sans-serif; */
    /* font-size: 0.8rem; */
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 13px;
}

.stats-controls {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}

.stat-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.stat-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}


/* ── CTA ── */

.cta-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    text-align: center;
    min-height: 100vh;
}

.cta-bg {
    position: absolute;
    inset: 0;
    /* filter: brightness(0.15); */
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: clamp(3rem, 7vw, 6.5rem);
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1;
}

.cta-sub {
    /* font-size: 0.95rem; */
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}


/* ── FOOTER ── */

footer {
    background: #0A0E18;
    padding: 80px 0 40px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.06); */
}

.footer-brand {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-brand span {
    color: var(--theme-color);
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 220px;
}

.footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 60px;
    padding-top: 28px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* innr pages */

.sportsbanner {
    background: linear-gradient(rgb(243 24 39), rgb(243 24 39 / 67%)), url(../assets/img/bg1.webp) center / cover no-repeat;
    padding-top: 9rem;
}

.sportssinglebanner {
    background: linear-gradient(rgb(255 189 115), rgb(255 189 115 / 67%)), url(../assets/img/bg1.webp) center / cover no-repeat;
    padding-top: 9rem;
}

.sportsbanner .hero-title {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: clamp(5rem, 16vw, 16rem);
    line-height: 0.92;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}

@media(min-width:992px) {
    .sportsbanner .fullimagebox {
        position: relative;
        left: 3rem;
    }
    .-ms-4 {
        position: relative;
        left: -17px;
    }
}

@media(min-width:1600px) {
    .sportssinglebanner {
        padding-top: 4rem;
        height: 82vh;
    }
    .sportssinglebanner .mobileposition {
        margin-top: -12rem;
    }
}

@media(min-width:1366px) and (max-width:1600px) {
    .sportssinglebanner {
        padding-top: 4rem;
        height: 100vh;
    }
    .sportssinglebanner .mobileposition {
        margin-top: -9rem;
    }
}

.logoSwiper {
    overflow: hidden;
}

.logoSwiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logoSwiper img {
    max-height: 60px;
    opacity: 0.7;
    transition: 0.3s;
}

.logoSwiper img:hover {
    opacity: 1;
}

.logoSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.product-title {
    font-size: clamp(5rem, 14vw, 11rem);
    /* line-height: .88; */
    letter-spacing: .03em;
    background: linear-gradient(175deg, #ffffff 10%, #555 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
}


/* ── PRODUCTS SECTION ── */

.products-section {
    padding: 4rem 0 3rem;
    background: var(--bg-deep);
}

.products-header {
    text-align: center;
    padding-bottom: 0rem;
}


/* ── SWIPER ── */

.swiper-products {
    padding: 1rem 0 3.5rem !important;
    overflow: visible !important;
}

.swiper-wrapper {
    align-items: stretch;
}


/* Bottom fade that hides the card bottom edge, like the screenshot */

.swiper-fade-bottom {
    position: absolute;
    bottom: 3.5rem;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to top, var(--bg-deep) 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}


/* ── CARD ── */

.product-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0a0e18;
    height: 420px;
    cursor: pointer;
    transition: transform .4s ease, box-shadow .4s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .7);
}


/* Full-bleed background image */

.card-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
    transition: opacity .5s ease, transform .5s ease;
    border-radius: 14px;
}

.product-card:hover .card-bg-img {
    opacity: .85;
    transform: scale(1.05);
}


/* ── INNER BORDER FRAME (inset, sits above image) ── */

.card-inner-border {
    position: absolute;
    inset: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    pointer-events: none;
    z-index: 3;
    transition: border-color .4s ease;
}

.product-card:hover .card-inner-border {
    /* border-color: rgba(232, 25, 44, .6); */
}


/* Corner accent marks */

.card-inner-border::before,
.card-inner-border::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
}

.card-inner-border::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    border-radius: 8px 0 0 0;
    opacity: 0;
    transition: opacity .4s ease;
}

.card-inner-border::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-radius: 0 0 8px 0;
    opacity: 0;
    transition: opacity .4s ease;
}

.product-card:hover .card-inner-border::before,
.product-card:hover .card-inner-border::after {
    opacity: 1;
}


/* ── BOTTOM TEXT OVERLAY ── */

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(10 14 24) 0%, rgba(5, 6, 10, .82) 30%, rgb(10 14 24 / 30%) 60%, rgb(10 14 24 / 0%) 100%);
    z-index: 1;
    transition: background .4s;
}

.product-card:hover .card-overlay {
    background: linear-gradient(to top, rgb(10 14 24) 0%, rgb(10 14 24 / 88%) 38%, rgba(5, 6, 10, .35) 65%, rgb(10 14 24 / 0%) 100%);
}


/* content */

.card-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.6rem 1.6rem 1.8rem;
    align-items: center;
}

.card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: .7rem;
    color: var(--theme-color);
}

.product-card .card-title {
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: .9rem;
}


/* EXPLORE button – hidden until hover */

.btn-explore {
    display: inline-block;
    padding: .45rem 1.5rem;
    /* background: var(--accent); */
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 0px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease;
    width: fit-content;
}

.product-card:hover .btn-explore {
    opacity: 1;
    transform: translateY(0);
}

.btn-explore:hover {
    background: #c8112a;
    color: #fff;
}


/* ── SWIPER PAGINATION ── */

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, .3) !important;
    opacity: 1 !important;
    width: 28px !important;
    height: 3px !important;
    border-radius: 2px !important;
    transition: background .3s, width .3s;
}

.swiper-pagination-bullet-active {
    background: var(--theme-color) !important;
    width: 48px !important;
}


/* The "OR" Divider Logic */

.divider-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    z-index: 10;
}

.line {
    width: 1px;
    height: 40%;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

.or-text {
    display: block;
    margin: 10px 0;
    font-family: 'Roboto Mono', monospace;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.fs-52 {
    font-size: 52px;
}

.complimentary-section .nav-tabs .nav-item.show .nav-link,
.complimentary-section .nav-tabs .nav-link.active {
    color: #fff;
    background-color: var(--theme-color);
    /* border-color: var(--theme-color); */
}

.complimentary-section .nav-tabs .nav-link {
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    border: 1px solid #ffffff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    color: #0a0e18;
    background-color: #fff;
}

.complimentary-section .card-title {
    letter-spacing: 2px;
    color: #14192B;
}

.complimentary-section a:hover .card-title {
    color: var(--theme-color);
}

.hero-phone-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.55) 28%, rgba(255, 255, 255, 0) 60%);
}

.complementary-banner {
    padding-top: 11rem;
}

.hero-phone-wrap {
    position: absolute;
    top: -22rem;
}

.productbanner .hero-phone-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top, rgb(64 74 96) 0%, rgb(64 74 96) 28%, rgba(255, 255, 255, 0) 60%);
}

.complementary-banner .hero-content {
    padding: 120px;
}

.newheader .nav-item a {
    color: var(--second-color);
}

.newheader .nav-item a:hover {
    color: var(--theme-color);
}

.newheader.scrolled .nav-item a {
    color: #fff;
}

.newheader.scrolled .nav-item .dropdown-item {
    color: var(--dark);
}

.sub-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
}

.sub-nav-links {
    display: flex;
    flex-wrap: nowrap;
    /* keep horizontal */
    overflow-x: auto;
    /* allow scrolling on mobile */
    margin: 0;
    padding: 0;
    list-style: none;
}

.sub-nav-links a:hover,
.sub-nav-links a.active {
    background: transparent;
    color: var(--theme-color);
    font-weight: 700;
}

.sub-nav-links a {
    display: flex;
    align-items: center;
    /* font-family: 'Barlow Condensed', sans-serif; */
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--second-color);
    text-decoration: none;
    padding: 0 24px;
    height: 48px;
    transition: background 0.2s, color 0.2s;
}

.totalprice {
    color: #404B61;
    font-size: 70px;
}

.included-card {
    background: var(--white);
    padding: 38px 42px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.1);
}

.included-title {
    /* font-weight: 900; */
    font-size: 32px;
    text-transform: uppercase;
    color: var(--second-color);
    margin-bottom: 12px;
}

.included-intro {
    font-weight: 600;
    /* font-size: 0.88rem; */
    color: #444;
    line-height: 1.6;
    margin-bottom: 24px;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--second-color);
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: "Space Mono", monospace;
    font-weight: 500;
}

.included-list li:last-child {
    border-bottom: none;
}

.opacity-70 {
    opacity: 0.7;
}

.check-icon {
    color: var(--theme-color);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-left: 16px;
}

.sample-block {
    background: #404B61;
    padding: 26px 30px;
}

.feature-section--navy {
    background: #404B61;
    position: relative;
    overflow: hidden;
}

.feature-section--navy:nth-child(even) {
    background: #EE2031;
    position: relative;
    overflow: hidden;
}

.feature-section--navy .feat-phone-wrap::after {
    background: linear-gradient(to top, #404B61 0%, rgba(58, 65, 85, 0) 55%);
}

.feature-section--navy:nth-child(even) .feat-phone-wrap::after {
    background: linear-gradient(to top, #EE2031 0%, rgba(58, 65, 85, 0) 55%);
}

.feat-phone-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.feat-phone-wrap {
    width: 602px;
    position: relative;
    top: 6rem;
    left: -9rem;
}

.feat-content {
    padding: 5rem 0;
}

.feat-arrows {
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

.feat-arrow {
    width: 26px;
    height: 37px;
    opacity: 0.55;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-arrow svg {
    width: 20px;
    height: 23px;
}

.feat-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.reportimage {
    position: absolute;
    right: 0;
    /* left: 0; */
    top: 0;
    /* bottom: 0; */
    /* width: 75%; */
    width: 32%;
    opacity: 0.3;
}

.productbanner {
    background-color: #404B61;
}

.nav-pills .nav-item a {
    color: var(--second-color);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-pills .nav-link:focus,
.nav-link:hover {
    color: var(--theme-color);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--theme-color);
    background-color: transparent;
}

.text-theme1 {
    color: var(--second-color);
}

.leftinnerimage.-ml-24 {
    margin-left: -24rem;
    /* top: 4rem; */
    position: relative;
    min-height: 600px;
    max-height: 600px;
}

.leftinnerimage.-mr-24 {
    margin-right: -24rem;
    /* top: 4rem; */
    position: relative;
    min-height: 600px;
    max-height: 600px;
}

.paddingtop {
    /* padding-top: 4rem; */
}

.pt-100 {
    padding-top: 100px;
}

.nav-item .dropdown-item {
    color: var(--second-color);
}

.blue-shape {
    position: absolute;
    top: 30px;
    bottom: 30px;
    right: -30px;
    /* Pulls it slightly off-screen or to the edge */
    width: 50%;
    background-color: #e9eff7;
    /* Light blue/grey color */
    border-radius: 20px 0 0 20px;
    /* Rounded corners on the left side */
    z-index: 1;
}


/* Ensure text is above the shape */

.card-text {
    position: relative;
    z-index: 1;
}


/* Icon Rotation for Mobile Accordion */

.transition-icon {
    transition: transform 0.3s ease;
}

[aria-expanded="true"] .transition-icon {
    transform: rotate(180deg);
}


/* Default state (Collapsed) shows Plus */

.toggle-icon::before {
    content: "+";
    display: inline-block;
    transition: transform 0.3s ease;
}


/* When the parent is Expanded, change to Minus */

[aria-expanded="true"] .toggle-icon::before {
    content: "−";
    /* Using a proper minus sign character */
}


/* Optional: Add a slight fade or rotation effect */

.toggle-icon {
    line-height: 1;
    color: #333;
}

.form-control-lg {
    min-height: calc(1.4em + 2rem + calc(1px * 2));
    padding: 1rem 1.125rem;
    font-size: 1rem;
    border: 1px solid var(--theme-color);
    border-radius: 20px;
    background-color: #fff;
}

.form-control:focus {
    color: rgb(255 255 255 / 70%);
    background-color: #fff;
    border-color: rgb(255 255 255 / 70%);
    outline: 0;
    box-shadow: unset;
}

.advertiseform .form-control-lg {
    min-height: calc(1.4em + 2rem + calc(1px * 2));
    padding: 1rem 1.125rem;
    font-size: 1rem;
    border: 1px solid rgb(255 255 255 / 25%);
    border-radius: 20px;
    background-color: transparent;
}

.advertiseform .form-control:focus {
    color: rgb(255 255 255 / 70%);
    background-color: rgba(0, 0, 0, 0);
    border-color: rgb(255 255 255 / 70%);
    outline: 0;
    box-shadow: unset;
}

select.form-control.form-select.form-control-lg {
    background: var(--second-color);
}

.w-fit li a {
    width: max-content;
}


/* Ensure Plus/Minus is hidden on desktop */

@media (min-width: 768px) {
    .toggle-icon {
        display: none;
    }
}


/* Force Desktop Visibility */

@media (min-width: 768px) {
    .collapse.d-md-block {
        display: block !important;
        height: auto !important;
    }
}

@media(max-width:767px) {
    .blue-shape {
        position: relative;
        top: 32px;
        bottom: 0px;
        right: 0px;
        width: 100%;
        background-color: #e9eff7;
        border-radius: 20px 20px 0 0px;
        z-index: 1;
        height: 9rem;
    }
    .w-50 {
        width: 100% !important;
    }
    .feat-block {
        padding: 0;
        padding-bottom: 0;
        position: relative;
        top: -6rem;
        z-index: 9;
    }
    .feat-content {
        padding: 0;
    }
    .reportimage {
        position: absolute;
        right: 0;
        /* left: 0; */
        top: unset;
        bottom: 0;
        /* width: 75%; */
        width: 32%;
        opacity: 0.3;
    }
    .feat-phone-wrap {
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
    }
    .navbar {
        z-index: 1000;
        padding: 18px 9px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        transition: background 0.4s;
    }
    .mobileposition {
        position: absolute;
        bottom: 0;
        padding-bottom: 2rem;
        background: linear-gradient(6.4deg, #EA1F30 16.96%, rgba(234, 31, 48, 0) 86.81%);
    }
    .sportssinglebanner .mobileposition {
        background: linear-gradient(6.4deg, #f0b576 16.96%, rgba(234, 31, 48, 0) 86.81%);
    }
    .sportsbanner {
        padding-top: 6rem;
        overflow: hidden;
    }
    .col-md-4.imagemobile {
        margin-left: 4rem;
    }
    .sportsbanner .hero-title {
        font-size: clamp(7rem, 10vw, 9rem);
        margin-bottom: 0;
    }
    .hero {
        position: relative;
        height: 63vh;
        min-height: 597px;
        padding-bottom: 37px;
    }
    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .hero-title {
        font-size: clamp(3.8rem, 10vw, 9rem);
        line-height: 0.92;
        letter-spacing: 2px;
        color: var(--white);
        margin-bottom: 11px;
    }
    .complementary-banner {
        padding-bottom: 3rem;
    }
    .sub-nav-links {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .sub-nav-links a {
        width: max-content;
    }
    .hero-btns {
        display: flex;
        gap: 16px;
        align-items: center;
        width: 100%;
        flex-direction: column;
    }
    .hero-btns a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-eyebrow {
        letter-spacing: 2px;
    }
    .section-title {
        /* font-family: 'Bebas Neue', sans-serif; */
        font-size: 48px;
    }
    .step-desc {
        max-width: 100%;
    }
    .step-img--phone {
        height: 176px;
        width: auto;
        left: 47%;
    }
    .complementary-banner .hero-content {
        padding: 0 15px;
        margin-top: -163px;
    }
    .hero-phone-wrap {
        position: relative;
        top: 0;
    }
    .leftinnerimage.-ml-24,
    .leftinnerimage.-mr-24 {
        margin-left: 0;
        /* top: 4rem; */
        position: relative;
        min-height: 100%;
        max-height: 100%;
        width: 50%;
        margin: auto;
    }
    .pt-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .stats-player {
        position: absolute;
        bottom: 1px;
        left: 54px;
        height: 70%;
        object-fit: contain;
        z-index: 111;
    }
    .stats-label {
        width: 54%;
    }
    .stats-number {
        /* font-family: 'Bebas Neue', sans-serif; */
        font-size: clamp(13rem, 20vw, 500px);
    }
    .cta-section {
        position: relative;
        padding: 100px 0;
    }
    .footer-bottom {
        display: block;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}


/* Mobile view: switch to horizontal */

@media (max-width: 768px) {
    .divider-container {
        flex-direction: row;
        height: auto;
        width: 80%;
        display: flex;
    }
    .line {
        width: 40%;
        height: 2px;
        margin: 0 10px;
    }
    .or-text {
        top: -21px;
        position: relative;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        position: relative;
        height: 66vh;
        min-height: 680px;
    }
    .hero-phone-wrap {
        position: absolute;
        top: -7rem;
    }
    .complementary-banner .hero-content {
        padding: 20px;
        padding-bottom: 5rem;
    }
    .complementary-banner {
        padding-top: 5rem;
    }
    .feat-phone-wrap {
        width: 400px;
        position: relative;
        top: 6rem;
        left: 0;
    }
    .w-50 {
        width: 100% !important;
    }
    .leftinnerimage.-ml-24 {
        margin-left: 0;
        /* top: 4rem; */
        position: relative;
        min-height: 100%;
        max-height: 100%;
    }
    .leftinnerimage.-mr-24 {
        margin-right: 0;
        /* top: 4rem; */
        position: relative;
        min-height: 100%;
        max-height: 100%;
    }
}