/* ============================================
   LES AMIS BBC - MAIN STYLESHEET
   Modern Dark Basketball Theme
   ============================================ */

:root {
    --primary: hsl(28, 100%, 60%);
    --primary-dark: #e55a2b;
    --accent: #f7931e;
    --secondary: #1a1a2e;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #ffffff;
    --gray: #888888;
    --gray-dark: #333333;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a { color: var(--primary); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--accent); }

.text-accent { color: var(--primary) !important; }

/* ============================================
   NAVIGATION
   ============================================ */
#mainNav {
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon { font-size: 1.8rem; }

.brand-text { color: var(--light); letter-spacing: 2px; }
.brand-highlight { color: var(--primary); }

.navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    filter: drop-shadow(0 0 10px rgba(255,107,53,0.3));
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px !important;
    position: relative;
    color: var(--light) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--primary) !important; }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
    color: var(--light);
}

.btn-outline-light {
    border: 2px solid var(--light);
    color: var(--light);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--darker) 0%, var(--secondary) 50%, var(--dark) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,107,53,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.6) 100%);
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255,107,53,0.3);
}

.hero-title span { color: var(--primary); }

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--gray);
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: linear-gradient(135deg, var(--secondary), #0f0f23);
    padding: 60px 0;
    border-top: 1px solid rgba(255,107,53,0.1);
    border-bottom: 1px solid rgba(255,107,53,0.1);
}

.stat-item { padding: 20px; }

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

.stat-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section { padding: 80px 0; }

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

.section-subtitle {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--light);
    line-height: 1.2;
}

.section-title span { color: var(--primary); }

/* ============================================
   NEXT MATCH
   ============================================ */
.next-match-section { background: var(--darker); }

.next-match-card {
    background: linear-gradient(145deg, var(--secondary), #111);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,107,53,0.1);
    text-align: center;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.team { text-align: center; }

.team-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 15px;
    border: 3px solid rgba(255,107,53,0.2);
}

.team-logo img { width: 60px; height: 60px; object-fit: contain; }

.team-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--light);
}

.match-vs { text-align: center; }

.vs-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.match-time {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 10px;
}

.match-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 0.9rem;
}

.match-info i { color: var(--primary); margin-right: 5px; }

.match-type {
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   NEWS CARDS
   ============================================ */
.featured-news-section { background: var(--dark); }

.news-card {
    background: linear-gradient(145deg, var(--secondary), #111);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,107,53,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--secondary), var(--dark));
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--gray);
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more i { transition: transform 0.3s ease; }
.read-more:hover i { transform: translateX(5px); }

/* ============================================
   TEAM PREVIEW
   ============================================ */
.team-preview-section { background: linear-gradient(180deg, var(--dark) 0%, var(--secondary) 100%); }

.player-card {
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.player-card:hover { transform: translateY(-10px); }

.player-photo {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
}

.player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255,107,53,0.3);
    transition: all 0.3s ease;
}

.player-card:hover .player-photo img {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255,107,53,0.3);
}

.player-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    border: 3px solid rgba(255,107,53,0.3);
}

.player-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    border: 3px solid var(--dark);
}

.player-info h4 {
    font-size: 0.9rem;
    color: var(--light);
    margin-bottom: 2px;
}

.player-info h5 {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 5px;
}

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

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    position: relative;
}

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

.results-list { position: relative; z-index: 1; }

.result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    flex-wrap: wrap;
    gap: 15px;
}

.result-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,107,53,0.2);
}

.result-date {
    text-align: center;
    min-width: 60px;
}

.result-date .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.result-date .month {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.result-teams {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.result-teams .team-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray);
}

.result-teams .team-name.home { color: var(--light); }

.result-score {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.result-score .score.win { color: var(--success); }
.result-score .score.loss { color: var(--danger); }
.score-separator { color: var(--gray); font-size: 1rem; }

.result-type {
    background: rgba(255,255,255,0.05);
    color: var(--gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* ============================================
   SPONSORS
   ============================================ */
.sponsors-section { background: var(--dark); }

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.sponsor-item {
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.sponsor-item img { max-height: 60px; width: auto; }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--darker), var(--secondary));
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,107,53,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--gray);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-section { background: var(--dark); padding: 60px 0; }

.category-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.player-card-lg {
    display: block;
    background: linear-gradient(145deg, var(--secondary), #111);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.player-card-lg:hover {
    transform: translateY(-10px);
    border-color: rgba(255,107,53,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.player-photo-lg {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.player-photo-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.player-card-lg:hover .player-photo-lg img { transform: scale(1.1); }

.player-placeholder-lg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    background: linear-gradient(135deg, var(--secondary), var(--dark));
}

.player-number-lg {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    border: 3px solid var(--dark);
}

.player-info-lg { padding: 25px; }

.player-info-lg h3 {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 10px;
}

.player-info-lg h3 strong { color: var(--primary); }

.position-badge {
    display: inline-block;
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.player-stats-mini {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 0.85rem;
}

.player-stats-mini i { color: var(--primary); margin-right: 5px; }

/* Staff Card */
.staff-card {
    background: linear-gradient(145deg, var(--secondary), #111);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.staff-photo {
    height: 200px;
    overflow: hidden;
}

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

.staff-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    background: linear-gradient(135deg, var(--secondary), var(--dark));
}

.staff-info { padding: 20px; }

.staff-info h4 {
    font-size: 1rem;
    color: var(--light);
    margin-bottom: 5px;
}

.staff-role {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ============================================
   PLAYER DETAIL
   ============================================ */
.player-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--darker), var(--secondary));
}

.player-hero-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255,107,53,0.3);
    box-shadow: 0 0 60px rgba(255,107,53,0.2);
}

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

.player-hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    background: linear-gradient(135deg, var(--secondary), var(--dark));
}

.player-hero-info { padding: 20px 0; }

.player-number-display {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 10px 25px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.player-hero-info h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900  Continuing from where the CSS was cut off:

```css
    margin-bottom: 15px;
}

.player-position-display {
    display: inline-block;
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.player-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.detail-item {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.detail-label {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-value {
    display: block;
    color: var(--light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.player-stats-section {
    background: var(--dark);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: linear-gradient(145deg, var(--secondary), #111);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,107,53,0.2);
}

.stat-card .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-card .stat-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.player-bio-section {
    background: linear-gradient(180deg, var(--dark), var(--secondary));
    padding: 60px 0;
}

.bio-content {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    line-height: 1.8;
    color: #ccc;
}

.bio-content p { margin-bottom: 15px; }

.player-games-section {
    background: var(--dark);
    padding: 60px 0;
}

/* ============================================
   MATCHES PAGE
   ============================================ */
.matches-section { background: var(--dark); padding: 60px 0; }

.matches-category { margin-bottom: 40px; }

.match-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: linear-gradient(145deg, var(--secondary), #111);
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.match-row:hover {
    border-color: rgba(255,107,53,0.2);
    transform: translateX(10px);
}

.match-row.result:hover { transform: translateX(10px); }

.match-row-date {
    text-align: center;
    min-width: 70px;
}

.match-row-date .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.match-row-date .month {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-row-date .time {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 5px;
}

.match-row-teams {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.match-row-teams .team {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray);
}

.match-row-teams .team.home { color: var(--light); }

.match-row-teams .vs {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    font-size: 0.9rem;
}

.match-score {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.match-score.win { color: var(--success); }
.match-score.loss { color: var(--danger); }

.match-score .separator { color: var(--gray); font-size: 1rem; }

.match-row-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--gray);
    font-size: 0.85rem;
}

.match-row-info i { color: var(--primary); margin-right: 5px; }

.match-row-result {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.result-badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-badge.win { background: rgba(16,185,129,0.2); color: var(--success); }
.result-badge.loss { background: rgba(239,68,68,0.2); color: var(--danger); }
.result-badge.draw { background: rgba(245,158,11,0.2); color: var(--warning); }

/* ============================================
   MATCH DETAIL
   ============================================ */
.match-detail-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--darker), var(--secondary));
    text-align: center;
}

.match-detail-scoreboard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.scoreboard-team { text-align: center; }

.scoreboard-team h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
}

.team-logo-lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto;
    border: 4px solid rgba(255,107,53,0.2);
}

.team-logo-lg img { width: 80px; height: 80px; object-fit: contain; }

.scoreboard-score {
    text-align: center;
    padding: 30px 50px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.scoreboard-score.win { border-color: rgba(16,185,129,0.3); }
.scoreboard-score.loss { border-color: rgba(239,68,68,0.3); }

.score-main {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--light);
    line-height: 1;
}

.score-separator {
    display: block;
    color: var(--gray);
    font-size: 1.5rem;
    margin: 10px 0;
}

.result-label {
    display: block;
    margin-top: 15px;
    padding: 8px 25px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.result-label.win { background: rgba(16,185,129,0.2); color: var(--success); }
.result-label.loss { background: rgba(239,68,68,0.2); color: var(--danger); }

.match-detail-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    color: var(--gray);
}

.match-detail-info span { display: flex; align-items: center; gap: 8px; }
.match-detail-info i { color: var(--primary); }

.match-description-section {
    background: var(--dark);
    padding: 60px 0;
}

.match-description {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    line-height: 1.8;
    color: #ccc;
}

.match-stats-section {
    background: linear-gradient(180deg, var(--dark), var(--secondary));
    padding: 60px 0;
}

.stats-table {
    background: transparent !important;
    border-radius: 16px;
    overflow: hidden;
}

.stats-table thead th {
    background: var(--secondary) !important;
    color: var(--light) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 15px 20px !important;
    border-bottom: 2px solid var(--primary) !important;
}

.stats-table tbody td {
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.03) !important;
    vertical-align: middle;
}

.stats-table tbody tr:hover td {
    background: rgba(255,255,255,0.02) !important;
}

.player-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light) !important;
    font-weight: 600;
}

.player-jersey {
    background: var(--primary);
    color: var(--light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.match-highlights-section {
    background: var(--dark);
    padding: 60px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   NEWS ARTICLE
   ============================================ */
.news-article-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--darker), var(--secondary));
    text-align: center;
}

.news-article-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 0 0 30px 30px;
}

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

.news-article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 0.9rem;
}

.news-article-meta i { color: var(--primary); margin-right: 5px; }

.category-badge {
    background: var(--primary);
    color: var(--light);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-article-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
}

.news-article-content {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    line-height: 1.8;
    color: #ccc;
    font-size: 1.05rem;
}

.news-article-content p { margin-bottom: 20px; }
.news-article-content h2, .news-article-content h3 {
    color: var(--light);
    margin: 30px 0 15px;
}

.news-article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.lead {
    font-size: 1.3rem;
    color: var(--light);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
}

.news-article-share {
    margin-top: 40px;
    text-align: center;
}

.news-article-share h5 {
    color: var(--light);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-buttons .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.2rem;
}

.btn-facebook { background: #1877f2 !important; color: #fff !important; }
.btn-twitter { background: #1da1f2 !important; color: #fff !important; }
.btn-whatsapp { background: #25d366 !important; color: #fff !important; }
.btn-linkedin { background: #0a66c2 !important; color: #fff !important; }

.related-news-section {
    background: linear-gradient(180deg, var(--dark), var(--secondary));
    padding: 60px 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    background: var(--dark);
    padding: 60px 0;
}

.contact-info h2 {
    color: var(--light);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h5 {
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
    margin: 0;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, var(--secondary), #111);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-form-wrapper h2 {
    color: var(--light);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-form .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--light);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.contact-form .form-control:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
    color: var(--light);
}

.contact-form .form-control::placeholder { color: var(--gray); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
    background: var(--dark);
    padding: 60px 0;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    border-radius: 20px;
}

.about-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section { margin-top: 80px; }

.value-card {
    background: linear-gradient(145deg, var(--secondary), #111);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,107,53,0.2);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.value-card h4 {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    gap: 10px;
}

.page-link {
    background: var(--secondary);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
    border-radius: 8px !important;
    padding: 10px 20px;
    font-weight: 600;
}

.page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--darker), #000);
    border-top: 1px solid rgba(255,107,53,0.1);
}

.footer-top { padding: 80px 0 40px; }

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 20px;
}

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

.footer-desc {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    transition: all 0.3s ease;
}

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

.footer-contact li {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-sponsors {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-sponsors span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .match-detail-scoreboard { gap: 30px; }
    .score-main { font-size: 2.5rem; }
    .player-hero-photo { width: 200px; height: 200px; }
}

@media (max-width: 767px) {
    .hero-section { min-height: 600px; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .match-teams { gap: 20px; }
    .team-logo { width: 70px; height: 70px; font-size: 2rem; }
    .result-item { flex-direction: column; text-align: center; }
    .match-row { flex-direction: column; text-align: center; }
    .match-row-teams { flex-direction: column; gap: 10px; }
    .match-row-result { align-items: center; }
    .news-article-image { height: 250px; }
    .player-details { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .dashboard-section { padding-top: 100px; }
}

@media (max-width: 575px) {
    .player-details { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .match-detail-scoreboard { flex-direction: column; }
    .scoreboard-score { padding: 20px 40px; }
    .match-detail-info { flex-direction: column; gap: 10px; }
    .share-buttons { flex-wrap: wrap; }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gray-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Selection */
::selection {
    background: var(--primary);
    color: var(--light);
}

/* ============================================
   DONATE NAV BUTTON
   ============================================ */
.btn-donate-nav {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light) !important;
    padding: 10px 20px !important;
    border-radius: 8px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-donate-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
    color: var(--light) !important;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent 30%);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* ============================================
   NAVBAR DROPDOWN - Desktop & Mobile
   ============================================ */

/* ===== DESKTOP DROPDOWN ===== */
.dropdown-menu-dark {
    background: linear-gradient(145deg, #1a1a2e, #16213e) !important;
    border: 1px solid rgba(255,107,53,0.15) !important;
    border-radius: 16px !important;
    padding: 12px !important;
    min-width: 240px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,107,53,0.05) !important;
    margin-top: 10px !important;
    animation: dropdownFade 0.25s ease forwards;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Dropdown arrow pointer */
.dropdown-menu-dark::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 30px;
    width: 12px;
    height: 12px;
    background: #1a1a2e;
    border-left: 1px solid rgba(255,107,53,0.15);
    border-top: 1px solid rgba(255,107,53,0.15);
    transform: rotate(45deg);
}

/* Dropdown items */
.dropdown-menu-dark .dropdown-item {
    color: #ccc !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 18px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    min-height: 48px; /* Touch target */
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:active {
    background: rgba(255,107,53,0.12) !important;
    color: var(--primary) !important;
    transform: translateX(6px);
}

.dropdown-menu-dark .dropdown-item i {
    color: var(--primary);
    font-size: 0.95rem;
    width: 24px;
    text-align: center;
}

/* Divider */
.dropdown-menu-dark .dropdown-divider {
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin: 8px 12px !important;
    opacity: 1;
}

/* Dropdown toggle */
.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top-color: var(--light);
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.nav-link.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* Active parent when dropdown open */
.nav-item.dropdown .nav-link[aria-expanded="true"] {
    color: var(--primary) !important;
}

/* ===== MOBILE DROPDOWN (max-width: 991px) ===== */
@media (max-width: 991px) {
    /* Navbar collapse container */
    .navbar-collapse {
        background: linear-gradient(180deg, rgba(10,10,10,0.98), rgba(26,26,46,0.98));
        backdrop-filter: blur(20px);
        border-radius: 20px;
        margin-top: 15px;
        padding: 20px;
        border: 1px solid rgba(255,107,53,0.1);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--gray-dark) transparent;
    }

    .navbar-collapse::-webkit-scrollbar {
        width: 4px;
    }
    .navbar-collapse::-webkit-scrollbar-thumb {
        background: var(--gray-dark);
        border-radius: 4px;
    }

    /* Nav links in mobile */
    .navbar-nav {
        gap: 4px;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 14px 18px !important;
        border-radius: 12px;
        font-size: 1rem;
        min-height: 52px; /* Large touch target */
        display: flex;
        align-items: center;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(255,107,53,0.08);
    }

    .navbar-nav .nav-link::after {
        display: none !important; /* Remove underline on mobile */
    }

    /* Dropdown in mobile */
    .dropdown-menu-dark {
        position: static !important;
        transform: none !important;
        background: rgba(26,26,46,0.6) !important;
        border: 1px solid rgba(255,107,53,0.08) !important;
        box-shadow: none !important;
        margin: 8px 0 8px 15px !important;
        padding: 8px !important;
        min-width: auto !important;
        width: calc(100% - 15px) !important;
        border-radius: 12px !important;
        animation: none !important;
    }

    .dropdown-menu-dark::before {
        display: none;
    }

    .dropdown-menu-dark .dropdown-item {
        padding: 16px 18px !important;
        font-size: 0.9rem;
        min-height: 52px;
    }

    .dropdown-menu-dark .dropdown-item:hover {
        transform: translateX(4px);
    }

    .dropdown-menu-dark .dropdown-divider {
        margin: 6px 10px !important;
    }

    /* Dropdown toggle in mobile */
    .nav-link.dropdown-toggle {
        justify-content: space-between;
    }

    .nav-link.dropdown-toggle::after {
        margin-left: auto;
        font-size: 0.8rem;
    }

    /* Donate button in mobile */
    .btn-donate-nav {
        width: 100%;
        justify-content: center;
        padding: 14px !important;
        margin-top: 8px !important;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* ===== SMALL MOBILE (max-width: 575px) ===== */
@media (max-width: 575px) {
    .navbar-collapse {
        margin-top: 10px;
        padding: 15px;
        border-radius: 16px;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .dropdown-menu-dark .dropdown-item {
        padding: 14px 16px !important;
        font-size: 0.85rem;
    }

    .dropdown-menu-dark {
        margin-left: 10px !important;
        width: calc(100% - 10px) !important;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .dropdown-menu-dark .dropdown-item {
        padding: 16px 18px !important; /* Even larger touch targets */
    }

    .dropdown-menu-dark .dropdown-item:active {
        background: rgba(255,107,53,0.2) !important;
    }
}