/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    --primary-color: #E31E24;  /* Bright Southern Pullers red */
    --secondary-color: #1a1a1a; /* True black */
    --accent-color: #FFD700;   /* Gold */
    --dark-bg: #0d0d0d;        /* Darker background */
    --light-bg: #f8f8f8;
    --text-dark: #2d2d2d;
    --text-light: #fff;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 116px; /* ticker (36px) + navbar (80px) */
}

/* Hero page doesn't need body padding - it extends behind navbar */
body:has(.hero) {
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Hide all emoji icons and replace with professional styling */
.feature-icon {
    display: none;
}

.contact-icon {
    display: none;
}

.gallery-placeholder span {
    display: none;
    font-size: 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 2rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* ===================================
   Event Ticker (Above Navbar)
   =================================== */
.event-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    height: 36px;
    display: flex;
    align-items: center;
    z-index: 1001;
    border-bottom: 2px solid var(--primary-color);
    overflow: hidden;
}

.ticker-track {
    display: inline-flex;
    height: 100%;
    white-space: nowrap;
    will-change: transform;
    visibility: hidden;
}

.ticker-track.ready {
    visibility: visible;
}

.ticker-label {
    background: var(--primary-color);
    color: white;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    border-style: solid;
    border-width: 18px 0 18px 10px;
    border-color: transparent transparent transparent var(--primary-color);
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    margin-left: 10px;
}

.ticker-track {
    display: inline-flex;
    height: 100%;
    white-space: nowrap;
    will-change: transform;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 1.5rem;
    height: 100%;
    border-right: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    color: white;
    text-decoration: none;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.ticker-item:hover {
    background: rgba(255,255,255,0.1);
}

.ticker-date {
    background: rgba(255,255,255,0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    margin-right: 0.6rem;
    color: #fff;
}

.ticker-event-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    margin-right: 0.4rem;
}

.ticker-location {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
}

.ticker-badge {
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
    margin-left: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ticker-badge.points { background: var(--primary-color); }
.ticker-badge.finale { background: linear-gradient(135deg, #fbbf24, var(--primary-color)); }
.ticker-badge.amateur { background: #333; border: 1px solid #555; }
.ticker-badge.special { background: linear-gradient(135deg, #ff6b00, #8b0000); }

/* ===================================
   Results Ticker (Below Event Ticker)
   =================================== */
.results-ticker {
    position: fixed;
    top: 34px; /* Below event ticker, overlapping the border */
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    height: 32px;
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-color);
    overflow: hidden;
}

.results-ticker-label {
    background: var(--accent-color);
    color: #0d0d0d;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.results-ticker-label::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    border-style: solid;
    border-width: 16px 0 16px 8px;
    border-color: transparent transparent transparent var(--accent-color);
}

.results-ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    margin-left: 8px;
}

.results-ticker-track {
    display: inline-flex;
    height: 100%;
    white-space: nowrap;
    will-change: transform;
    visibility: hidden;
}

.results-ticker-track.ready {
    visibility: visible;
}

.results-ticker-content {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.results-ticker-group {
    display: inline-flex;
    align-items: center;
    padding: 0 1.2rem;
    height: 100%;
    border-right: 1px solid rgba(255,255,255,0.15);
    white-space: nowrap;
    color: white;
    flex-shrink: 0;
    gap: 0.5rem;
    transition: background 0.2s ease;
}

.results-ticker-group:hover {
    background: rgba(255,255,255,0.08);
}

.results-ticker-class {
    background: rgba(255,255,255,0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    color: #fff;
}

.results-ticker-date {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-right: 0.4rem;
}

.results-ticker-result {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0 0.4rem;
}

.results-place {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    padding: 0.1rem 0.35rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-place.first {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.results-place.second {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
    color: #000;
}

.results-place.third {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: #fff;
}

.results-truck {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #fff;
}

/* Adjust navbar position when results ticker is present */
body:has(.results-ticker) .navbar {
    top: 66px; /* 34px (event ticker with overlap) + 32px results ticker */
}

/* Adjust body padding when results ticker is present */
body:has(.results-ticker) {
    padding-top: 146px; /* 34px + 32px + 80px navbar */
}

/* Hero pages don't need extra padding */
body:has(.hero):has(.results-ticker) {
    padding-top: 0;
}

/* Mobile adjustments for results ticker */
@media (max-width: 768px) {
    .results-ticker {
        height: 28px;
        top: 30px; /* Event ticker is 32px on mobile, minus 2px border overlap */
    }
    
    .results-ticker-label {
        font-size: 0.65rem;
        padding: 0 0.6rem;
        gap: 0.3rem;
    }
    
    .results-ticker-label span {
        display: none;
    }
    
    .results-ticker-label::after {
        border-width: 14px 0 14px 7px;
    }
    
    .results-ticker-class {
        font-size: 0.6rem;
        padding: 0.1rem 0.4rem;
    }
    
    .results-ticker-date {
        font-size: 0.55rem;
    }
    
    .results-truck {
        font-size: 0.65rem;
    }
    
    .results-place {
        font-size: 0.5rem;
        padding: 0.05rem 0.25rem;
    }
    
    .results-ticker-group {
        padding: 0 0.8rem;
        gap: 0.3rem;
    }
    
    .results-ticker-result {
        padding: 0 0.25rem;
        gap: 0.15rem;
    }
    
    body:has(.results-ticker) .navbar {
        top: 58px; /* 30px + 28px */
    }
    
    body:has(.results-ticker) {
        padding-top: 128px; /* 30px + 28px + 70px mobile navbar */
    }
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    height: 80px;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-top: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    height: 65px;
    background: rgba(13, 13, 13, 0.98);
    border-top: 2px solid var(--primary-color);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.logo img {
    height: 65px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding-left: 100px;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e74c3c" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
    margin-top: -142px;
    padding-top: 142px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* ===================================
   Page Header (Subpages)
   =================================== */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 160px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 5rem 0;
    background: var(--light-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
}

/* ===================================
   Events Categories
   =================================== */
.events-categories {
    padding: 5rem 0;
    background: white;
}

/* ===================================
   LiveStats Section - Themed to match livestats.app
   =================================== */
.livestats-section {
    padding: 5rem 0;
    background: #0a0a0f;
    color: white;
    position: relative;
    overflow: hidden;
}

.livestats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.livestats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.livestats-badge {
    display: inline-block;
    background: rgba(227, 30, 36, 0.15);
    border: 1px solid rgba(227, 30, 36, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.livestats-text h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: #fff;
}

.livestats-text h2 span {
    color: var(--primary-color);
}

.livestats-tagline {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.livestats-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.livestats-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.livestats-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(227, 30, 36, 0.2);
    border: 1px solid rgba(227, 30, 36, 0.4);
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.75rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

.livestats-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.livestats-buttons .btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    border: none;
}

.livestats-buttons .btn-primary:hover {
    background: #c0392b;
    box-shadow: 0 5px 25px rgba(227, 30, 36, 0.4);
    transform: translateY(-2px);
}

.livestats-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.livestats-buttons .btn-secondary:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: var(--primary-color);
}

.livestats-note {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(227, 30, 36, 0.08);
    border: 1px solid rgba(227, 30, 36, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.livestats-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.livestats-note a:hover {
    text-decoration: underline;
}

.livestats-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.livestats-mockup {
    background: #12121a;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    transition: var(--transition);
}

.livestats-mockup:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.mockup-header {
    background: #1a1a25;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-title {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.mockup-content {
    padding: 1.5rem;
    background: #0a0a0f;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: #12121a;
    border: 1px solid rgba(227, 30, 36, 0.15);
    padding: 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(227, 30, 36, 0.3);
    background: #1a1a25;
}

.stat-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.2);
    border-radius: 8px;
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0.2rem;
}

/* LiveStats Homepage Mockup Styles */
.mockup-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
    border-bottom: 1px solid rgba(227, 30, 36, 0.1);
}

.mockup-logo {
    height: 28px;
    width: auto;
}

.mockup-header-content span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.mockup-tagline {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #0a0a0f;
    border-bottom: 1px solid rgba(227, 30, 36, 0.08);
}

.mockup-tagline h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.mockup-consoles {
    padding: 1.5rem;
    background: #0a0a0f;
}

.mockup-consoles h4 {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-consoles h4::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--primary-color);
}

.console-card {
    background: linear-gradient(135deg, #12121a 0%, #1a1a25 100%);
    border: 1px solid rgba(227, 30, 36, 0.15);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.console-card:last-child {
    margin-bottom: 0;
}

.console-card:hover {
    border-color: rgba(227, 30, 36, 0.35);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.08);
    transform: translateY(-2px);
}

.console-card h5 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.console-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 0 0 0.75rem 0;
}

.console-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.console-card li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.console-card li::before {
    content: '✓';
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: bold;
}

.livestats-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
}

.livestats-footer-link:hover {
    color: var(--primary-color);
    background: rgba(231, 76, 60, 0.2);
}

.livestats-tagline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
}

.category-content {
    padding: 1.5rem;
}

.category-content p {
    color: #666;
    line-height: 1.6;
}

/* ===================================
   Champion Cards (Classes Page)
   =================================== */
.champion-cards {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.champion-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.champion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.champion-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.champion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.champion-card:hover .champion-image img {
    transform: scale(1.4);
}

.champion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.champion-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #ffa500);
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    width: fit-content;
}

.champion-overlay h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.champion-card .category-content {
    background: #1a1a1a;
}

.champion-card .category-content p {
    color: #aaa;
}

/* Placeholder for missing champion images */
.champion-image img[src*="champion.jpg"]:not([src$=".jpg"]),
.champion-image img:not([src]) {
    display: none;
}

.champion-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    z-index: -1;
}

/* Responsive champion cards */
@media (max-width: 768px) {
    .champion-cards {
        grid-template-columns: 1fr;
    }
    
    .champion-overlay h3 {
        font-size: 1.1rem;
    }
}

/* ===================================
   Events Section
   =================================== */
.events {
    padding: 5rem 0;
    background: #ffffff;
}

.events-month-group {
    margin-bottom: 4rem;
}

.events-month-group:last-of-type {
    margin-bottom: 2rem;
}

.month-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    border-radius: 8px;
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid var(--primary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 10px;
    padding: 1.75rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--primary-color);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: rgba(227,30,36,0.3);
    border-left-color: var(--primary-color);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c91a1f 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(227,30,36,0.25);
}

.event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Rajdhani', sans-serif;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    color: #1a1a1a;
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
}

.event-badge.points {
    background: var(--primary-color);
    color: white;
}

.event-badge.amateur {
    background: #1a1a1a;
    color: white;
}

.event-badge.test {
    background: #6b7280;
    color: white;
}

.event-badge.lttp {
    background: #7c3aed;
    color: white;
}

.event-badge.finale {
    background: linear-gradient(135deg, #ffd700 0%, var(--primary-color) 100%);
    color: white;
    font-size: 0.75rem;
}

.event-badge.tentative {
    background: #f59e0b;
    color: white;
}

.event-location {
    color: #555;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.event-location::before {
    content: "📍 ";
    font-size: 0;
}

/* Hide all emojis in gallery placeholders */
.gallery-placeholder span {
    font-size: 0;
    display: none;
}

/* Social links - fancy styled buttons with icons */
.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.15);
}

/* Facebook */
.social-link.facebook {
    background: linear-gradient(135deg, #4267B2 0%, #2d4a8a 100%);
    border-color: #4267B2;
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #5077c5 0%, #4267B2 100%);
    box-shadow: 0 4px 15px rgba(66, 103, 178, 0.5);
    transform: translateY(-2px);
}

/* YouTube */
.social-link.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    border-color: #FF0000;
}

.social-link.youtube:hover {
    background: linear-gradient(135deg, #ff3333 0%, #FF0000 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* TikTok */
.social-link.tiktok {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-color: #69C9D0;
    position: relative;
}

.social-link.tiktok::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(135deg, #69C9D0, #EE1D52, #69C9D0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.social-link.tiktok:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 4px 15px rgba(105, 201, 208, 0.4), 0 4px 15px rgba(238, 29, 82, 0.4);
    transform: translateY(-2px);
}

.social-link.tiktok i {
    background: linear-gradient(135deg, #69C9D0, #EE1D52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.livestats-footer-link span {
    display: none;
}

/* Hide stat icons emojis in LiveStats mockup */
.stat-icon {
    font-size: 2rem !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    position: relative;
}

.stat-icon::before {
    content: "";
    display: none;
}

/* Hide gallery placeholder emojis and show text only */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 2rem;
}

.gallery-placeholder p {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.event-description {
    color: #666;
    line-height: 1.6;
}

.events-footer {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--primary-color);
}

.events-footer p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.events-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.events-footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-preview {
    padding: 5rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item .video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.gallery-item:hover {
    box-shadow: var(--shadow-hover);
}

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 60%, transparent 100%);
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item .gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-item .gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-cta {
    text-align: center;
}

/* ===================================
   Contact Section - Fancy Redesign
   =================================== */
.contact-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg') center/cover;
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #ff4757);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-card-icon.facebook {
    background: linear-gradient(135deg, #4267B2, #2d4a8a);
}

.contact-card-icon.youtube {
    background: linear-gradient(135deg, #FF0000, #cc0000);
}

.contact-card-icon.tiktok {
    background: linear-gradient(135deg, #000, #333);
}

.contact-card-icon.website {
    background: linear-gradient(135deg, var(--primary-color), #8b0000);
}

.contact-card-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-card-content a:hover {
    color: var(--secondary-color);
}

.contact-card-content p {
    color: #333;
    font-weight: 500;
}

.contact-card-subtitle {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.25rem;
}

/* Contact Form */
.contact-form-column {
    position: relative;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-form-header {
    background: linear-gradient(135deg, var(--primary-color), #8b0000);
    padding: 2rem;
    color: white;
}

.contact-form-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #8b0000);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit .btn-icon i {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon i {
    transform: translateX(3px);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-column {
        order: 2;
    }
    
    .contact-form-column {
        order: 1;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-header {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-card-icon {
        width: 42px;
        height: 42px;
    }
    
    .contact-card-icon i {
        font-size: 1rem;
    }
}

/* Legacy contact styles (kept for compatibility) */
.contact {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.form-error {
    background: #fee;
    color: #c33;
    padding: 0.75rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.login-form-container {
    padding: 1rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Simplified Footer Layout */
.footer-content-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand p {
    color: #999;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social h4 {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.footer-social .social-links {
    display: flex;
    gap: 0.5rem;
}

.footer-social .social-link {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 8px;
}

.footer-social .social-link i {
    font-size: 1rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #999;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover,
.footer-section ul li {
    color: var(--primary-color);
}

.footer-classes-list {
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer-classes-list li {
    margin-bottom: 0.2rem;
    color: #999;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.footer-powered-by img {
    height: 22px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-powered-by a:hover img {
    opacity: 1;
}

.footer-powered-by .livestats-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #bbb;
    font-weight: 600;
    font-size: 0.85rem;
}

.footer-powered-by .livestats-brand:hover {
    color: var(--primary-color);
}

.footer-powered-by span {
    color: #777;
    font-size: 0.8rem;
}

.footer-powered-by a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-powered-by a:hover {
    color: var(--primary-color);
}

/* Simplified footer mobile */
@media (max-width: 600px) {
    .footer-content-simple {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #c0392b;
    transform: translateY(-5px);
}

/* ===================================
   Modal
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    /* Mobile Ticker */
    .event-ticker {
        height: 32px;
    }
    
    .ticker-label {
        padding: 0 0.6rem;
        font-size: 0.65rem;
    }
    
    .ticker-label span {
        display: none;
    }
    
    .ticker-label::after {
        border-width: 16px 0 16px 8px;
        right: -8px;
    }
    
    .ticker-item {
        padding: 0 1rem;
    }
    
    .ticker-date {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    .ticker-event-name {
        font-size: 0.75rem;
    }
    
    .ticker-location {
        display: none;
    }
    
    .ticker-badge {
        font-size: 0.55rem;
    }
    
    .navbar {
        top: 32px;
    }
    
    /* Adjust body padding for mobile ticker + navbar */
    body {
        padding-top: 92px; /* ticker (32px) + navbar (60px) */
    }
    
    body:has(.hero) {
        padding-top: 0;
    }
    
    /* Mobile Navigation */
    .navbar {
        height: 60px;
    }
    
    .navbar.scrolled {
        height: 55px;
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .logo {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        display: flex;
        align-items: center;
    }
    
    .logo img {
        height: 45px;
    }
    
    .navbar.scrolled .logo img {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        width: 100%;
        height: 100vh;
        padding: 80px 2rem 2rem;
        transition: var(--transition);
        gap: 0;
        margin-left: 0;
        overflow-y: auto;
        transform: translateX(-100%);
        visibility: hidden;
        opacity: 0;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* Mobile Hero */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 20px 60px;
        margin-top: -92px;
        padding-top: 152px;
        background-attachment: scroll;
    }
    
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content img {
        max-width: 280px !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .month-title {
        font-size: 1.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .event-date {
        width: 100%;
        padding: 1rem;
    }

    .event-badge {
        display: block;
        margin: 0 auto 0.8rem;
        width: fit-content;
    }

    .livestats-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .livestats-text h2 {
        font-size: 2rem;
    }

    .livestats-description {
        font-size: 1rem;
    }

    .livestats-features {
        grid-template-columns: 1fr;
    }

    .livestats-buttons {
        flex-direction: column;
    }

    .livestats-mockup {
        transform: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .categories-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Page header for subpages */
    .page-header {
        padding: 120px 20px 40px;
        min-height: auto;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-content img {
        max-width: 220px !important;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .month-title {
        font-size: 1.3rem;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .event-date {
        width: 100%;
    }

    .event-details h3 {
        font-size: 1.1rem;
    }

    .event-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
}

/* ===================================
   Sponsors Showcase Bar - LIGHT THEME
   =================================== */
.sponsors-showcase {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-top: none;
    border-bottom: none;
}

/* Static decorative background pattern */
.sponsors-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(227, 30, 36, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(227, 30, 36, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.sponsors-showcase .container {
    max-width: 1600px;
    position: relative;
    z-index: 1;
}

.sponsors-showcase-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sponsors-showcase-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Red accent on "Proudly" */
.sponsors-showcase-header h3 span {
    color: var(--primary-color);
}

.sponsors-logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
    padding: 1rem 0;
}

.sponsor-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    min-width: 120px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Subtle shine effect on cards */
.sponsor-logo-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(227, 30, 36, 0.05) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sponsor-logo-item:hover::before {
    transform: translateX(100%);
}

.sponsor-logo-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(227, 30, 36, 0.15),
        0 0 0 3px rgba(227, 30, 36, 0.1);
}

.sponsor-logo-item img {
    max-height: 70px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.sponsor-logo-item:hover img {
    filter: grayscale(0%) drop-shadow(0 4px 8px rgba(227, 30, 36, 0.2));
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-logo-item .sponsor-text {
    color: #333;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.sponsor-logo-item:hover .sponsor-text {
    color: var(--primary-color);
}

.sponsors-showcase-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.sponsors-showcase-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41a1f 100%);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.sponsors-showcase-cta a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.sponsors-showcase-cta a:hover::before {
    left: 100%;
}

.sponsors-showcase-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(227, 30, 36, 0.4),
        0 0 30px rgba(227, 30, 36, 0.2);
    text-decoration: none;
}

@media (max-width: 768px) {
    .sponsors-showcase {
        padding: 3rem 0;
    }
    
    .sponsors-showcase-header h3 {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
        padding: 0 1rem;
    }
    
    .sponsors-showcase-header h3::before,
    .sponsors-showcase-header h3::after {
        width: 40px;
    }
    
    .sponsors-logo-strip {
        gap: 1rem 1.5rem;
    }
    
    .sponsor-logo-item {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        min-width: 100px;
    }
    
    .sponsor-logo-item img {
        max-height: 55px;
        max-width: 140px;
    }
}

/* ===== LIVE TODAY Section Styles ===== */
.today-events-section {
    padding: 4rem 0;
    background: white !important;
}

.today-events-section .section-header {
    position: relative;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #e31c24;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(227, 28, 36, 0.6);
}

.live-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e31c24;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.today-event-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #e31c24 !important;
}

.today-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 28, 36, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.today-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(227, 28, 36, 0.2);
}

.live-event-date {
    position: relative;
    background: linear-gradient(135deg, #e31c24 0%, #b91c1c 100%) !important;
}

.live-pulse {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

.live-badge {
    background: linear-gradient(135deg, #e31c24 0%, #b91c1c 100%) !important;
    color: white !important;
    animation: badgeGlow 2s ease-in-out infinite;
}

.live-badge .pulse-icon {
    font-size: 0.5rem;
    animation: livePulse 1.5s ease-in-out infinite;
    margin-right: 4px;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(227, 28, 36, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(227, 28, 36, 0.5);
    }
}

.event-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.event-actions .btn {
    white-space: nowrap;
}

.today-results-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.today-results-btn i {
    font-size: 0.9rem;
}

/* Mobile responsiveness for today's events */
@media (max-width: 768px) {
    .today-events-section {
        padding: 3rem 0;
    }
    
    .today-event-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .today-event-card .event-date {
        margin: 0 auto 1rem;
        min-width: 70px;
        padding: 0.75rem;
    }
    
    .today-event-card .event-details {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .today-event-card .event-details h3 {
        font-size: 1.1rem;
    }
    
    .event-actions {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
    
    .today-results-btn {
        width: 100%;
        justify-content: center;
    }
    
    .live-indicator {
        margin-bottom: 0.5rem;
    }
    
    .live-dot {
        width: 10px;
        height: 10px;
    }
    
    .live-text {
        font-size: 0.75rem;
    }
}

