/* =============================================
   BISONBLAZE - CUSTOM TEAMWEAR
   =============================================

   *** THEME COLOR — CHANGE THIS ONE LINE ***

   --primary-color: #FF5833;

   Change the hex value above to update the
   entire site theme instantly.

   ============================================= */

:root {
    /* ====== MAIN THEME COLOR ====== */
    --primary-color: #FF5833;

    /* Auto shades */
    --primary-light: color-mix(in srgb, var(--primary-color) 70%, #ffffff);
    --primary-lighter: color-mix(in srgb, var(--primary-color) 30%, #ffffff);
    --primary-lightest: color-mix(in srgb, var(--primary-color) 12%, #ffffff);
    --primary-dark: color-mix(in srgb, var(--primary-color) 80%, #000000);
    --primary-darker: color-mix(in srgb, var(--primary-color) 60%, #000000);
    --primary-glow: color-mix(in srgb, var(--primary-color) 20%, transparent);

    /* Neutrals */
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f7f7f7;
    --gray-100: #f0f0f0;
    --gray-200: #e6e6e6;
    --gray-300: #cccccc;
    --gray-400: #999999;
    --gray-500: #666666;
    --gray-600: #444444;
    --gray-700: #333333;
    --gray-800: #1a1a1a;
    --gray-900: #111111;

    /* Typography — matches SWAZ fonts */
    --font-body: 'Manrope', sans-serif;
    --font-heading: 'Inter', 'Manrope', sans-serif;

    /* Layout */
    --container-max: 1250px;
    --gutter: 36px;
    --section-padding: 100px;
    --header-height: 70px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s var(--ease);
    --transition-bg: 1s var(--ease);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
}


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

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

ul, ol { list-style: none; }

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button { cursor: pointer; }


/* =============================================
   LAYOUT GRID (matching SWAZ table-based system)
   ============================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--gutter) / -2);
}

.col {
    padding: 0 calc(var(--gutter) / 2);
}

.col-lg-12 { width: 100%; }
.col-md-50 { width: 50%; }

.row-cols-2 > .col { width: 50%; }
.row-cols-3 > .col { width: 33.333%; }

.row-container {
    padding: var(--gutter) var(--gutter);
}

.text-center { text-align: center; }
.text-accent { color: var(--primary-color); }

.text-link {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.text-link:hover {
    color: var(--primary-dark);
}


/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.top-bar-inner {
    width: 100%;
    overflow: hidden;
}

.top-bar-marquee {
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.top-bar-marquee span {
    display: inline-block;
    padding: 0 60px;
}

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


/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: 100%;
    padding: 0 var(--gutter);
}

/* Logo */
.header-logo a {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--black);
    text-transform: uppercase;
}

.logo-accent {
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    height: var(--header-height);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-link i {
    font-size: 10px;
}

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

.nav-link-accent {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    min-width: 700px;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-inner {
    display: flex;
    padding: 30px;
    gap: 30px;
}

.mega-col {
    min-width: 160px;
}

.mega-heading {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.mega-col ul li a {
    display: block;
    padding: 5px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

.mega-col ul li a:hover {
    color: var(--primary-color);
}

/* Simple dropdown */
.dropdown-menu-simple {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    min-width: 200px;
}

.nav-item-dropdown:hover .dropdown-menu-simple {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu-simple ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}

.dropdown-menu-simple ul li a:hover {
    background: var(--gray-50);
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--black);
    font-size: 16px;
    transition: color var(--transition-fast);
    position: relative;
}

.header-action-btn:hover {
    color: var(--primary-color);
}


/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--black);
    transition: all var(--transition);
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* =============================================
   SEARCH OVERLAY
   ============================================= */
.search-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.search-overlay-inner {
    width: 100%;
    max-width: 700px;
    padding: 0 var(--gutter);
    position: relative;
}

.search-form {
    display: flex;
    border-bottom: 2px solid var(--white);
}

.search-input {
    flex: 1;
    padding: 20px 0;
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
    background: transparent;
}

.search-input::placeholder { color: var(--gray-500); }

.search-submit {
    color: var(--white);
    font-size: 22px;
    padding: 0 10px;
}

.search-close {
    position: absolute;
    top: -70px;
    right: 36px;
    color: var(--white);
    font-size: 28px;
    transition: color var(--transition-fast);
}
.search-close:hover { color: var(--primary-color); }


/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: var(--black);
    z-index: 1500;
    transition: right var(--transition-slow);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-800);
}

.mobile-menu-header .logo-text {
    color: var(--white);
}

.mobile-close {
    color: var(--white);
    font-size: 24px;
}

.mobile-menu-body {
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid var(--gray-800);
}

.mobile-nav > li > a,
.mobile-nav > li > .accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    transition: color var(--transition-fast);
    cursor: pointer;
}

.mobile-nav > li > a:hover,
.mobile-nav > li > .accordion-toggle:hover {
    color: var(--primary-color);
}

.accordion-toggle i {
    font-size: 10px;
    transition: transform var(--transition);
}

.mobile-accordion.open .accordion-toggle i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    background: var(--gray-900);
}

.mobile-accordion.open .accordion-content {
    display: block;
}

.accordion-content li a {
    display: block;
    padding: 10px 24px 10px 40px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.accordion-content li a:hover {
    color: var(--primary-color);
}


/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 !important;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform var(--transition-bg);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.55) 100%
    );
}

.hero-divider-top,
.hero-divider-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

.hero-divider-top {
    top: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.hero-divider-bottom {
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, transparent 100%);
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 12s ease-in-out infinite;
}
.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 14s; }
.hero-particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 11s; width: 3px; height: 3px; }
.hero-particle:nth-child(3) { left: 50%; animation-delay: 4s; animation-duration: 16s; width: 5px; height: 5px; }
.hero-particle:nth-child(4) { left: 70%; animation-delay: 1s; animation-duration: 13s; }
.hero-particle:nth-child(5) { left: 85%; animation-delay: 3s; animation-duration: 10s; width: 3px; height: 3px; }
.hero-particle:nth-child(6) { left: 40%; animation-delay: 5s; animation-duration: 15s; width: 6px; height: 6px; }

@keyframes particleFloat {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.6; }
    50%  { opacity: 0.3; }
    90%  { opacity: 0.5; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 0 80px;
}

/* Label with animated lines */
.hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-label-line {
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    animation: heroLineGrow 0.8s var(--ease) 0.8s forwards;
}
@keyframes heroLineGrow {
    to { width: 40px; }
}

/* Title with staggered word animation */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(50px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotateX(15deg);
    animation: heroWordReveal 0.7s var(--ease) forwards;
    animation-delay: calc(0.4s + var(--i, 0) * 0.12s);
}
@keyframes heroWordReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-word.accent {
    color: var(--primary-color);
    text-shadow: 0 0 40px rgba(255,88,51,0.3);
}

/* Tagline */
.hero-tagline {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease) 1s forwards;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease) 1.2s forwards;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.hero-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
.hero-btn:hover i {
    transform: translateX(4px);
}
.hero-btn-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}
.hero-btn-ghost:hover i {
    transform: translateY(3px);
}

/* Scroll indicator */
.hero-scroll-indicator {
    margin-top: 48px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease) 1.6s forwards;
}
.hero-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}
.hero-mouse-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
    animation: heroScroll 1.8s ease-in-out infinite;
}
@keyframes heroScroll {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}


/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section {
    padding: 80px var(--gutter) !important;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 37px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-heading.large {
    font-size: clamp(30px, 4vw, 44px);
}

.section-heading.white {
    color: var(--white);
}

.intro-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.intro-text:last-child {
    margin-bottom: 0;
}


/* =============================================
   SPORTS GRID SECTION
   ============================================= */
.sports-grid-section {
    padding: 60px var(--gutter) !important;
}

.accent-bg {
    background: var(--primary-color);
}

.sports-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    width: 100%;
}

.sport-card {
    border-radius: 8px;
    overflow: hidden;
}

.sport-card-inner {
    display: block;
    position: relative;
    padding-bottom: 125%;
    overflow: hidden;
    border-radius: 8px;
}

.sport-card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}

.sport-card-inner:hover .sport-card-bg {
    transform: scale(1.08);
}

.sport-card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.sport-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 16px;
    z-index: 1;
}

.sport-card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}


/* =============================================
   PARTNERSHIP SECTION
   ============================================= */
.partnership-section {
    padding: 80px var(--gutter) !important;
    background: var(--white);
}

.partnership-image-col,
.partnership-text-col {
    display: flex;
    align-items: center;
}

.partnership-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.partnership-content {
    padding: 40px 0 40px 40px;
}

.partnership-content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 18px;
}


/* =============================================
   WHY SECTION
   ============================================= */
.why-section {
    padding: 60px var(--gutter) 30px !important;
}


/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    padding: 0 var(--gutter) 80px !important;
    background: var(--white);
}

.feature-col {
    padding: 0 12px;
}

.feature-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.feature-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-body {
    padding: 28px 24px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 14px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.btn-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

.btn-link:hover {
    color: var(--primary-dark);
}


/* =============================================
   WINNERS SECTION
   ============================================= */
.winners-section {
    padding: 80px var(--gutter) !important;
    background: var(--white);
}

.winners-text-col,
.winners-image-col {
    display: flex;
    align-items: center;
}

.winners-content {
    padding-right: 40px;
}

.winners-content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 18px;
}

.winners-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.winners-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}


/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-section {
    padding: 80px var(--gutter) !important;
}

.dark-bg {
    background: var(--gray-900);
}

.reviews-header {
    margin-bottom: 40px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rating-stars {
    color: #fbbc04;
    font-size: 20px;
    display: flex;
    gap: 3px;
}

.rating-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

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

.review-card {
    background: var(--gray-800);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #fbbc04;
    font-size: 13px;
    margin-bottom: 14px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 20px;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-700);
    padding-top: 16px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.review-source {
    font-size: 12px;
    color: var(--gray-400);
}

.review-source i {
    margin-right: 4px;
}


/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter-section {
    padding: 60px var(--gutter) !important;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.newsletter-content,
.newsletter-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.newsletter-content .section-heading {
    margin-bottom: 12px;
}

.newsletter-text {
    font-size: 17px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.newsletter-contact {
    align-items: flex-end;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-600);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: var(--gray-600);
}

.contact-item a:hover {
    color: var(--primary-color);
}


/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 0;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-accent {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-accent:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
}

.btn-full {
    width: 100%;
}


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--black);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

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

.footer-links a {
    font-size: 15px;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}


/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-color);
}




/* =============================================
   FADE-IN ANIMATION
   ============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s var(--ease);
}

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


/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 959px) {
    :root {
        --section-padding: 70px;
        --header-height: 60px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .account-btn {
        display: none;
    }

    .hero-title {
        font-size: clamp(42px, 8vw, 80px);
    }

    .section-heading {
        font-size: 28px;
    }

    .section-heading.large {
        font-size: 28px;
    }

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

    .row-cols-2 > .col {
        width: 100%;
    }

    .partnership-content {
        padding: 30px 0 0 0;
    }

    .winners-content {
        padding: 0 0 30px 0;
    }

    .row-cols-3 > .col {
        width: 50%;
        margin-bottom: 24px;
    }

    .row-cols-3 > .col:last-child {
        width: 100%;
    }

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

    .newsletter-contact {
        align-items: flex-start;
        margin-top: 20px;
    }

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

/* Mobile */
@media (max-width: 569px) {
    :root {
        --gutter: 20px;
        --section-padding: 50px;
    }

    .top-bar {
        font-size: 10px;
        height: 30px;
    }

    .header-inner {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 60px);
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-btn {
        padding: 13px 26px;
        font-size: 0.82rem;
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .hero-scroll-indicator {
        margin-top: 32px;
    }

    .intro-section {
        padding: 50px var(--gutter) !important;
    }

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

    .row-cols-3 > .col {
        width: 100%;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .mega-menu {
        min-width: auto;
    }
}

/* Small screens */
@media (max-width: 340px) {
    .sports-carousel {
        grid-template-columns: 1fr;
    }
}
