/* ============================================
   Beylikbağı İnter SK - Main Stylesheet
   Premium Football Club Theme
   ============================================ */

:root {
    --primary: #ffffff;
    --primary-light: #f7f8fa;
    --primary-dark: #f0f2f5;
    --accent: #1a6b2a;
    --accent-light: #2d7a3a;
    --accent-glow: rgba(26, 107, 42, 0.15);
    --gold: #b8942e;
    --gold-glow: rgba(184, 148, 46, 0.15);
    --success: #0d9668;
    --danger: #dc2626;
    --warning: #d97706;
    --text: #1a2e1f;
    --text-secondary: #4a6350;
    --text-muted: #8a9e8f;
    --glass: rgba(26, 107, 42, 0.04);
    --glass-border: rgba(26, 107, 42, 0.12);
    --glass-hover: rgba(26, 107, 42, 0.07);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: #ffffff;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Preloader
   ============================================ */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-ball {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    animation: loaderBounce 0.6s infinite alternate cubic-bezier(0.6, 0, 0.4, 1);
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--accent);
}

@keyframes loaderBounce {
    from { transform: translateY(0) scale(1, 1); }
    to { transform: translateY(-30px) scale(0.9, 1.1); }
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.brand-icon {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--accent), #1a5c28);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.brand-name {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.brand-sub {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--glass);
    color: var(--accent);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Dropdown Menu */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle { display: flex !important; align-items: center; gap: 4px; }

.nav-arrow { font-size: 0.6rem; transition: var(--transition); margin-left: 2px; }

.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(26,107,42,0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 16px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.88rem !important;
    color: var(--text-secondary) !important;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(26,107,42,0.06) !important;
    color: var(--accent) !important;
    padding-left: 20px !important;
}

.nav-dropdown-menu a i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--accent);
    opacity: 0.7;
}

.nav-dropdown-menu a:hover i { opacity: 1; }

.nav-section-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 10px 16px 4px;
    font-weight: 600;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent), #1a5c28) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow) !important;
    background: linear-gradient(135deg, #236b30, #1a5c28) !important;
}

.nav-cta i { margin-right: 6px; }

.nav-cta-gold {
    background: linear-gradient(135deg, #d97706, #b45309) !important;
    color: white !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(217,119,6,0.2);
}

.nav-cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217,119,6,0.3) !important;
}

.nav-cta-gold i { margin-right: 4px; }

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

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

/* ============================================
   Hero Section - Premium
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #f7faf8 0%, #eef5f0 40%, #f7faf8 100%);
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(26,107,42,0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(184,148,46,0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(26,107,42,0.04) 0%, transparent 50%);
    z-index: 2;
}

.hero-grid-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(26,107,42,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,107,42,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* Floating shapes */
.hero-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }

.shape {
    position: absolute;
    border: 1px solid rgba(26,107,42,0.08);
    border-radius: 50%;
}

.shape-1 { width: 300px; height: 300px; top: 10%; right: 5%; animation: shapeFloat 20s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; bottom: 15%; left: 3%; animation: shapeFloat 15s ease-in-out infinite reverse; border-radius: 30%; }
.shape-3 { width: 150px; height: 150px; top: 60%; right: 20%; animation: shapeFloat 18s ease-in-out infinite 2s; }
.shape-4 { width: 80px; height: 80px; top: 20%; left: 30%; animation: shapeFloat 12s ease-in-out infinite 1s; border-color: rgba(200,168,78,0.1); }
.shape-5 { width: 120px; height: 120px; bottom: 20%; right: 35%; animation: shapeFloat 16s ease-in-out infinite 3s; border-radius: 20%; }

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-3deg); }
    75% { transform: translate(15px, 10px) rotate(2deg); }
}

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-orb-1 { width: 400px; height: 400px; background: rgba(26,107,42,0.06); top: -10%; left: -5%; animation: orbPulse 8s ease-in-out infinite; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(184,148,46,0.05); bottom: -5%; right: 10%; animation: orbPulse 10s ease-in-out infinite 2s; }
.hero-orb-3 { width: 250px; height: 250px; background: rgba(26,107,42,0.04); top: 40%; right: 30%; animation: orbPulse 12s ease-in-out infinite 4s; }

@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Hero layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26,107,42,0.08);
    border: 1px solid rgba(26,107,42,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-glow);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: 3px;
    margin-bottom: 28px;
}

.hero-line {
    display: block;
    overflow: hidden;
}

.hero-line-1 { color: var(--text); }

.hero-line-2 .text-gradient {
    background: linear-gradient(135deg, #1a6b2a, #2d9a40, #b8942e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-line-3 { font-size: clamp(2rem, 5vw, 3.8rem); }

.text-stroke {
    -webkit-text-stroke: 2px var(--gold);
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #1a5c28);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--accent-glow);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--accent), var(--gold), var(--accent));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-glow:hover::before { opacity: 0.5; }

.btn-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--glass);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b8942e);
    color: #000;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

/* Hero ticker */
.hero-ticker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding: 14px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    max-width: 520px;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    white-space: nowrap;
}

.ticker-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: badgePulse 2s infinite;
}

.ticker-content {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ticker-divider { color: var(--glass-border); }

/* Hero visual side - logo showcase */
.hero-visual-side {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.hero-logo-showcase {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-club-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(45,122,58,0.4));
    animation: logoFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 5;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.logo-glow {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(45,122,58,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.4); opacity: 1; }
}

.logo-ring {
    position: absolute;
    border: 1px solid rgba(26,107,42,0.1);
    border-radius: 50%;
}

.logo-ring-1 {
    width: 280px; height: 280px;
    animation: ringRotate 20s linear infinite;
    border-style: dashed;
}

.logo-ring-2 {
    width: 340px; height: 340px;
    animation: ringRotate 30s linear infinite reverse;
    border-color: rgba(184,148,46,0.08);
}

.logo-ring-3 {
    width: 400px; height: 400px;
    animation: ringRotate 40s linear infinite;
    border-style: dotted;
    border-color: rgba(26,107,42,0.05);
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating stat cards */
.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(26,107,42,0.1);
    backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: var(--radius);
    z-index: 20;
    animation: statFloat 5s ease-in-out infinite;
}

.floating-stat-icon {
    width: 40px; height: 40px;
    background: rgba(45,122,58,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}

.floating-stat strong {
    display: block;
    font-size: 1.4rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
    color: var(--text);
}

.floating-stat span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-stat-1 { top: 10%; right: 0; animation-delay: 0s; }
.floating-stat-2 { bottom: 25%; left: 0; animation-delay: 1.5s; }
.floating-stat-3 { bottom: 5%; right: 10%; animation-delay: 3s; }

@keyframes statFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(26,107,42,0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--accent);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: #f5f7f6;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,107,42,0.06);
    border: 1px solid rgba(26,107,42,0.12);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Cards
   ============================================ */
.glass-card {
    background: #ffffff;
    border: 1px solid #e8eeea;
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26,107,42,0.08);
    border-color: rgba(26,107,42,0.2);
}

/* ============================================
   Fixture Cards
   ============================================ */
.fixtures-grid {
    display: grid;
    gap: 16px;
}

.fixture-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
}

.fixture-card:hover {
    background: var(--glass-hover);
    border-color: rgba(45, 122, 58, 0.2);
    transform: translateX(5px);
}

/* ============================================
   Academy Cards
   ============================================ */
.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.academy-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.academy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.academy-card-header {
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.academy-age {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.academy-card-header h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.academy-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.academy-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.academy-detail i {
    width: 18px;
    text-align: center;
    color: var(--accent);
    font-size: 0.85rem;
}

/* Board Featured */
.board-featured {
    margin-bottom: 20px;
}

.board-featured-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.board-featured-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), #b8942e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.board-featured-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.fixture-card.upcoming { border-left: 3px solid var(--accent); }
.fixture-card.completed { border-left: 3px solid var(--success); }
.fixture-card.live { border-left: 3px solid var(--danger); animation: livePulse 2s infinite; }

@keyframes livePulse {
    0%, 100% { border-left-color: var(--danger); }
    50% { border-left-color: transparent; }
}

.fixture-team {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.fixture-team.away { justify-content: flex-end; text-align: right; }

.team-logo {
    width: 40px; height: 40px;
    background: var(--glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.fixture-score {
    text-align: center;
    min-width: 80px;
}

.fixture-score-numbers {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 4px;
}

.fixture-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fixture-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-upcoming { background: rgba(59,130,246,0.15); color: var(--accent); }
.status-completed { background: rgba(16,185,129,0.15); color: var(--success); }
.status-live { background: rgba(239,68,68,0.15); color: var(--danger); }

/* ============================================
   Squad Section
   ============================================ */
.squad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.player-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.player-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.player-photo {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #eef3f0, #dfe8e2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-photo .placeholder-icon {
    font-size: 4rem;
    color: var(--text-muted);
}

.player-number {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.8;
}

.player-info {
    padding: 20px;
}

.player-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.player-position {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #dde5df;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: rgba(255,255,255,0.08);
}

.form-control::placeholder {
    color: #a0b0a5;
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a635080'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================
   Page Headers
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #f5f7f6;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(26,107,42,0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(184,148,46,0.04) 0%, transparent 50%);
    opacity: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   About / Corporate
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #eef3f0, #dfe8e2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-box .placeholder-icon {
    font-size: 6rem;
    color: var(--text-muted);
    opacity: 0.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.value-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(59,130,246,0.1);
}

.value-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--accent), #1a5c28);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Corporate Timeline - Alternating Center Layout */
.timeline {
    position: relative;
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1a6b2a 0%, #2563eb 15%, #d97706 30%, #7c3aed 45%, #ec4899 60%, #dc2626 75%, #0d9668 85%, #b8942e 100%);
    border-radius: 3px;
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 16px 40px 16px 0;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding: 16px 0 16px 40px;
    text-align: left;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.timeline-item::before { content: none; }

.timeline-card {
    background: #ffffff;
    border: 1px solid #e8eeea;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
}

/* We apply the card styling directly to timeline-item for compatibility */
.timeline-item {
    background: #ffffff;
    border: 1px solid #e8eeea;
    border-radius: 16px;
    padding: 18px 22px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    box-shadow: 0 8px 30px rgba(26,107,42,0.1);
    border-color: rgba(26,107,42,0.2);
    transform: translateY(-2px);
}

.timeline-item:nth-child(odd) {
    margin-right: 50%;
    padding-right: 22px !important;
}

.timeline-item:nth-child(even) {
    margin-right: 0;
    margin-left: 50%;
    padding-left: 22px !important;
}

/* Add gap between card edge and center line */
.timeline-item:nth-child(odd) { margin-right: calc(50% + 30px); }
.timeline-item:nth-child(even) { margin-left: calc(50% + 30px); }

.timeline-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border: 3px solid #ffffff;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -54px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -54px;
}

.timeline-date {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent);
    letter-spacing: 3px;
    padding: 2px 10px;
    background: rgba(26,107,42,0.08);
    border-radius: 8px;
    margin-bottom: 6px;
}

.timeline-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin: 4px 0 6px;
    color: var(--text);
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.timeline-highlight {
    background: linear-gradient(135deg, rgba(26,107,42,0.06), rgba(184,148,46,0.1)) !important;
    border-color: rgba(184,148,46,0.3) !important;
}

.timeline-highlight .timeline-date {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: white;
}

/* Future Roadmap */
.roadmap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.roadmap-line {
    position: absolute;
    top: 110px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(to right, #2563eb 0%, #7c3aed 33%, #dc2626 66%, #b8942e 100%);
    opacity: 0.25;
    border-radius: 3px;
    z-index: 0;
}

.roadmap-step {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8eeea;
    border-radius: 20px;
    padding: 32px 22px 26px;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.roadmap-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: rgba(26,107,42,0.2);
}

.roadmap-step-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #e8eeea;
    letter-spacing: 2px;
}

.roadmap-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 4px solid #ffffff;
}

.roadmap-year {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 8px;
}

.roadmap-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.roadmap-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.roadmap-final {
    background: linear-gradient(135deg, #ffffff, #fdf9ef);
    border: 2px solid rgba(184,148,46,0.3);
    box-shadow: 0 10px 40px rgba(184,148,46,0.1);
}

.roadmap-final .roadmap-year {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-final-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(184,148,46,0.3);
}

@media (max-width: 1024px) {
    .roadmap { grid-template-columns: repeat(2, 1fr); }
    .roadmap-line { display: none; }
}

@media (max-width: 640px) {
    .roadmap { grid-template-columns: 1fr; }
    .roadmap-step { padding: 28px 20px 22px; }
    .roadmap-icon { width: 60px; height: 60px; font-size: 1.3rem; }
}

@media (max-width: 768px) {
    .timeline::before { left: 18px; transform: none; }
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: auto;
        margin-left: 50px !important;
        margin-right: 0 !important;
        padding: 16px 18px !important;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: -45px;
        right: auto;
        width: 36px; height: 36px;
        border-radius: 10px;
        font-size: 0.85rem;
    }
}

/* Board / Management */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.board-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.board-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.board-avatar {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font-display);
    margin: 0 auto 16px;
}

.board-card h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.board-card .role {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 48px; height: 48px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-map {
    width: 100%;
    height: 250px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Application Form
   ============================================ */
.application-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--gold);
}

/* ============================================
   News Cards
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(59,130,246,0.2);
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #eef3f0, #dfe8e2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-body {
    padding: 24px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.news-body h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Sponsors
   ============================================ */
.sponsors-track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.sponsors-wrapper {
    overflow: hidden;
    padding: 40px 0;
}

.sponsor-item {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    opacity: 0.6;
    transition: var(--transition);
}

.sponsor-item:hover { opacity: 1; }
.sponsor-item img { max-width: 100%; max-height: 100%; object-fit: contain; }

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

/* ============================================
   Alerts & Messages
   ============================================ */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: var(--success);
}

.alert-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: var(--danger);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #1a2e1f;
    color: #ffffff;
    padding-top: 0;
    position: relative;
}

.footer-wave-wrap {
    background: transparent;
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}

.footer .brand-name,
.footer .brand-sub,
.footer h4,
.footer a { color: #ffffff; }
.footer p, .footer li, .footer .footer-about p { color: #ffffff; }
.footer-contact li i { color: #4ade80; }
.footer-contact li a { color: #ffffff; }
.footer-contact li a:hover { color: #4ade80; }
.footer-links a { color: #ffffff; }
.footer-links a:hover { color: #4ade80; padding-left: 5px; }
.footer-bottom { color: #ffffff; border-top-color: rgba(255,255,255,0.15); }
.footer-social a { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); color: #fff; }
.footer-social a:hover { background: #4ade80; border-color: #4ade80; }
.footer h4::after, .footer-links h4::after, .footer-contact h4::after, .footer-newsletter h4::after { background: #4ade80; }
.footer .newsletter-form input { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); color: #fff; }
.footer .newsletter-form input:focus { border-color: #4ade80; }
.footer .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 60px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px; height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

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

.footer-links a {
    color: #ffffff;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #4ade80;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: #4ade80;
    margin-top: 4px;
}

.footer-contact li a {
    color: #ffffff;
    transition: var(--transition);
}

.footer-contact li a:hover { color: #4ade80; }

.footer-newsletter p {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }

.newsletter-form input:focus {
    border-color: #4ade80;
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--accent), #1a5c28);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--accent), #1a5c28);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 20px var(--accent-glow);
}

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

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 1rem;
}

/* ============================================
   404 Page
   ============================================ */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.page-404 h1 {
    font-family: var(--font-display);
    font-size: 8rem;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-404 p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin: 16px 0 32px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-container { grid-template-columns: 1fr; }
    .hero-visual-side { display: none; }
}

@media (max-width: 768px) {
    .navbar-toggle { display: flex; }

    .navbar-menu {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

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

    .nav-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 12px 32px;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        padding: 0 0 0 20px;
        min-width: auto;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu { display: block; }

    .nav-dropdown-menu a {
        font-size: 1rem !important;
        padding: 8px 24px !important;
        color: var(--text-muted) !important;
    }

    .hero-ticker { max-width: 100%; }
    .hero-scroll { display: none; }

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

    .fixture-team { justify-content: center; }
    .fixture-team.away { justify-content: center; text-align: center; }

    .form-row { grid-template-columns: 1fr; }

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

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

    .hero-buttons { flex-direction: column; }
    .btn { justify-content: center; }

    .section { padding: 60px 0; }
    .page-header { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .container { padding: 0 16px; }
}

/* ============================================
   Tayfa - Membership / Community
   ============================================ */
.tayfa-hero {
    background: linear-gradient(135deg, #1a6b2a, #0f4a1c);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: white;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.tayfa-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.tayfa-hero h2 { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 3px; position: relative; }
.tayfa-hero p { color: rgba(255,255,255,0.8); position: relative; }

.tayfa-leaderboard {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tayfa-member {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #e8eeea;
    border-radius: var(--radius);
    transition: var(--transition);
}

.tayfa-member:hover {
    box-shadow: 0 4px 20px rgba(26,107,42,0.08);
    transform: translateX(4px);
}

.tayfa-rank {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    flex-shrink: 0;
    color: white;
}

.tayfa-rank.gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tayfa-rank.silver { background: linear-gradient(135deg, #94a3b8, #64748b); }
.tayfa-rank.bronze { background: linear-gradient(135deg, #d97706, #b45309); }
.tayfa-rank.default { background: #e8eeea; color: var(--text-muted); }

.tayfa-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--accent), #1a5c28);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1rem;
    flex-shrink: 0;
}

.tayfa-member-info { flex: 1; }
.tayfa-member-info h4 { font-size: 0.95rem; color: var(--text); }
.tayfa-member-info span { font-size: 0.8rem; color: var(--text-muted); }

.tayfa-points {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.tayfa-points small {
    font-family: var(--font);
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
    text-align: right;
    letter-spacing: 0;
}

.tayfa-badge-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-kaptan { background: rgba(245,158,11,0.12); color: #d97706; }
.badge-veteran { background: rgba(139,92,246,0.12); color: #7c3aed; }
.badge-yeni { background: rgba(26,107,42,0.1); color: var(--accent); }
