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

:root {
    --primary: #0a1a0e;
    --primary-light: #0f2415;
    --primary-dark: #060f08;
    --accent: #2d7a3a;
    --accent-glow: rgba(45, 122, 58, 0.35);
    --gold: #c8a84e;
    --gold-glow: rgba(200, 168, 78, 0.3);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --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: var(--primary);
    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: var(--primary);
    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: 50px; height: 50px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: loaderBounce 0.6s infinite alternate cubic-bezier(0.6, 0, 0.4, 1);
    box-shadow: 0 0 30px var(--accent-glow);
}

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

@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(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

/* 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(--text);
    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, rgba(10,26,14,0.97) 0%, rgba(15,36,21,0.9) 40%, rgba(10,26,14,0.97) 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%, var(--accent-glow) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, var(--gold-glow) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(45,122,58,0.15) 0%, transparent 50%);
    z-index: 2;
}

.hero-grid-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 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(45,122,58,0.15);
    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(45,122,58,0.15); top: -10%; left: -5%; animation: orbPulse 8s ease-in-out infinite; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(200,168,78,0.1); bottom: -5%; right: 10%; animation: orbPulse 10s ease-in-out infinite 2s; }
.hero-orb-3 { width: 250px; height: 250px; background: rgba(45,122,58,0.1); 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(45,122,58,0.1);
    border: 1px solid rgba(45,122,58,0.25);
    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, #3da34d, #6dd58c, var(--gold));
    -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(45,122,58,0.15);
    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(200,168,78,0.1);
}

.logo-ring-3 {
    width: 400px; height: 400px;
    animation: ringRotate 40s linear infinite;
    border-style: dotted;
    border-color: rgba(255,255,255,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(10,26,14,0.8);
    border: 1px solid var(--glass-border);
    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 var(--glass-border);
    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: var(--primary-dark);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold);
    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: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--glass-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(59, 130, 246, 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(59, 130, 246, 0.2);
    transform: translateX(5px);
}

.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, var(--primary-light), var(--primary));
    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: var(--glass);
    border: 1px solid var(--glass-border);
    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: var(--text-muted);
}

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='%23ffffff80'%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;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 30% 50%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, var(--gold-glow) 0%, transparent 50%);
    opacity: 0.5;
}

.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, var(--primary-light), var(--primary));
    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 specific */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary), 0 0 0 6px var(--accent);
}

.timeline-date {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.timeline-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 8px 0;
}

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

/* 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, var(--primary-light), var(--primary));
    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: var(--primary-dark);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: var(--primary);
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.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: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-contact li a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-contact li a:hover { color: var(--accent); }

.footer-newsletter p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.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(10,14,39,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;
    }

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