/* ===========================================
   MATCH FOOT DIRECT - Design sombre sport
   =========================================== */

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

:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #1a2236;
    --bg-card-hover: #212d45;
    --border: #2a3550;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #e11d48;
    --accent-hover: #be123c;
    --accent-glow: rgba(225, 29, 72, 0.3);
    --green: #22c55e;
    --telegram: #0088cc;
    --telegram-hover: #006da3;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,0.3);
    --max-width: 1200px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--text-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Header --- */
.site-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 1rem;
}

.logo img { height: 32px; width: auto; }

.main-nav ul {
    display: flex;
    gap: 0.25rem;
}

.main-nav a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.main-nav a:hover, .main-nav a.active {
    background: var(--bg-card);
    color: var(--text-primary);
}

.btn-telegram-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--telegram);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-telegram-header:hover { background: var(--telegram-hover); }
.btn-telegram-header svg { flex-shrink: 0; }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* --- Breadcrumb --- */
.breadcrumb {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    font-size: 0.8125rem;
}

.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem; }
.breadcrumb li::after { content: '/'; margin: 0 0.5rem; color: var(--text-muted); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: var(--text-muted); }

/* --- Main --- */
.site-main { padding: 1.5rem 0 5rem; }

h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-primary); }

.seo-intro { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }

section { margin-bottom: 2.5rem; }

/* --- CTA Telegram Hero --- */
.cta-telegram-hero a,
.cta-telegram-match a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent) 0%, #9f1239 100%);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.cta-telegram-hero a:hover,
.cta-telegram-match a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--accent-glow);
}

.cta-telegram-hero { margin-bottom: 2rem; }
.cta-telegram-hero .members,
.cta-telegram-match .members {
    font-size: 0.8125rem;
    opacity: 0.8;
    font-weight: 400;
}

.cta-telegram-match {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
}

.cta-telegram-match a {
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    justify-content: flex-start;
    text-align: left;
}

.cta-telegram-match a div { flex: 1; }
.cta-telegram-match a div span { display: block; font-weight: 400; font-size: 0.875rem; opacity: 0.8; margin-top: 0.25rem; }

.cta-btn {
    background: #fff;
    color: var(--accent);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
}

.cta-members {
    text-align: center;
    padding: 0.75rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
    background: var(--bg-card);
}

.cta-telegram-inline a {
    display: block;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 1rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all 0.2s;
}

.cta-telegram-inline a:hover {
    background: var(--accent);
    color: #fff;
}

.cta-telegram-inline a strong { display: block; margin-top: 0.25rem; }

.cta-big a { font-size: 1.125rem; padding: 1.5rem 2rem; }

/* --- Live dot --- */
.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

/* --- Matches List --- */
.matches-list { display: flex; flex-direction: column; gap: 2px; }
.matches-count { margin-bottom: 1rem; color: var(--text-secondary); font-size: 0.9375rem; }

.league-group {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
}

.league-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.875rem;
}

.league-header img { border-radius: 4px; }
.league-header a:hover { color: var(--accent); }
.league-country { color: var(--text-muted); font-weight: 400; margin-left: auto; font-size: 0.8125rem; }

.match-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    transition: background 0.15s;
    border-bottom: 1px solid var(--border);
}

.match-card:last-child { border-bottom: none; }
.match-card:hover { background: var(--bg-card-hover); }
.match-card.compact { padding: 0.625rem 1rem; }

.match-time {
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.match-time .hour { display: block; font-weight: 700; font-size: 1rem; }
.match-time .date-short { display: block; font-size: 0.75rem; color: var(--text-muted); }
.match-time .countdown { display: block; font-size: 0.6875rem; color: var(--green); }

.match-teams { flex: 1; display: flex; flex-direction: column; gap: 0.375rem; }

.team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.team img { border-radius: 4px; flex-shrink: 0; }
.team.highlighted span { color: var(--accent); font-weight: 600; }

.match-cta { flex-shrink: 0; }

.live-badge {
    background: var(--accent);
    color: #fff;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.match-league-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.date-separator {
    padding: 0.625rem 1rem;
    background: var(--bg-secondary);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius) var(--radius) 0 0;
    margin-top: 1rem;
}

.date-separator:first-child { margin-top: 0; }

.round-header {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

/* --- Match Hero (page match) --- */
.match-hero {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.match-hero-league {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.match-hero-league a:hover { color: var(--accent); }

.match-hero-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.match-hero-team { text-align: center; flex: 1; max-width: 200px; }
.match-hero-team img { margin: 0 auto 0.75rem; }
.match-hero-team span { font-weight: 600; font-size: 1.125rem; }
.match-hero-team a:hover span { color: var(--accent); }

.match-hero-vs { text-align: center; flex-shrink: 0; }
.vs-text { display: block; font-size: 1.5rem; font-weight: 800; color: var(--text-muted); }
.vs-date { display: block; font-size: 0.8125rem; color: var(--text-secondary); margin-top: 0.5rem; }
.vs-time { display: block; font-size: 1.25rem; font-weight: 700; }
.vs-countdown { display: block; font-size: 0.8125rem; color: var(--green); margin-top: 0.25rem; }

.match-hero-venue {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --- Match Info --- */
.match-info { margin-bottom: 2rem; }
.match-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.info-item {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.info-label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.info-item a:hover { color: var(--accent); }

/* --- Team Hero --- */
.team-hero {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.team-hero-logo { border-radius: var(--radius); flex-shrink: 0; }
.team-meta { color: var(--text-secondary); font-size: 0.9375rem; margin-top: 0.25rem; }
.team-meta a:hover { color: var(--accent); }

/* --- Teams Grid --- */
.teams-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: all 0.15s;
}

.team-badge:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--accent);
}

.teams-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.15s;
    font-size: 0.875rem;
}

.team-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
}

.team-card img { border-radius: 4px; flex-shrink: 0; }

/* --- Leagues Grid --- */
.leagues-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.league-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.15s;
}

.league-card:hover { background: var(--bg-card-hover); border-color: var(--accent); }
.league-card img { border-radius: 4px; flex-shrink: 0; }

.league-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: background 0.15s;
}

.league-badge:hover { background: var(--bg-card-hover); }

.country-group { margin-bottom: 1rem; }
.country-group h3 a { color: var(--text-secondary); }
.country-group h3 a:hover { color: var(--accent); }

/* --- Countries Grid --- */
.countries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    transition: all 0.15s;
}

.country-badge:hover { background: var(--bg-card-hover); border-color: var(--accent); }
.country-badge .flag { font-size: 1.25rem; }

/* --- Hub Navigation --- */
.hub-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hub-link {
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.15s;
}

.hub-link:hover { background: var(--bg-card-hover); border-color: var(--accent); color: var(--accent); }

/* --- Why Telegram --- */
.why-telegram { background: var(--bg-card); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border); }
.why-telegram h2 { text-align: center; margin-bottom: 1.25rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.why-item { text-align: center; padding: 1rem; }
.why-item strong { display: block; color: var(--accent); font-size: 1rem; margin-bottom: 0.25rem; }
.why-item span { color: var(--text-secondary); font-size: 0.875rem; }

/* --- Focus states (accessibilite) --- */
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.cta-btn:focus-visible, .btn-primary:focus-visible, .btn-telegram-header:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* --- Pages statiques (legal, about, contact, privacy) --- */
.static-page { max-width: 800px; }
.static-page section { margin-bottom: 2.5rem; }
.static-page h2 { font-size: 1.25rem; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.static-page h3 { font-size: 1rem; color: var(--text-secondary); margin-top: 1.25rem; margin-bottom: 0.5rem; }
.static-page p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.75rem; }
.static-page ul { margin: 0.75rem 0; padding-left: 1.5rem; list-style: disc; }
.static-page ul li { color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.375rem; }
.static-page a { color: var(--accent); }
.static-page a:hover { text-decoration: underline; }
.static-page strong { color: var(--text-primary); }
.static-cta { margin: 1.5rem 0; text-align: center; }
.feature-list { list-style: none; padding-left: 0; }
.feature-list li { padding: 0.75rem; margin-bottom: 0.5rem; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); }
.legal-page section { background: var(--bg-card); padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.legal-page section h2 { border-bottom: none; padding-bottom: 0; }

/* --- Cookie Banner --- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--bg-secondary); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.4); }
.cookie-content { max-width: var(--max-width); margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1.5rem; }
.cookie-content p { flex: 1; font-size: 0.8125rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.cookie-content a { color: var(--accent); }
.cookie-btn { background: var(--accent); color: #fff; border: none; padding: 0.625rem 1.5rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.cookie-btn:hover { background: var(--accent-hover); }

/* --- 404 --- */
.page-404 { text-align: center; padding: 4rem 0; }
.page-404 p { color: var(--text-secondary); margin-bottom: 2rem; }
.page-404-links { display: flex; gap: 1rem; justify-content: center; }

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-secondary {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.15s;
}

.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.section-empty { text-align: center; padding: 3rem; color: var(--text-muted); }

/* --- Footer --- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col h3 {
    color: var(--text-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.footer-col h3:first-child { margin-top: 0; }

.footer-col ul { display: flex; flex-direction: column; gap: 0.375rem; }

.footer-col a {
    color: var(--text-muted);
    font-size: 0.8125rem;
    transition: color 0.15s;
}

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

.btn-telegram-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    background: var(--telegram);
    color: #fff;
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.btn-telegram-footer:hover { background: var(--telegram-hover); color: #fff; }
.btn-telegram-footer span { font-size: 0.75rem; opacity: 0.8; font-weight: 400; }
.btn-telegram-footer svg { margin-bottom: 0.25rem; }

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* --- Sticky Telegram (mobile) --- */
.sticky-telegram {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: none;
}

.sticky-telegram a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #fff;
    padding: 0.875rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .main-nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 1rem; z-index: 99; }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; }
    .main-nav a { padding: 0.75rem 1rem; }
    .mobile-menu-toggle { display: flex; }
    .btn-telegram-header span { display: none; }

    h1 { font-size: 1.375rem; }
    h2 { font-size: 1.125rem; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .match-hero-teams { gap: 1rem; }
    .match-hero-team img { width: 56px; height: 56px; }
    .match-hero-team span { font-size: 0.9375rem; }
    .match-hero { padding: 1.5rem 1rem; }

    .teams-grid-large { grid-template-columns: repeat(2, 1fr); }
    .leagues-list { grid-template-columns: 1fr; }

    .sticky-telegram { display: block; }
    .site-main { padding-bottom: 4rem; }
    .cookie-content { flex-direction: column; gap: 0.75rem; text-align: center; }
    .legal-page section { padding: 1rem; }

    .cta-telegram-match a { flex-wrap: wrap; }
    .cta-btn { width: 100%; text-align: center; margin-top: 0.5rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .match-hero-teams { flex-direction: column; gap: 0.5rem; }
    .match-hero-vs { order: -1; }
    .vs-text { font-size: 1rem; }
    .teams-grid-large { grid-template-columns: 1fr; }
    .hub-links { flex-direction: column; }
    .page-404-links { flex-direction: column; }
    .fake-player-team img { width: 36px; height: 36px; }
    .fake-player-vs { font-size: 1rem; }
    .fake-player-teams { gap: 0.75rem; }
}

/* ======================================
   FAKE VIDEO PLAYER
   ====================================== */
.fake-player { margin-bottom: 1.5rem; }

.fake-player-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    cursor: pointer;
}

.fake-player-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.fake-player-live {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #e11d48;
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.fake-player-live .live-dot { width: 8px; height: 8px; }

.fake-player-league {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
}

.fake-player-league img { border-radius: 3px; }

.fake-player-teams {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.fake-player-team {
    text-align: center;
    color: #fff;
}

.fake-player-team img {
    margin: 0 auto 0.5rem;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.fake-player-team span {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.fake-player-vs {
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    font-weight: 800;
}

.fake-player-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e11d48;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(225,29,72,0.3);
    margin-top: 0.5rem;
}

.fake-player-play:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(225,29,72,0.4);
}

.fake-player-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.75rem;
}

.fake-player-bar-progress {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.fake-player-bar-progress::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 30%;
    background: #e11d48;
    border-radius: 2px;
}

.fake-player-bar-time {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.fake-player-bar-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}

/* Loading state */
.fake-player-loading {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 3;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #fff;
}

.fake-player-loading.active { display: flex; }

.fake-player-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: #e11d48;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.fake-player-loading p {
    font-size: 0.9375rem;
    color: #94a3b8;
}

/* ======================================
   MODAL TELEGRAM
   ====================================== */
.modal-telegram-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-telegram-overlay.active { display: flex; }

.modal-telegram {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
}

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

.modal-telegram-icon { margin-bottom: 1rem; }

.modal-telegram h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.modal-telegram p {
    color: #94a3b8;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-telegram-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #0088cc;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(0,136,204,0.3);
}

.modal-telegram-cta:hover {
    background: #006da3;
    transform: translateY(-2px);
    color: #fff;
}

.modal-telegram-members {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .fake-player-team img { width: 48px; height: 48px; }
    .fake-player-team span { font-size: 0.8125rem; }
    .fake-player-teams { gap: 1rem; }
    .fake-player-play { width: 56px; height: 56px; }
    .fake-player-play svg { width: 36px; height: 36px; }
    .fake-player-bar-label { display: none; }
    .modal-telegram { padding: 2rem 1.25rem; }
}
