/* ================================================ NARRADOR AO VIVO — Estilo editorial esportivo ================================================ */ :root { --bg: #0a0c10; --bg2: #12151c; --bg3: #1a1e28; --border: #252a38; --accent: #00e676; --accent2: #ff3d3d; --accent3: #ffd600; --home: #00b4d8; --away: #ff6b35; --text: #e8eaf0; --text-sub: #6b7280; --font-disp: 'Bebas Neue', sans-serif; --font-mono: 'IBM Plex Mono', monospace; --font-body: 'Inter', sans-serif; --radius: 10px; --shadow: 0 4px 24px rgba(0,0,0,.45); } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { background: var(--bg); color: var(--text); font-family: var(--font-body); min-height: 100vh; background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,230,118,.07), transparent), repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.015) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.015) 40px); } /* ── HEADER ── */ .site-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; border-bottom: 1px solid var(--border); background: rgba(10,12,16,.92); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100; } .logo { display: flex; align-items: center; gap: 10px; } .logo-ball { font-size: 1.6rem; } .logo-text { font-family: var(--font-disp); font-size: 1.5rem; letter-spacing: 3px; color: #fff; } .logo-text em { color: var(--accent); font-style: normal; } .live-indicator { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .72rem; color: var(--accent); letter-spacing: 2px; } .pulse-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 1.2s infinite; } @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } } /* ── MAIN ── */ main { max-width: 1100px; margin: 0 auto; padding: 40px 20px 60px; } /* ── SECTION SELECTOR ── */ .selector-section {} .section-title { font-family: var(--font-disp); font-size: 2.2rem; letter-spacing: 2px; color: #fff; margin-bottom: 6px; } .section-sub { color: var(--text-sub); margin-bottom: 28px; font-size: .9rem; } /* ── GAMES GRID ── */ .games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; } .game-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; cursor: pointer; transition: all .2s; position: relative; overflow: hidden; } .game-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,230,118,.06), transparent); opacity: 0; transition: opacity .2s; } .game-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); } .game-card:hover::before { opacity: 1; } .card-league { font-family: var(--font-mono); font-size: .7rem; color: var(--text-sub); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; } .card-league img { width: 16px; height: 16px; object-fit: contain; } .card-teams { display: flex; align-items: center; justify-content: space-between; gap: 8px; } .card-team { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; } .card-team img { width: 40px; height: 40px; object-fit: contain; } .card-team-name { font-size: .78rem; text-align: center; color: var(--text); font-weight: 500; } .card-score { text-align: center; font-family: var(--font-disp); font-size: 2.2rem; letter-spacing: 2px; color: #fff; line-height: 1; padding: 0 10px; } .card-score small { display: block; font-size: .7rem; font-family: var(--font-mono); color: var(--accent); letter-spacing: 1px; margin-top: 4px; } .status-live { color: var(--accent); } .status-ns { color: var(--text-sub); } .status-ft { color: var(--text-sub); } /* ── LOADING ── */ .loading-state { grid-column: 1/-1; display: flex; align-items: center; gap: 14px; padding: 40px; color: var(--text-sub); } .spinner { width: 24px; height: 24px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin .7s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } /* ── NO LIVE ── */ .no-live { text-align: center; padding: 60px 20px; grid-column: 1/-1; } .no-live-icon { font-size: 3rem; display: block; margin-bottom: 14px; } .no-live h3 { font-size: 1.3rem; margin-bottom: 8px; } .no-live p { color: var(--text-sub); margin-bottom: 20px; } /* ── BUTTONS ── */ .btn-secondary, .btn-back { background: transparent; border: 1px solid var(--border); color: var(--text); padding: 10px 20px; border-radius: 6px; cursor: pointer; font-family: var(--font-mono); font-size: .8rem; transition: all .15s; } .btn-secondary:hover, .btn-back:hover { border-color: var(--accent); color: var(--accent); } /* ── MATCH PANEL ── */ .match-panel {} .panel-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; } .panel-league { font-family: var(--font-mono); font-size: .8rem; color: var(--text-sub); flex: 1; } .status-badge { background: rgba(0,230,118,.12); border: 1px solid var(--accent); color: var(--accent); font-family: var(--font-mono); font-size: .7rem; padding: 4px 10px; border-radius: 4px; letter-spacing: 1px; } /* ── SCOREBOARD ── */ .scoreboard { display: flex; align-items: center; justify-content: space-between; background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 32px 24px; margin-bottom: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden; } .scoreboard::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--home), var(--accent), var(--away)); } .team { display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 1; } .team-logo { width: 72px; height: 72px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)); } .team-name { font-size: .95rem; font-weight: 700; text-align: center; max-width: 130px; } .home-team .team-name { color: var(--home); } .away-team .team-name { color: var(--away); } .score-center { text-align: center; flex-shrink: 0; } .score-display { display: flex; align-items: center; gap: 8px; font-family: var(--font-disp); font-size: 4.5rem; line-height: 1; color: #fff; } .score-sep { color: var(--border); font-size: 3rem; } .match-time { font-family: var(--font-mono); font-size: 1rem; color: var(--accent); margin-top: 8px; letter-spacing: 2px; } .last-update { font-family: var(--font-mono); font-size: .65rem; color: var(--text-sub); margin-top: 4px; } /* ── STATS CONTAINER ── */ .stats-container { display: grid; grid-template-columns: 1fr 300px; gap: 20px; margin-bottom: 28px; } @media (max-width: 780px) { .stats-container { grid-template-columns: 1fr; } } .stats-col, .chart-col { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; } .col-title { font-family: var(--font-mono); font-size: .8rem; color: var(--text-sub); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); } /* STAT ROWS */ .stat-row { margin-bottom: 18px; } .stat-label { font-size: .82rem; color: var(--text-sub); display: block; margin-bottom: 6px; } .stat-bar-wrap { height: 8px; background: var(--bg3); border-radius: 4px; overflow: hidden; display: flex; } .stat-bar-home { background: var(--home); height: 100%; transition: width .6s cubic-bezier(.4,0,.2,1); border-radius: 4px 0 0 4px; } .stat-bar-away { background: var(--away); height: 100%; transition: width .6s cubic-bezier(.4,0,.2,1); border-radius: 0 4px 4px 0; margin-left: auto; } .yellow-bar.stat-bar-home, .yellow-bar.stat-bar-away { background: var(--accent3); } .stat-values { display: flex; justify-content: space-between; margin-top: 5px; font-family: var(--font-mono); font-size: .78rem; color: var(--text); } /* CHART COL */ .chart-col { display: flex; flex-direction: column; align-items: center; } .chart-col canvas { max-width: 100%; } .chart-legend { display: flex; gap: 20px; margin-top: 10px; font-size: .78rem; } .legend-home::before { content: '■ '; color: var(--home); } .legend-away::before { content: '■ '; color: var(--away); } /* ── EVENTS ── */ .events-section { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; } .events-list { display: flex; flex-direction: column; gap: 2px; } .no-events { color: var(--text-sub); font-size: .88rem; padding: 20px 0; text-align: center; } .event-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 7px; background: var(--bg3); border-left: 3px solid transparent; animation: fadeIn .4s ease; } @keyframes fadeIn { from { opacity:0; transform:translateX(-8px); } to { opacity:1; transform:translateX(0); } } .event-item.goal { border-left-color: var(--accent); } .event-item.card-y { border-left-color: var(--accent3); } .event-item.card-r { border-left-color: var(--accent2); } .event-item.subst { border-left-color: var(--text-sub); } .event-time { font-family: var(--font-mono); font-size: .75rem; color: var(--text-sub); min-width: 32px; } .event-icon { font-size: 1.1rem; min-width: 22px; text-align: center; } .event-detail { flex: 1; } .event-player { font-weight: 600; font-size: .9rem; } .event-desc { font-size: .78rem; color: var(--text-sub); } .event-team-badge { font-family: var(--font-mono); font-size: .65rem; background: var(--bg); border: 1px solid var(--border); padding: 2px 7px; border-radius: 4px; color: var(--text-sub); } /* ── FOOTER ── */ .site-footer { text-align: center; padding: 24px; border-top: 1px solid var(--border); color: var(--text-sub); font-size: .78rem; } .site-footer a { color: var(--accent); text-decoration: none; } /* ── UTILS ── */ .hidden { display: none !important; }