:root {
    /* Modern Community Color Palette 2025 */
    --primary-color: #3B82F6;
    --primary-dark: #1E40AF;
    --primary-light: #60A5FA;
    --secondary-color: #64748B;
    --accent-color: #F59E0B;
    --accent-light: #FCD34D;
    --success-color: #10B981;
    --success-light: #6EE7B7;
    --community-purple: #8B5CF6;
    --community-pink: #EC4899;
    --energy-orange: #F97316;
    --energy-red: #EF4444;
    
    /* Background Colors */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-gray: #F1F5F9;
    --bg-dark: #0F172A;
    --bg-gradient-start: #667EEA;
    --bg-gradient-end: #764BA2;
    
    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-light: #CBD5E1;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Modern Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Modern Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Community Activity Colors */
    --activity-online: #10B981;
    --activity-away: #F59E0B;
    --activity-offline: #6B7280;
    --activity-busy: #EF4444;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: -0.011em;
    background-color: var(--bg-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gray);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--community-purple));
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-white);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--community-purple), var(--primary-color));
    transform: scale(1.1);
}

/* Modern Utility Classes */
.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-community { color: var(--community-purple) !important; }
.text-energy { color: var(--energy-orange) !important; }
.text-success { color: var(--success-color) !important; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--community-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-primary { background-color: var(--primary-color) !important; }
.bg-community { background: linear-gradient(135deg, var(--primary-color), var(--community-purple)) !important; }
.bg-energy { background: linear-gradient(135deg, var(--energy-orange), var(--accent-color)) !important; }

/* Modern Button Designs */
.btn {
    border-radius: var(--radius-full);
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--community-purple) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--energy-orange) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
}

.btn-warning:hover {
    background: linear-gradient(135deg, var(--energy-orange) 0%, var(--energy-red) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    color: white;
}

/* New Community Button Styles */
.btn-community {
    background: linear-gradient(135deg, var(--community-purple) 0%, var(--community-pink) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
}

.btn-community:hover {
    background: linear-gradient(135deg, var(--community-pink) 0%, var(--community-purple) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-light) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--success-light) 0%, var(--success-color) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    color: white;
}

/* Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--community-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--community-purple), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-primary) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: var(--radius-lg);
    padding: var(--space-xs) var(--space-sm) !important;
    margin: 0 var(--space-xs);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(59, 130, 246, 0.15);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 2px;
    left: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--community-purple));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-full);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
    left: 10%;
}

/* Mobile Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831, 41, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-content {
    margin-top: 76px; /* Account for fixed navbar */
}

/* Ultra Modern Hero Section 2025 */
.hero-modern {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1b3a 50%, #2d1b69 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(10, 14, 39, 0.85) 0%, 
        rgba(26, 27, 58, 0.75) 50%, 
        rgba(45, 27, 105, 0.8) 100%
    );
    backdrop-filter: blur(1px);
}

/* Dynamic Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
    opacity: 0.3;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    top: 40%;
    right: -15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    33% { 
        transform: translate(20px, -30px) scale(1.1);
        opacity: 0.3;
    }
    66% { 
        transform: translate(-15px, -10px) scale(0.9);
        opacity: 0.25;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 0;
}

/* Live Status Banner */
.hero-live-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

.live-count {
    font-weight: 600;
    color: white;
}

.live-games {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes livePulse {
    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 */
.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-title-line {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: brightness(1) saturate(1);
    }
    50% { 
        filter: brightness(1.2) saturate(1.3);
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.hero-subtitle strong {
    color: white;
    font-weight: 600;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-stat-card .stat-icon {
    font-size: 1.5rem;
    color: #8B5CF6;
    margin-bottom: 0.5rem;
}

.hero-stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.hero-stat-card .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Modern CTA Buttons */
.hero-cta-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.hero-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.6);
    color: white;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.btn-content i {
    font-size: 1.25rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-main {
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-sub {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: opacity 0.3s ease;
}

.hero-btn:hover .btn-glow {
    opacity: 1;
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

/* Trust Indicators - Consistent Design */
.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-item i {
    color: #10B981;
    font-size: 1rem;
}

/* Floating Cards - Fixed Positioning */
.hero-floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 180px;
    max-width: 200px;
    animation: floatingCard 8s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.card-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: 3s;
}

.card-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 6s;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.card-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 400;
    white-space: nowrap;
}

@keyframes floatingCard {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-12px) rotate(1deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-6px) rotate(0.5deg);
        opacity: 0.8;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .floating-card {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-cta-container {
        gap: 0.75rem;
    }
    
    .hero-btn {
        padding: 1rem 1.5rem;
    }
    
    .btn-content {
        gap: 0.75rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-trust-indicators {
        gap: 1.5rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-live-banner {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-stat-card {
        padding: 1rem 0.75rem;
    }
    
    .hero-stat-card .stat-value {
        font-size: 1.5rem;
    }
    
    .hero-trust-indicators,
    .cta-trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .seo-content {
        padding: 2rem 1.5rem;
    }
}

/* Legacy button styles for other sections */
.btn-outline-light {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 700;
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.basketball-icon-large {
    animation: gentleBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

/* Modern Icon Circles */
.icon-circle {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.card:hover .icon-circle {
    transform: rotate(5deg) scale(1.1);
}

.card:hover .icon-circle::before {
    opacity: 1;
    animation: modernShimmer 1.8s ease-in-out;
}

@keyframes modernShimmer {
    0% { 
        transform: translateX(-120%) rotate(45deg); 
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        transform: translateX(120%) rotate(45deg); 
        opacity: 0;
    }
}

/* Unified Card System - Consistent Transitions */
.card,
.feature-card,
.court-showcase-card,
.game-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-2xl);
    border: none;
    backdrop-filter: blur(16px);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.card {
    background: var(--bg-white);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--community-purple), var(--energy-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(59, 130, 246, 0.2);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-img-top {
    transition: transform 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

/* Ultra Modern Sections 2025 */
section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

/* Section Background Patterns */
.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: -1;
}

.section-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.section-bg-pattern.reverse {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.section-bg-pattern.reverse::before {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #8B5CF6;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1rem;
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Ultra Modern Features Section */
.features-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.community-proof-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.proof-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.proof-text {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-size: 1.25rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
}

.proof-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.3), transparent);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover,
.court-showcase-card:hover,
.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-content {
    padding: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.live-indicator {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

/* Ultra Modern Courts Section */
.courts-modern {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
}

.courts-modern .section-title {
    color: white;
}

.courts-modern .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.courts-modern .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.courts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.court-showcase-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.court-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}

.court-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.court-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.court-showcase-card:hover .court-image-container img {
    transform: scale(1.05);
}

.court-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.court-showcase-card:hover .court-overlay {
    opacity: 1;
}

.court-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-weight: 900;
    font-size: 1.25rem;
    color: white;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.court-content {
    padding: 2rem;
}

.court-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.court-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.court-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.feature-item i {
    color: #10B981;
    font-size: 1rem;
}

/* Ultra Modern Games Section */
.games-modern {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    color: white;
}

.games-modern .section-title {
    color: white;
}

.games-modern .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.games-modern .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.game-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image-wrapper img {
    transform: scale(1.1);
}

.game-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-pulse {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

.status-pulse.active {
    background: #EF4444;
}

.status-pulse.community {
    background: #8B5CF6;
}

.game-content {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.game-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.game-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.meta-item i {
    color: #8B5CF6;
}

.games-cta-container {
    text-align: center;
    margin-top: 4rem;
}

.modern-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.modern-cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.6);
    color: white;
    text-decoration: none;
}

.modern-cta-button .cta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.modern-cta-button .cta-content i {
    font-size: 1.25rem;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-main {
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-sub {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: opacity 0.3s ease;
}

.modern-cta-button:hover .cta-glow {
    opacity: 1;
    animation: buttonGlow 2s ease-in-out infinite;
}

/* Ultra Modern CTA Section */
.cta-modern {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1b3a 50%, #2d1b69 100%);
    color: white;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 10s ease-in-out infinite;
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: 10%;
    left: -10%;
}

.cta-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    bottom: 10%;
    right: -10%;
    animation-delay: 5s;
}

.cta-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.live-activity-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.activity-pulse {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

.activity-label {
    font-weight: 700;
    color: white;
}

.activity-count {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.activity-update {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.title-highlight {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.cta-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

.cta-stat-item .stat-value {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.25rem;
}

.cta-stat-item .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899, #F59E0B);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cta-stat-item:hover .stat-indicator {
    transform: scaleX(1);
}

/* CTA Trust Indicators - Consistent with Hero */
.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-trust-indicators .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
}

.cta-trust-indicators .trust-item i {
    color: #10B981;
    font-size: 1rem;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .community-proof-strip {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .proof-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.3), transparent);
    }
    
    .features-grid,
    .courts-grid,
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .modern-cta-button {
        padding: 1.25rem 2rem;
    }
    
    .live-activity-banner {
        flex-direction: column;
        gap: 6px;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .cta-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .cta-stat-item {
        padding: 1rem 0.75rem;
    }
    
    .modern-cta-button .cta-text {
        align-items: center;
        text-align: center;
    }
}

/* Modern SEO Section */
.seo-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
}

.seo-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.seo-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.seo-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.seo-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #334155;
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

.seo-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

/* Unified Typography Scale */
.section-title,
.hero-title,
.cta-title,
.feature-title,
.court-title,
.game-title {
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* Consistent Focus States */
.hero-btn:focus,
.modern-cta-button:focus,
.btn:focus {
    outline: 2px solid #8B5CF6;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

/* Community Activity Section */
.community-stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--community-purple) 100%);
    color: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.community-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.activity-indicator {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-right: var(--space-xs);
    animation: activityPulse 2s ease-in-out infinite;
}

.activity-online { background-color: var(--activity-online); }
.activity-away { background-color: var(--activity-away); }
.activity-busy { background-color: var(--activity-busy); }
.activity-offline { background-color: var(--activity-offline); }

@keyframes activityPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Community Badge */
.community-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin: var(--space-xs);
}

/* Hero section community badges need different styling */
.hero-section .community-badge {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    font-weight: 700;
    font-size: 0.8rem;
    margin: 0.25rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.member-count {
    background: linear-gradient(135deg, var(--success-color), var(--success-light));
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Modern Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-gray) 100%);
    color: var(--text-primary);
    position: relative;
    padding: var(--space-2xl) 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Feature Highlight */
.feature-highlight {
    background: var(--bg-white);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-highlight:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--community-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

.display-4 {
    font-weight: 900;
    font-size: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.lead {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    color: var(--text-secondary);
}

/* Hero section lead text needs white color */
.hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 1.25rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Community Typography */
.community-title {
    background: linear-gradient(135deg, var(--primary-color), var(--community-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

/* Hero section stats need white color */
.hero-section .stat-number {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 900;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero section stat labels need white color */
.hero-section .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 0.75rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0f172a 100%) !important;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 25px 25px;
    pointer-events: none;
}

footer a {
    transition: all 0.3s ease;
    position: relative;
}

footer a:hover {
    color: var(--energy-orange) !important;
    transform: translateY(-1px);
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .icon-circle {
    animation: fadeInUp 0.8s ease-out;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

/* Loading Animation */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

/* Modern Mobile Experience */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.75rem;
        line-height: 1.2;
    }
    
    .hero-section {
        min-height: 95vh;
        padding: var(--space-xl) 0;
    }
    
    .hero-section .btn {
        padding: var(--space-md) var(--space-lg);
        font-size: 1.125rem;
        width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .feature-highlight {
        margin-bottom: var(--space-md);
        padding: var(--space-md);
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .community-badge {
        font-size: 0.8rem;
        padding: var(--space-xs);
        margin: var(--space-xs) 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .member-count {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2.25rem;
        line-height: 1.15;
    }
    
    .hero-section .btn {
        width: 100%;
        margin-bottom: var(--space-sm);
        padding: var(--space-md) var(--space-sm);
    }
    
    .icon-circle {
        width: 64px;
        height: 64px;
        font-size: 1.3rem;
    }
    
    .community-title {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-highlight {
        padding: var(--space-sm);
    }
    
    .community-stats {
        padding: var(--space-md);
        margin: var(--space-md) 0;
    }
    
    .member-count {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        margin: 0.1rem;
        display: block;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.dropdown-item:focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

/* Basketball Theme Elements */
.basketball-pattern {
    background-image: radial-gradient(circle at 50% 50%, var(--accent-color) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.1;
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3730a3 100%);
}

.border-orange {
    border-color: var(--energy-orange) !important;
}
