/* ================================
   MODERN DESIGN SYSTEM 2024-2026
   Glassmorphism + Mesh Gradients
   ================================ */

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

:root {
    /* Modern Color Palette - Purple/Blue/Pink */
    --primary: #667eea;
    --secondary: #764ba2;
    --accent-pink: #f5576c;
    --accent-blue: #4facfe;
    --accent-cyan: #00f2fe;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(102, 126, 234, 0.3) 0px, transparent 50%),
                     radial-gradient(at 100% 0%, rgba(246, 93, 108, 0.3) 0px, transparent 50%),
                     radial-gradient(at 100% 100%, rgba(79, 172, 254, 0.3) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, rgba(118, 75, 162, 0.3) 0px, transparent 50%);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Backgrounds */
    --bg-dark: #0a0a1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-hover: rgba(255, 255, 255, 0.08);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow-purple: 0 0 50px rgba(102, 126, 234, 0.4);
    --shadow-glow-pink: 0 0 50px rgba(245, 87, 108, 0.4);
    
    /* Radius */
    --radius-sm: 20px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --radius-xl: 56px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

/* Mesh Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: 0;
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}

/* Subtle Pattern Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.01) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.01) 50%, transparent 52%);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ================================
   GLASSMORPHISM HEADER
   ================================ */
.event-tabs {
    margin-bottom: 20px;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 10, 26, 0.7);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-normal);
}

.header-logo:hover {
    transform: translateY(-2px);
}

.header-logo svg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
    transition: var(--transition-normal);
}

.header-logo:hover svg {
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.8));
    transform: rotate(5deg);
}

.header-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-purple);
}

.header-flag {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Mobile Menu - Now on the RIGHT */
.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition-fast);
    position: relative;
}

.burger-menu:hover {
    background: rgba(255, 255, 255, 0.05);
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 88px;
    right: -100%;
    width: 320px;
    max-width: 90vw;
    height: calc(100vh - 88px);
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-nav-link {
    padding: 18px 32px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding-left: 40px;
}

.mobile-nav-link:hover::before {
    opacity: 1;
}

.mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.1);
}

/* ================================
   HERO PROFILE SECTION (Combined)
   ================================ */

.hero-profile-section {
    position: relative;
    margin-top: 88px;
    padding: 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 450px;
    overflow: hidden;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 26, 0.3) 0%,
        rgba(10, 10, 26, 0.6) 50%,
        rgba(10, 10, 26, 0.95) 100%
    );
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(245, 87, 108, 0.2) 0%, transparent 50%);
    animation: heroFloat 15s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(5deg); }
}

.hero-profile-section .container {
    position: relative;
    z-index: 10;
    padding-top: 200px;
    padding-bottom: 80px;
}

.profile-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}

.profile-header {
    background: var(--gradient-primary);
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    opacity: 0.5;
}

.logo-square {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 5px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
    margin-bottom: 32px;
}

.logo-square:hover {
    transform: scale(1.1) rotate(10deg);
}

.profile-info {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.profile-name {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.profile-url {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 500;
}

.contact-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.btn-whatsapp,
.btn-contact {
    width: 100%;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-whatsapp:hover,
.btn-contact:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.profile-desc {
    padding: 56px 64px;
    font-size: 18px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    display: flex;
    align-items: center;
}

/* ================================
   MILESTONES - Grid Cards Design
   ================================ */

.milestones-section-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
    overflow: hidden;
}

.milestones-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.milestone-small-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 8px;
}

.milestone-heading {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: white;
    text-align: center;
    margin-bottom: 64px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.milestone-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.milestone-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.milestone-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(102, 126, 234, 0.2) 90deg,
        transparent 180deg
    );
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: rotate(0deg);
}

.milestone-stat:hover::before {
    opacity: 1;
    transform: rotate(360deg);
}

.milestone-stat:hover {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.milestone-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a8b5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 16px;
    display: block;
    position: relative;
    z-index: 1;
}

.milestone-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .milestone-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
    }
    
    .milestone-heading {
        font-size: 32px;
    }
    
    .milestone-number {
        font-size: 48px;
    }
}

/* ================================
   EVENT CARDS - Futuristic Design
   ================================ */

.events-section-main {
    padding: 80px 0;
}

.section-main-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    letter-spacing: -1.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.events-section-main .section-main-title {
    margin-bottom: 48px;
}

.events-grid-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card-link {
    text-decoration: none;
    display: block;
}

.event-card-main {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition-normal);
    display: grid;
    grid-template-columns: 100px 1fr 120px;
    gap: 0;
}

.event-card-main:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.event-date-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 28px 16px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    line-height: 1.4;
    text-transform: uppercase;
    box-shadow: inset -4px 0 10px rgba(0, 0, 0, 0.2);
}

.event-main-info {
    padding: 28px;
}

.event-match-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.4;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.event-teams-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.team-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.vs-text {
    font-size: 13px;
    font-weight: 900;
    color: var(--accent-blue);
    background: rgba(79, 172, 254, 0.15);
    padding: 4px 12px;
    border-radius: 8px;
}

.event-meta-row,
.event-venue-text,
.event-tvs-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-league-badge {
    background: rgba(245, 87, 108, 0.15);
    color: var(--accent-pink);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(245, 87, 108, 0.3);
}

.event-price-text {
    background: var(--gradient-secondary);
    color: white;
    padding: 28px 16px;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    box-shadow: inset 4px 0 10px rgba(0, 0, 0, 0.2);
}

/* ================================
   VENUE CARDS - Vertical Cards
   ================================ */

.venues-section-main,
.venues-page-section {
    padding: 80px 0;
}

.venues-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.venue-card-main {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.venue-card-main:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
    border-color: rgba(102, 126, 234, 0.5);
}

.venue-image-box {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.venue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.venue-card-main:hover .venue-img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.15) saturate(1.2);
}

.venue-info-box {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.venue-name-text {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.venue-location-text {
    font-size: 15px;
    color: var(--accent-blue);
    margin-bottom: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.venue-features-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: auto;
    padding-bottom: 20px;
}

.venue-stats {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(102, 126, 234, 0.3);
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ================================
   WHAT WE DO - Feature Cards
   ================================ */

.what-we-do-section {
    padding: 80px 0;
}

.what-we-do-header {
    text-align: center;
    margin-bottom: 56px;
}

.wwd-heading {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wwd-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wwd-feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition-normal);
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
}

.wwd-feature-card:nth-child(even) {
    grid-template-columns: 1fr 120px;
}

.wwd-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
    border-color: rgba(102, 126, 234, 0.5);
}

.wwd-icon {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    position: relative;
}

.wwd-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg"><circle cx="25" cy="25" r="20" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
}

.wwd-feature-card:nth-child(even) .wwd-icon {
    order: 2;
}

.wwd-icon svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.wwd-feature-content {
    padding: 32px 36px;
}

.wwd-feature-card:nth-child(even) .wwd-feature-content {
    order: 1;
}

.wwd-feature-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.wwd-feature-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

/* ================================
   ABOUT US - Vertical Centered
   ================================ */

.about-us-section {
    padding: 80px 0;
}

.about-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
}

.about-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}

.about-icon-box {
    width: 160px;
    height: 160px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
    position: relative;
    margin-bottom: 40px;
}

.about-icon-box::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 3px solid rgba(102, 126, 234, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.about-icon-box::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border-radius: 50%;
    border: 2px solid rgba(102, 126, 234, 0.15);
    animation: pulse 3s ease-in-out infinite 0.5s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.about-content {
    max-width: 720px;
}

.about-label {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--accent-blue);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about-title {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.about-description {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
   CONTACT SECTION - List Layout
   ================================ */

.contact-section {
    padding: 80px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 56px;
}

.contact-label {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--accent-pink);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.contact-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    padding: 32px 40px;
    transition: var(--transition-normal);
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}

.contact-card:hover {
    background: var(--bg-hover);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
    border-color: rgba(102, 126, 234, 0.5);
}

.contact-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    flex-shrink: 0;
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.contact-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary);
    gap: 12px;
}

.contact-link svg {
    transition: var(--transition-fast);
}

.contact-address {
    color: var(--accent-blue);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.contact-address p {
    margin: 0;
}

.full-width-card {
    grid-template-columns: auto 1fr;
}

.full-width-card .contact-card-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: start;
}

/* ================================
   TAGS SECTIONS - Modern Chips
   ================================ */

.sports-tags-section,
.leagues-tags-section,
.usa-sports-section {
    padding: 80px 0;
    position: relative;
}

.sports-tags-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.leagues-tags-section {
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
}

.usa-sports-section {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
}

.sports-tags-section::before,
.leagues-tags-section::before,
.usa-sports-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-emoji {
    font-size: 72px;
    display: block;
    margin-bottom: 24px;
    animation: emojiFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes emojiFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 0;
}

.sport-tag-btn {
    padding: 16px 32px;
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: tagFadeIn 0.6s ease-out backwards;
}

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

.sport-tag-btn:nth-child(1) { animation-delay: 0.05s; }
.sport-tag-btn:nth-child(2) { animation-delay: 0.1s; }
.sport-tag-btn:nth-child(3) { animation-delay: 0.15s; }
.sport-tag-btn:nth-child(4) { animation-delay: 0.2s; }
.sport-tag-btn:nth-child(5) { animation-delay: 0.25s; }
.sport-tag-btn:nth-child(6) { animation-delay: 0.3s; }
.sport-tag-btn:nth-child(7) { animation-delay: 0.35s; }
.sport-tag-btn:nth-child(8) { animation-delay: 0.4s; }
.sport-tag-btn:nth-child(9) { animation-delay: 0.45s; }

.sport-tag-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.sport-tag-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sport-tag-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
    color: black;
}

.sport-tag-btn:hover::before {
    opacity: 1;
}

.sport-tag-btn:hover::after {
    width: 300px;
    height: 300px;
}

.sport-tag-btn:active {
    transform: translateY(-3px) scale(1.02);
}

/* League Tags - Pink Gradient */
.leagues-tags-section .sport-tag-btn::before {
    background: var(--gradient-secondary);
}

.leagues-tags-section .sport-tag-btn:hover {
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
    border-color: rgba(245, 87, 108, 0.5);
    color: black;
}

/* USA Sports Tags - Cyan Gradient */
.usa-sports-section .sport-tag-btn::before {
    background: var(--gradient-accent);
}

.usa-sports-section .sport-tag-btn:hover {
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
    border-color: rgba(79, 172, 254, 0.5);
    color: black;
}

/* Active State */
.sport-tag-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.leagues-tags-section .sport-tag-btn.active {
    background: var(--gradient-secondary);
    box-shadow: 0 8px 24px rgba(245, 87, 108, 0.4);
}

.usa-sports-section .sport-tag-btn.active {
    background: var(--gradient-accent);
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.4);
}

/* ================================
   FOOTER - Modern Design
   ================================ */

.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 32px;
    margin-top: 100px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.footer .container {
    max-width: 1200px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-fast);
    padding: 8px 16px;
    border-radius: 12px;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.footer-links a:hover::before {
    opacity: 1;
}

.footer-links a span {
    position: relative;
    z-index: 1;
}

.footer-links span {
    color: white;
    font-size: 20px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-links span:hover {
    color: black;
}

.footer-brand {
    text-align: center;
    margin-bottom: 28px;
}

.footer-brand p {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.footer-copy {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.8;
}

/* ================================
   EVENT TABS
   ================================ */

.tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 12px;
    flex-wrap: wrap;
}

.event-tab-btn {
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.event-tab-btn:hover {
    background: var(--bg-hover);
    border-color: rgba(102, 126, 234, 0.5);
    color: #fff;
}

.event-tab-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow-purple);
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ================================
   MODAL - Modern Design
   ================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 540px;
    width: 90%;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-pink);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 18px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}

/* Success Modal Styles */
.success-modal .modal-content {
    text-align: center;
    max-width: 480px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: white;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ================================
   PAGE TITLE
   ================================ */

.page-title {
    font-size: 56px;
    font-weight: 900;
    text-align: center;
    margin: 120px 0 56px;
    letter-spacing: -2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   POLICY PAGES
   ================================ */

.policy-section {
    padding: 40px 0 80px;
}

.policy-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin: 120px 0 48px;
    letter-spacing: -1.5px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 56px;
    box-shadow: var(--shadow-md);
}

.policy-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 40px 0 20px;
    color: #fff;
}

.policy-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: rgba(255, 255, 255, 0.95);
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.policy-content ul,
.policy-content ol {
    margin: 20px 0 20px 24px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.policy-content li {
    margin-bottom: 12px;
}

.policy-content a {
    color: var(--accent-blue);
    text-decoration: underline;
    transition: var(--transition-fast);
}

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

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

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-profile-section .container {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .hero-background {
        height: 400px;
    }

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

@media (max-width: 768px) {
    :root {
        --radius-lg: 28px;
        --radius-md: 20px;
        --radius-sm: 16px;
    }

    .hero-profile-section .container {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .hero-background {
        height: 350px;
    }

    .section-main-title,
    .page-title {
        font-size: 36px;
    }

    /* Profile Card */
    .profile-card {
        grid-template-columns: 1fr;
    }

    .profile-header {
        padding: 48px 32px;
    }

    .logo-square {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 28px;
    }

    .profile-info {
        margin-bottom: 28px;
    }

    .profile-desc {
        padding: 48px 32px;
        text-align: center;
    }

    /* Milestones */
    .milestone-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .milestone-stat {
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }

    .milestone-stat:last-child {
        border-bottom: none;
    }

    .milestone-stat:not(:last-child)::after {
        display: none;
    }

    .milestone-number {
        font-size: 56px;
    }

    /* Event Cards */
    .event-card-main {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }

    .event-date-badge {
        grid-row: 1 / 2;
        min-width: 80px;
        padding: 24px 16px;
    }

    .event-main-info {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        padding: 24px;
    }

    .event-price-text {
        grid-row: 2 / 3;
        grid-column: 1 / -1;
        padding: 20px;
        text-align: center;
        box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .event-details-grid {
        grid-template-columns: 1fr;
    }

    /* Venues */
    .venues-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .venue-image-box {
        height: 200px;
    }

    /* Contact */
    .contact-card {
        grid-template-columns: auto 1fr;
        gap: 20px;
        padding: 28px 32px;
    }

    .contact-icon-circle {
        width: 64px;
        height: 64px;
    }

    .full-width-card .contact-card-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-link {
        order: 2;
    }

    .contact-address {
        order: 1;
    }

    /* Features */
    .wwd-feature-card,
    .wwd-feature-card:nth-child(even) {
        grid-template-columns: 100px 1fr;
    }

    /* About */
    .about-icon-box {
        width: 140px;
        height: 140px;
    }

    .about-title {
        font-size: 36px;
    }

    .tags-wrapper {
        gap: 12px;
        margin-top: 40px;
    }

    .sport-tag-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .profile-header {
        padding: 40px 24px;
    }

    .logo-square {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-desc,
    .policy-content,
    .modal-content {
        padding: 40px 24px;
    }

    .hero-profile-section .container {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-background {
        height: 300px;
    }

    .section-main-title {
        font-size: 28px;
    }

    .milestone-number {
        font-size: 48px;
    }

    .about-icon-box {
        width: 120px;
        height: 120px;
    }

    .about-title {
        font-size: 28px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .contact-icon-circle {
        margin: 0 auto;
    }

    .contact-card-content {
        text-align: center;
    }

    .contact-link {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-links span {
        display: none;
    }

    .venues-grid-main {
        grid-template-columns: 1fr;
    }

    .section-emoji {
        font-size: 56px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .sport-tag-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .tags-wrapper {
        gap: 10px;
    }
}

/* ================================
   ANIMATIONS
   ================================ */

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

.event-card-main,
.venue-card-main,
.wwd-feature-card,
.milestone-stat {
    animation: fadeIn 0.6s ease-out backwards;
}

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

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

/* Selection */
::selection {
    background: rgba(102, 126, 234, 0.4);
    color: white;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

