/* ==========================================================================
   The World of Game (TWOG) - Modern Fantasy Sports Design System
   GEO Target: Spain | Primary: English | Secondary: Spanish
   Brand Entity: Cosmo Fame Limited
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #070B14;
    --bg-surface: #0E1626;
    --bg-card: rgba(18, 27, 45, 0.75);
    --bg-card-hover: rgba(26, 38, 62, 0.85);
    --bg-glass: rgba(14, 22, 38, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 230, 118, 0.3);

    /* Accents */
    --primary: #00E676;         /* Emerald Neon */
    --primary-glow: rgba(0, 230, 118, 0.4);
    --secondary: #00E5FF;       /* Cyan Neon */
    --secondary-glow: rgba(0, 229, 255, 0.3);
    --gold: #FFD700;            /* Trophy Gold */
    --gold-glow: rgba(255, 215, 0, 0.4);
    --danger: #FF5252;

    /* Text Colors */
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --text-heading: #FFFFFF;

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Rajdhani', sans-serif;

    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --container-max: 1240px;
    --header-height: 76px;
}

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

html {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, #111e33 0%, var(--bg-dark) 70%);
}

/* Accessibility: Keyboard Focus Outlines */
:focus-visible {
    outline: 3px solid var(--primary) !important;
    outline-offset: 4px !important;
    border-radius: 4px;
}

/* Skip Navigation Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--primary);
    color: #050B14;
    font-weight: 800;
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-heading);
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary) 60%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--gold);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-height: 44px; /* Accessible touch target height */
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00B0FF 100%);
    color: #050B14;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FF9100 100%);
    color: #050B14;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    min-height: 38px;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
}

.brand-logo img {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 12px var(--primary-glow);
}

.brand-logo span strong {
    color: var(--primary);
}

.nav-desktop {
    display: none;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    background: transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    min-height: 32px;
}

.lang-btn.active {
    background: var(--primary);
    color: #050B14;
    box-shadow: 0 2px 8px var(--primary-glow);
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
    z-index: 1001;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-surface);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 999;
    padding: 5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right var(--transition-normal);
    border-left: 1px solid var(--border-color);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
    color: var(--primary);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.drawer-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Ticker Bar */
.match-ticker {
    background: rgba(14, 22, 38, 0.9);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    overflow: hidden;
    font-size: 0.85rem;
}

.ticker-track {
    display: flex;
    gap: 2rem;
    animation: tickerScroll 35s linear infinite;
    white-space: nowrap;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-badge {
    background: var(--primary);
    color: #050B14;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Main Content Wrapper */
main {
    flex: 1;
}

/* Sections */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 5.5rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, rgba(7,11,20,0.6) 0%, var(--bg-dark) 100%), url('../images/hero-bg.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid var(--border-glow);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 2.4rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.6rem;
    }
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Glass Cards */
.card-glass {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    transition: all var(--transition-normal);
}

.card-glass:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Feature Cards */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-glow);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.925rem;
}

/* Sports / Game Cards */
.sport-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.sport-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 230, 118, 0.15);
}

.sport-card-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.sport-card-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 700 / 390;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sport-card:hover .sport-card-img {
    transform: scale(1.08);
}

.sport-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.sport-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sport-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.sport-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.sport-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.sport-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex: 1;
}

/* How It Works Steps */
.step-card {
    position: relative;
    padding: 2rem 1.5rem;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #050B14;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 16px var(--primary-glow);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.925rem;
}

/* ==========================================================================
   ACCORDION FAQ STYLING & MOBILE RESPONSIVENESS
   ========================================================================== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.accordion-item:hover {
    border-color: rgba(0, 230, 118, 0.3);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.15);
    background: rgba(22, 33, 54, 0.85);
}

.accordion-header {
    width: 100%;
    background: transparent;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    color: var(--text-heading);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.accordion-header span:first-child {
    flex: 1;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #050B14;
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 600px;
    padding: 0 1.5rem 1.25rem;
    opacity: 1;
}

/* Mobile Responsive Optimization for FAQ */
@media (max-width: 576px) {
    .accordion {
        gap: 0.75rem;
    }

    .accordion-header {
        padding: 1rem 1.15rem;
        font-size: 0.95rem;
        line-height: 1.4;
        gap: 0.85rem;
    }

    .accordion-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 1.1rem;
    }

    .accordion-content {
        font-size: 0.875rem;
        line-height: 1.55;
        padding: 0 1.15rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1.15rem 1.15rem;
    }
}

/* ==========================================================================
   ULTRA-PREMIUM SQUAD BUILDER WIDGET STYLING (FUT 3D REALISM)
   ========================================================================== */
.squad-builder-box {
    background: linear-gradient(135deg, rgba(14,22,38,0.95) 0%, rgba(7,11,20,0.98) 100%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    position: relative;
    overflow: hidden;
}

.squad-builder-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--gold) 100%);
}

.squad-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--border-color);
}

/* Realistic 3D Pitch Container */
.pitch-container {
    position: relative;
    background: radial-gradient(ellipse at center, #174229 0%, #0d2818 65%, #06140b 100%);
    border: 2px solid rgba(0, 230, 118, 0.4);
    border-radius: var(--radius-md);
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1rem;
    overflow: hidden;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Turf Pattern Stripes */
.pitch-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 40px,
        transparent 40px,
        transparent 80px
    );
    pointer-events: none;
}

/* Tactical Pitch Markings (SVG overlay) */
.pitch-markings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
}

.pitch-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 5;
    position: relative;
}

/* FUT Style Player Card Pin */
.player-card-fut {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.player-card-fut:hover {
    transform: translateY(-8px) scale(1.08);
}

.fut-card-shield {
    width: 68px;
    height: 92px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid var(--gold);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 12px var(--gold-glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 6px 4px;
    position: relative;
    overflow: hidden;
}

.fut-card-shield::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.15) 50%, transparent 55%);
    transform: rotate(30deg);
    pointer-events: none;
}

.fut-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 4px;
}

.fut-ovr {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.fut-pos {
    font-size: 0.65rem;
    font-weight: 800;
    background: var(--primary);
    color: #050B14;
    padding: 1px 4px;
    border-radius: 3px;
}

.fut-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, #334155 0%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #FFF;
    margin: 2px 0;
}

.fut-price {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    text-align: center;
    border-radius: 2px;
    padding: 1px 0;
}

.fut-player-name {
    margin-top: 6px;
    background: rgba(7, 11, 20, 0.95);
    border: 1px solid var(--border-glow);
    color: #FFF;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

/* Progress Budget Bar */
.budget-progress-wrap {
    width: 180px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 4px;
}

.budget-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 0 10px var(--primary-glow);
    transition: width 0.4s ease;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: border-color var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

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

/* Map Container */
#map-container {
    width: 100%;
    height: 340px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* Footer */
.footer {
    background: #04070D;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col-title {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
    font-size: 0.825rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

.footer-legal-notice {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Modal Popup */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    max-width: 540px;
    width: 100%;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.modal-close:hover {
    color: #FFF;
}
