/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00FFFF;
    --secondary: #3B82F6;
    --accent: #A3E635;
    --dark: #0A0F1C;
    --darker: #050811;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Light Theme Variables */
body.light-theme {
    --dark: #FFFFFF;
    --darker: #F5F5F5;
    --text-primary: #0A0F1C;
    --text-secondary: #4A5568;
    --glass: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: white;
    overflow-x: hidden;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

body.light-theme {
    color: var(--text-primary);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility: Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== ANIMATED BACKGROUND ========== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

body.light-theme #particleCanvas {
    opacity: 0.3;
}

/* ========== FLOATING PRISMS ========== */
.prism {
    position: fixed;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    opacity: 0.08;
    filter: blur(90px);
    border-radius: 50%;
    z-index: 1;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

.prism-1 { top: 10%; left: 15%; animation-delay: 0s; }
.prism-2 { top: 60%; right: 10%; animation-delay: 2s; animation-duration: 12s; }
.prism-3 { bottom: 20%; left: 50%; animation-delay: 4s; animation-duration: 14s; }
.prism-4 { top: 40%; right: 30%; animation-delay: 6s; animation-duration: 11s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(30px, -30px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-20px, 20px) rotate(180deg) scale(0.9); }
    75% { transform: translate(40px, 10px) rotate(270deg) scale(1.05); }
}


/* ========== THEME TOGGLE BUTTON ========== */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.light-theme .theme-toggle {
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--dark);
    transform: rotate(180deg);
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ========== NAVBAR ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

header.scrolled {
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

body.light-theme header.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    position: relative;
}

.logo-bg {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--primary), transparent);
    opacity: 0.3;
    filter: blur(20px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.logo-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon-img {
    transform: scale(1.1);
}


.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .logo-text {
    background: linear-gradient(135deg, #0088cc, #005f99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

body.light-theme .nav-item {
    color: var(--text-secondary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item:hover::after {
    width: 100%;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

body.light-theme .btn-login {
    color: var(--text-primary);
}

.btn-login:hover {
    background: var(--glass);
    border-color: var(--primary);
    color: var(--primary);
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

body.light-theme .mobile-menu-btn span {
    background: var(--text-primary);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 28, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

body.light-theme .mobile-menu-overlay {
    background: rgba(255, 255, 255, 0.98);
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.light-theme .mobile-menu-close {
    color: var(--text-primary);
}

.mobile-menu-close:hover {
    background: var(--primary);
    color: var(--dark);
    transform: rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 30px;
    gap: 20px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 15px 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 300px;
}

body.light-theme .mobile-nav-item {
    color: var(--text-primary);
}

.mobile-nav-item:hover {
    background: var(--glass);
    color: var(--primary);
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Orbitron', sans-serif;
}

body.light-theme .hero-title {
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

body.light-theme .hero-subtitle {
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.5);
}

.btn-secondary {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
}

body.light-theme .btn-secondary {
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 42px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

body.light-theme .stat-label {
    color: var(--text-secondary);
}

/* Hero Right - Floating Card */
.hero-right {
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(59, 130, 246, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15), transparent);
    opacity: 0.5;
    filter: blur(40px);
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #EF4444;
    color: #EF4444;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
}

.vs {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.league-name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 25px;
}

body.light-theme .league-name {
    color: var(--text-secondary);
}

.odds-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.odd {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.odd-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

body.light-theme .odd-label {
    color: var(--text-secondary);
}

.odd-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
}

.match-time {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

body.light-theme .match-time {
    color: var(--text-secondary);
}

/* ========== SECTIONS COMMON STYLES ========== */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

body.light-theme .section-title {
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

body.light-theme .section-subtitle {
    color: var(--text-secondary);
}

/* ========== FEATURES SECTION ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary), transparent);
    opacity: 0.2;
    filter: blur(20px);
}

.feature-icon-new {
    font-size: 32px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

body.light-theme .feature-card h3 {
    color: var(--text-primary);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

body.light-theme .feature-card p {
    color: var(--text-secondary);
}

.feature-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

body.light-theme .feature-tag {
    color: var(--text-secondary);
}

.feature-tag i {
    color: var(--accent);
}

/* ========== LIVE MATCHES SECTION ========== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.section-subtitle-inline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin: 0;
}

body.light-theme .section-subtitle-inline {
    color: var(--text-secondary);
}

/* Sports Filter */
.sports-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.light-theme .filter-btn {
    color: var(--text-secondary);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 12px 18px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
}

.search-box i {
    color: rgba(255, 255, 255, 0.5);
}

body.light-theme .search-box i {
    color: var(--text-secondary);
}

.search-box input {
    background: transparent;
    border: none;
    color: white;
    flex: 1;
    font-size: 15px;
    outline: none;
}

body.light-theme .search-box input {
    color: var(--text-primary);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

body.light-theme .search-box input::placeholder {
    color: var(--text-secondary);
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

/* Loading & Error States */
.loading-state,
.error-state {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

body.light-theme .loading-state p {
    color: var(--text-secondary);
}

.error-state i {
    font-size: 60px;
    color: #EF4444;
    margin-bottom: 20px;
}

.error-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

body.light-theme .error-state h3 {
    color: var(--text-primary);
}

.error-state p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

body.light-theme .error-state p {
    color: var(--text-secondary);
}

.retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

/* Live Matches Grid */
.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.match-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.match-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sport-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.match-teams {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
}

body.light-theme .team {
    color: var(--text-primary);
}

.team-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.match-league {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

body.light-theme .match-league {
    color: var(--text-secondary);
}

.match-odds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.odd-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.odd-box-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

body.light-theme .odd-box-label {
    color: var(--text-secondary);
}

.odd-box-value {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    padding: 80px 0;
    overflow: hidden;
}

.partners-marquee {
    overflow: hidden;
    margin: 20px 0;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: marquee-ltr 30s linear infinite;
}

.marquee-rtl {
    animation: marquee-rtl 30s linear infinite;
}

@keyframes marquee-ltr {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-rtl {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.partner-logo-card {
    flex-shrink: 0;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px 30px;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.partner-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo-card:hover .partner-img {
    opacity: 1;
}

/* ========== PRICING SECTION ========== */
.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card-new {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.featured-plan {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--primary);
}

.featured-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: var(--dark);
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

body.light-theme .plan-header h3 {
    color: var(--text-primary);
}

.plan-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

body.light-theme .plan-desc {
    color: var(--text-secondary);
}

.price-wrapper {
    text-align: center;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.amount {
    font-size: 52px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
}

.period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

body.light-theme .period {
    color: var(--text-secondary);
}

.price-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

body.light-theme .price-note {
    color: var(--text-secondary);
}

.features-list-new {
    list-style: none;
    margin-bottom: 35px;
}

.features-list-new li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

body.light-theme .features-list-new li {
    color: var(--text-secondary);
}

.features-list-new li.disabled {
    opacity: 0.4;
}

.features-list-new i {
    font-size: 18px;
    color: var(--accent);
}

.features-list-new i.disabled {
    color: #EF4444;
}

.plan-btn-new {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--glass);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn-new:hover {
    background: var(--primary);
    color: var(--dark);
}

.featured-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border: none;
}

.featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FBBF24;
    font-size: 18px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

body.light-theme .testimonial-text {
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

body.light-theme .author-info h4 {
    color: var(--text-primary);
}

.author-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

body.light-theme .author-info p {
    color: var(--text-secondary);
}

/* ========== BLOG SECTION ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

body.light-theme .blog-meta {
    color: var(--text-secondary);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

body.light-theme .blog-content h3 {
    color: var(--text-primary);
}

.blog-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 18px;
}

body.light-theme .blog-content p {
    color: var(--text-secondary);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

/* ========== FAQ SECTION ========== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    color: white;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.light-theme .faq-question {
    color: var(--text-primary);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

body.light-theme .faq-answer p {
    color: var(--text-secondary);
}

/* ========== DOCS PREVIEW SECTION ========== */
.docs-content {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.docs-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.docs-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.light-theme .docs-nav-btn {
    color: var(--text-secondary);
}

.docs-nav-btn:hover,
.docs-nav-btn.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.docs-tab {
    display: none;
}

.docs-tab.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.docs-tab h3 {
    font-size: 26px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.light-theme .docs-tab h3 {
    color: var(--text-primary);
}

.docs-tab > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

body.light-theme .docs-tab > p {
    color: var(--text-secondary);
}

.code-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

body.light-theme .code-block {
    background: rgba(0, 0, 0, 0.05);
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--glass-border);
}

.code-header span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

body.light-theme .code-header span {
    color: var(--text-secondary);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.05);
}

.code-block pre {
    padding: 20px;
    margin: 0;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #A3E635;
}

body.light-theme .code-block code {
    color: #047857;
}

/* Endpoint List */
.endpoint-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.endpoint-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 18px;
}

body.light-theme .endpoint-item {
    background: rgba(0, 0, 0, 0.03);
}

.method {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 12px;
}

.method.get {
    background: #10B981;
    color: white;
}

.method.post {
    background: #3B82F6;
    color: white;
}

.endpoint-item code {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
}

.endpoint-item p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

body.light-theme .endpoint-item p {
    color: var(--text-secondary);
}

/* Auth Methods */
.auth-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.auth-method h4 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.light-theme .auth-method h4 {
    color: var(--text-primary);
}

.docs-cta {
    text-align: center;
}

/* ========== CONTACT SECTION ========== */
.contact-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 16px;
}

body.light-theme .contact-subtitle {
    color: var(--text-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 25px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

body.light-theme .info-card h4 {
    color: var(--text-primary);
}

.info-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

body.light-theme .info-card p {
    color: var(--text-secondary);
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.info-link:hover {
    gap: 12px;
}

/* Contact Form */
.contact-form-new {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    font-weight: 600;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10B981;
    color: #10B981;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #EF4444;
    color: #EF4444;
    display: block;
}

.contact-form-new .form-group {
    margin-bottom: 25px;
}

.contact-form-new textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    transition: all 0.3s ease;
}

body.light-theme .contact-form-new textarea {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.05);
}

.contact-form-new textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.submit-btn-new {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.submit-btn-new:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ========== FOOTER ========== */
.footer-new {
    background: var(--dark);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col-main .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
}
.footer-logo-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}


.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 25px;
}

body.light-theme .footer-desc {
    color: var(--text-secondary);
}

.social-links-new {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

body.light-theme .social-btn {
    color: var(--text-primary);
}

.social-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

body.light-theme .footer-col h4 {
    color: var(--text-primary);
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

body.light-theme .footer-col a {
    color: var(--text-secondary);
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

body.light-theme .footer-bottom p {
    color: var(--text-secondary);
}

/* ========== LEGAL MODALS ========== */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 40px 20px;
}

.legal-modal.active {
    display: flex;
    opacity: 1;
}

.legal-modal-content {
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    max-width: 900px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: modalSlideIn 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

body.light-theme .legal-modal-content {
    background: white;
}

.legal-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.light-theme .legal-modal-close {
    color: var(--text-primary);
}

.legal-modal-close:hover {
    background: var(--primary);
    color: var(--dark);
    transform: rotate(90deg);
}

.legal-modal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

body.light-theme .legal-modal-content h2 {
    color: var(--text-primary);
}

.legal-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

body.light-theme .legal-content {
    color: var(--text-secondary);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid-two {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-links,
    .auth-buttons {
        display: none;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    /* Sections */
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Live Matches */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sports-filter {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .search-box {
        max-width: 100%;
    }

    .live-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .theme-toggle {
        top: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Docs */
    .docs-content {
        padding: 25px;
    }

    .docs-nav {
        flex-direction: column;
    }

    .code-block pre {
        font-size: 12px;
    }

    /* Legal Modals */
    .legal-modal-content {
        padding: 30px 25px;
    }

    .legal-modal-content h2 {
        font-size: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .floating-card {
        padding: 25px;
    }

    .teams {
        font-size: 22px;
    }

    .auth-modal-content {
        padding: 30px 20px;
    }

    .contact-form-new {
        padding: 25px;
    }
}
/* ========== ABOUT PAGE STYLES ========== */
.about-hero-content .stat-box {
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.logo-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon-img {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-page > .container > div {
        grid-template-columns: 1fr !important;
    }
}
/* ========== CONTACT FORM STYLING ========== */
.contact-form-new .form-group {
    margin-bottom: 25px;
}

.contact-form-new .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

body.light-theme .contact-form-new .form-group label {
    color: var(--text-secondary);
}

.contact-form-new .form-group input,
.contact-form-new .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

body.light-theme .contact-form-new .form-group input,
body.light-theme .contact-form-new .form-group textarea {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.05);
}

.contact-form-new .form-group input:focus,
.contact-form-new .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.contact-form-new .form-group input::placeholder,
.contact-form-new .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

body.light-theme .contact-form-new .form-group input::placeholder,
body.light-theme .contact-form-new .form-group textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form-new textarea {
    resize: vertical;
    min-height: 120px;
}