/* ============================================================
   SCORE88 WordPress Theme - Main Stylesheet
   Color Scheme: Red (#E53935) + Black (#111) + White
   Font: Rajdhani (headings) + Roboto (body)
   ============================================================ */

/* === CSS Variables === */
:root {
    --score-red: #E53935;
    --score-red-dark: #C62828;
    --score-red-light: #FF5252;
    --score-black: #111111;
    --score-dark: #1a1a1a;
    --score-dark-2: #222222;
    --score-dark-3: #2a2a2a;
    --score-gray: #888888;
    --score-gray-light: #cccccc;
    --score-white: #ffffff;
    --score-blue: #1976D2;
    --score-green: #43A047;
    --score-gold: #FFB300;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--score-black);
    color: var(--score-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a { color: var(--score-white); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--score-red); }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* === Utility Classes === */
.score-red-text { color: var(--score-red); }
.score-gold-text { color: var(--score-gold); }

/* === Announcement Modal === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.announcement-modal.active { display: flex; }
.announcement-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
}
.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0a0a 100%);
    border: 2px solid var(--score-red);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.5s ease;
    box-shadow: 0 0 40px rgba(229,57,53,0.3);
}
.announcement-close {
    position: absolute;
    top: 10px; right: 15px;
    background: none; border: none;
    color: var(--score-white);
    font-size: 28px;
    cursor: pointer;
    z-index: 1;
}
.announcement-close:hover { color: var(--score-red); }
.announcement-header-icon {
    text-align: center;
    font-size: 36px;
    color: var(--score-red);
    margin-bottom: 10px;
}
.announcement-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--score-red);
}
.announcement-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(229,57,53,0.08);
    border-radius: 8px;
    border: 1px solid rgba(229,57,53,0.2);
    transition: all 0.3s;
}
.announcement-item:hover {
    background: rgba(229,57,53,0.15);
    border-color: var(--score-red);
    transform: translateX(5px);
}
.announcement-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.announcement-badge.hot { background: var(--score-red); color: #fff; }
.announcement-badge.new { background: var(--score-green); color: #fff; }
.announcement-badge.info { background: var(--score-blue); color: #fff; }
.announcement-text { font-size: 13px; flex: 1; }
.announcement-item i { color: var(--score-gray); font-size: 12px; }
.announcement-footer { text-align: center; }
.announcement-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--score-red);
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 16px;
    transition: all 0.3s;
}
.announcement-cta:hover { background: var(--score-red-dark); color: #fff; transform: scale(1.05); }

@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* === Live Ticker Top Bar === */
.live-ticker-top {
    background: var(--score-red);
    padding: 6px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.live-ticker-label {
    background: rgba(0,0,0,0.3);
    padding: 3px 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.live-dot {
    color: #fff;
    animation: liveDotPulse 1s infinite;
    font-size: 8px;
}
.live-ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.live-ticker-content {
    display: flex;
    gap: 30px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}
.ticker-score {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

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

@keyframes liveDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* === Site Header === */
.site-header {
    background: linear-gradient(180deg, var(--score-dark) 0%, var(--score-black) 100%);
    border-bottom: 2px solid var(--score-red);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo img {
    max-height: 50px;
    transition: transform 0.3s;
}
.logo img:hover { transform: scale(1.05); }

.header-time {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--score-gray-light);
    background: rgba(229,57,53,0.1);
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(229,57,53,0.3);
}

.header-btn-group {
    display: flex;
    gap: 8px;
}

.btn-login {
    padding: 8px 18px;
    border: 2px solid var(--score-red);
    color: var(--score-red);
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 14px;
    transition: all 0.3s;
    background: transparent;
}
.btn-login:hover { background: var(--score-red); color: #fff; }

.btn-register {
    padding: 8px 18px;
    background: var(--score-red);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 14px;
    border: 2px solid var(--score-red);
    transition: all 0.3s;
}
.btn-register:hover { background: var(--score-red-dark); border-color: var(--score-red-dark); color: #fff; }

.btn-demo {
    padding: 8px 18px;
    background: transparent;
    color: var(--score-gold);
    border: 2px solid var(--score-gold);
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 14px;
    transition: all 0.3s;
}
.btn-demo:hover { background: var(--score-gold); color: var(--score-black); }

/* === Main Navigation === */
.main-navigation {
    background: var(--score-dark-2);
    border-top: 1px solid var(--score-dark-3);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 12px;
    color: var(--score-white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--score-red);
    background: rgba(229,57,53,0.08);
    border-bottom-color: var(--score-red);
}
.nav-link i { font-size: 14px; color: var(--score-red); }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--score-white);
    font-size: 22px;
    cursor: pointer;
    padding: 10px;
}

/* Sub menu */
.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--score-dark-2);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    border: 1px solid var(--score-dark-3);
    z-index: 100;
    list-style: none;
}
.nav-item.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--score-white);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sub-menu li a:hover {
    background: rgba(229,57,53,0.1);
    color: var(--score-red);
}

/* === Notification Bar === */
.notification-bar {
    background: linear-gradient(90deg, var(--score-red-dark), var(--score-red), var(--score-red-dark));
    padding: 8px 0;
    overflow: hidden;
}
.notification-content {
    display: flex;
    gap: 50px;
    animation: notifScroll 25s linear infinite;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
}

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

/* === Hero Section === */
.score88-hero {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}
.hero-gradient-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--score-black) 0%, #2a0a0a 30%, var(--score-red-dark) 70%, var(--score-red) 100%);
    z-index: 0;
}
.hero-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(229,57,53,0.3) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(229,57,53,0.15) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-left { flex: 1; }
.hero-right { flex: 0 0 350px; }

.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229,57,53,0.2);
    border: 1px solid var(--score-red);
    padding: 5px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: liveBadgePulse 2s infinite;
}
.live-dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--score-red);
    border-radius: 50%;
    animation: liveDotPulse 1s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
}
.hero-brand { color: var(--score-white); }
.hero-tagline { color: var(--score-red-light); font-size: 36px; }

.hero-desc {
    font-size: 16px;
    color: var(--score-gray-light);
    margin-bottom: 15px;
    max-width: 500px;
}

.hero-date {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--score-gray);
    margin-bottom: 20px;
}

.hero-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}
.hero-stat {
    text-align: center;
}
.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--score-red);
}
.hero-stat-label {
    font-size: 12px;
    color: var(--score-gray);
}

.hero-cta { display: flex; gap: 12px; }

.btn-hero-primary {
    display: inline-block;
    padding: 14px 30px;
    background: var(--score-red);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(229,57,53,0.4);
}
.btn-hero-primary:hover { background: var(--score-red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229,57,53,0.6); }

.btn-hero-secondary {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid var(--score-red);
    color: var(--score-white);
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 16px;
    transition: all 0.3s;
    background: transparent;
}
.btn-hero-secondary:hover { background: rgba(229,57,53,0.1); color: var(--score-red); }

/* Hero Scoreboard */
.hero-scoreboard {
    background: var(--score-dark-2);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(229,57,53,0.3);
    box-shadow: 0 0 30px rgba(229,57,53,0.15);
}
.scoreboard-match {
    text-align: center;
}
.scoreboard-team {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
}
.team-crest {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--score-dark-3);
    border: 2px solid var(--score-gray);
}
.team-crest-a { border-color: var(--score-red); }
.team-crest-b { border-color: var(--score-blue); }
.scoreboard-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}
.score-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--score-red);
    text-shadow: 0 0 20px rgba(229,57,53,0.5);
}
.score-divider {
    font-size: 36px;
    color: var(--score-gray);
}
.scoreboard-time {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--score-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.live-indicator {
    background: var(--score-red);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    animation: liveBadgePulse 2s infinite;
}

@keyframes liveBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229,57,53,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(229,57,53,0); }
}

/* === Score Wall Section === */
.score-wall-section {
    padding: 40px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.section-title i { color: var(--score-red); }

.score-wall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.score-panel {
    background: var(--score-dark-2);
    border-radius: 10px;
    border: 1px solid var(--score-dark-3);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}
.score-panel:hover {
    border-color: var(--score-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(229,57,53,0.2);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(229,57,53,0.05);
    border-bottom: 1px solid var(--score-dark-3);
}
.panel-sport-icon {
    font-size: 14px;
    color: var(--score-red);
}
.panel-league {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--score-gray-light);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hot/Cold Badges */
.badge-hot {
    background: var(--score-red);
    color: #fff;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    animation: hotBadgePulse 1.5s infinite;
}
.badge-cold {
    background: var(--score-blue);
    color: #fff;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
}

@keyframes hotBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229,57,53,0.5); }
    50% { box-shadow: 0 0 0 4px rgba(229,57,53,0); }
}

.panel-body { padding: 10px 12px; }
.panel-team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}
.panel-team-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--score-white);
}
.panel-score {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--score-white);
}
.panel-score-big {
    font-size: 36px;
    color: var(--score-red);
    text-shadow: 0 0 10px rgba(229,57,53,0.4);
    animation: scorePulse 3s ease-in-out infinite;
}

@keyframes scorePulse {
    0%, 100% { text-shadow: 0 0 10px rgba(229,57,53,0.4); }
    50% { text-shadow: 0 0 20px rgba(229,57,53,0.8); }
}

.panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--score-dark-3);
}
.panel-time {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--score-gray);
    display: flex;
    align-items: center;
    gap: 4px;
}
.panel-status {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}
.status-live { background: var(--score-red); color: #fff; }
.status-finished { background: var(--score-gray); color: #fff; }

/* === Live Ticker Bar Section === */
.live-ticker-section {
    padding: 15px 0;
    overflow: hidden;
}
.live-ticker-bar-inner {
    display: flex;
    align-items: center;
    background: var(--score-dark-2);
    border-radius: 8px;
    border: 1px solid var(--score-dark-3);
    overflow: hidden;
}
.live-ticker-bar-label {
    background: var(--score-red);
    padding: 10px 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.live-ticker-bar-track {
    flex: 1;
    overflow: hidden;
    padding: 10px 0;
}
.live-ticker-bar-content {
    display: flex;
    gap: 20px;
    animation: tickerScroll 40s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    color: var(--score-gray-light);
}
.ticker-separator { color: var(--score-red); font-weight: 700; }

/* === Countdown Section === */
.countdown-section {
    padding: 40px 0;
}
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.countdown-card {
    background: var(--score-dark-2);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid var(--score-dark-3);
    transition: all 0.3s;
}
.countdown-card:hover {
    border-color: var(--score-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(229,57,53,0.15);
}
.countdown-league {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--score-red);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.countdown-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}
.countdown-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
}
.countdown-crest {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--score-dark-3);
    border: 2px solid var(--score-gray);
}
.countdown-crest-a { border-color: var(--score-red); }
.countdown-crest-b { border-color: var(--score-blue); }
.countdown-vs {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--score-red);
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
}
.timer-segment {
    text-align: center;
}
.timer-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--score-white);
    background: var(--score-dark-3);
    padding: 4px 8px;
    border-radius: 4px;
    min-width: 38px;
    border: 1px solid rgba(229,57,53,0.3);
    transition: color 0.3s;
}
.timer-value.tick { color: var(--score-red); }
.timer-label {
    display: block;
    font-size: 9px;
    color: var(--score-gray);
    margin-top: 3px;
    font-family: var(--font-heading);
}
.timer-colon {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--score-red);
    margin-bottom: 15px;
}

.btn-countdown {
    display: inline-block;
    padding: 8px 20px;
    background: var(--score-red);
    color: #fff;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}
.btn-countdown:hover { background: var(--score-red-dark); color: #fff; }

@keyframes countdownTick {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* === Hot Matches Section === */
.hot-matches-section {
    padding: 40px 0;
}
.hot-matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hot-match-card {
    background: var(--score-dark-2);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--score-dark-3);
    transition: all 0.3s;
}
.hot-match-card:hover {
    border-color: var(--score-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(229,57,53,0.2);
}
.hot-match-league {
    padding: 10px 15px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    background: rgba(229,57,53,0.08);
    border-bottom: 1px solid var(--score-dark-3);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hot-match-league i { color: var(--score-red); }
.hot-match-body {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.hot-match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}
.hot-team-crest {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--score-dark-3);
    border: 2px solid var(--score-gray);
}
.hot-team-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
.hot-team-form {
    display: flex;
    gap: 3px;
}
.hot-team-form span {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}
.form-w { background: var(--score-green); color: #fff; }
.form-d { background: var(--score-gold); color: #000; }
.form-l { background: var(--score-red); color: #fff; }

.hot-match-score {
    text-align: center;
    flex-shrink: 0;
}
.hot-score-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--score-red);
}
.hot-score-divider {
    font-size: 24px;
    color: var(--score-gray);
    margin: 0 5px;
}
.hot-match-minute {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--score-gray-light);
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hot-match-stats {
    padding: 12px 15px;
    border-top: 1px solid var(--score-dark-3);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hot-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.hot-stat-val {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--score-white);
}
.hot-stat-label {
    font-size: 11px;
    color: var(--score-gray);
}

.btn-hot-match {
    display: block;
    text-align: center;
    padding: 10px;
    background: rgba(229,57,53,0.1);
    color: var(--score-red);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}
.btn-hot-match:hover { background: var(--score-red); color: #fff; }

/* === Sport Categories Section === */
.sport-cats-section {
    padding: 40px 0;
}
.sport-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.sport-cat-item {
    background: var(--score-dark-2);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid var(--score-dark-3);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.sport-cat-item:hover {
    border-color: var(--score-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(229,57,53,0.15);
}
.sport-cat-icon {
    font-size: 36px;
    color: var(--score-red);
    margin-bottom: 5px;
}
.sport-cat-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}
.sport-cat-count {
    font-size: 12px;
    color: var(--score-gray);
}

/* === Promotions Section === */
.score88-promos {
    padding: 40px 0;
}
.promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.promo-card {
    background: var(--score-dark-2);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--score-dark-3);
    position: relative;
    transition: all 0.3s;
}
.promo-card:hover {
    border-color: var(--score-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(229,57,53,0.2);
}
.promo-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--score-red);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}
.promo-badge-new { background: var(--score-green); }
.promo-badge-vip { background: var(--score-gold); color: #000; }
.promo-content { padding: 25px 20px; }
.promo-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--score-red);
}
.promo-desc {
    font-size: 14px;
    color: var(--score-gray-light);
    margin-bottom: 15px;
    line-height: 1.6;
}
.promo-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
    font-size: 13px;
}
.promo-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--score-gray-light);
}
.promo-details i { color: var(--score-green); }
.btn-promo {
    display: inline-block;
    padding: 10px 24px;
    background: var(--score-red);
    color: #fff;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-promo:hover { background: var(--score-red-dark); color: #fff; }

/* === Footer CTA Section === */
.footer-cta-section {
    padding: 50px 0;
}
.footer-cta-inner {
    background: linear-gradient(135deg, var(--score-red-dark), var(--score-red), #ff6659);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
}
.footer-cta-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-cta-desc {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}
.footer-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}
.btn-cta-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    color: var(--score-red);
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 16px;
    transition: all 0.3s;
}
.btn-cta-primary:hover { background: var(--score-black); color: var(--score-red); transform: translateY(-2px); }
.btn-cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 16px;
    transition: all 0.3s;
    background: transparent;
}
.btn-cta-secondary:hover { background: #fff; color: var(--score-red); }
.footer-cta-trust {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-family: var(--font-heading);
    font-size: 14px;
    opacity: 0.9;
}
.footer-cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === News Section === */
.home-news-section {
    padding: 40px 0;
}
.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.article-card {
    background: var(--score-dark-2);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--score-dark-3);
    transition: all 0.3s;
    display: block;
}
.article-card:hover {
    border-color: var(--score-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(229,57,53,0.15);
}
.article-card-thumb {
    height: 180px;
    overflow: hidden;
}
.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.article-card:hover .article-card-thumb img { transform: scale(1.05); }

.article-card-title {
    padding: 12px 15px 5px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.article-card-title a { color: var(--score-white); }
.article-card-title a:hover { color: var(--score-red); }

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: var(--score-gray);
    display: flex;
    gap: 12px;
}
.article-card-meta i { color: var(--score-red); margin-right: 4px; }

.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: var(--score-gray-light);
    line-height: 1.5;
}

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    color: var(--score-red);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}
.article-card-more:hover { color: var(--score-red-light); }

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: 2px solid var(--score-red);
    color: var(--score-red);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}
.view-more-btn:hover { background: var(--score-red); color: #fff; }

/* === Content Area & Layout === */
.content-area {
    display: flex;
    gap: 25px;
    padding: 20px 0;
}
.main-content { flex: 1; min-width: 0; }

/* === Article Grid (index/category) === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* === Breadcrumb === */
.breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--score-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb a { color: var(--score-gray-light); }
.breadcrumb a:hover { color: var(--score-red); }
.breadcrumb span { color: var(--score-gray); }

/* === Category Header === */
.category-header {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--score-dark-2);
    border-radius: 12px;
    border: 1px solid var(--score-dark-3);
}
.category-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.category-title i { color: var(--score-red); }
.category-desc { color: var(--score-gray-light); font-size: 14px; margin-top: 8px; }

/* === Provider Tabs === */
.provider-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.provider-tab {
    padding: 8px 18px;
    background: var(--score-dark-2);
    border: 1px solid var(--score-dark-3);
    color: var(--score-gray-light);
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.provider-tab:hover { border-color: var(--score-red); color: var(--score-red); }
.provider-tab.active {
    background: var(--score-red);
    border-color: var(--score-red);
    color: #fff;
}

/* === Single Article === */
.single-article {
    background: var(--score-dark-2);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--score-dark-3);
    margin-bottom: 30px;
}
.article-header { margin-bottom: 20px; }
.article-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--score-gray);
}
.article-meta i { color: var(--score-red); margin-right: 4px; }
.article-meta a { color: var(--score-red); }

.article-featured-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}
.article-featured-img img { width: 100%; border-radius: 10px; }

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--score-gray-light);
}
.article-content h2, .article-content h3 {
    font-family: var(--font-heading);
    color: var(--score-white);
    margin: 20px 0 10px;
}
.article-content p { margin-bottom: 15px; }
.article-content img { border-radius: 8px; margin: 15px 0; }
.article-content a { color: var(--score-red); text-decoration: underline; }

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--score-dark-3);
}
.article-tags i { color: var(--score-red); }
.article-tags span {
    padding: 4px 12px;
    background: var(--score-dark-3);
    border-radius: 4px;
    font-size: 12px;
    color: var(--score-gray-light);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--score-dark-3);
}
.article-nav a {
    color: var(--score-red);
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.article-nav a:hover { color: var(--score-red-light); }

/* === Related Posts === */
.related-posts { margin-bottom: 30px; }
.related-posts-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.related-posts-title i { color: var(--score-red); }

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.related-item {
    background: var(--score-dark-2);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--score-dark-3);
    transition: all 0.3s;
    display: block;
}
.related-item:hover { border-color: var(--score-red); }
.related-item-thumb { height: 120px; overflow: hidden; }
.related-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-item-title {
    padding: 10px 12px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* === Page === */
.page-article {
    background: var(--score-dark-2);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--score-dark-3);
}
.page-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.page-featured-img { border-radius: 10px; overflow: hidden; margin-bottom: 20px; }
.page-featured-img img { width: 100%; border-radius: 10px; }
.page-content { font-size: 16px; line-height: 1.8; color: var(--score-gray-light); }
.page-content h2, .page-content h3 { font-family: var(--font-heading); color: var(--score-white); margin: 20px 0 10px; }
.page-content p { margin-bottom: 15px; }
.page-content a { color: var(--score-red); text-decoration: underline; }

/* === Pagination === */
.pagination { margin: 30px 0; text-align: center; }
.nav-links { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.nav-links a, .nav-links .current, .nav-links span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 14px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.nav-links a {
    background: var(--score-dark-2);
    border: 1px solid var(--score-dark-3);
    color: var(--score-gray-light);
}
.nav-links a:hover { border-color: var(--score-red); color: var(--score-red); }
.nav-links .current {
    background: var(--score-red);
    border: 1px solid var(--score-red);
    color: #fff;
}

/* === Floating Sidebar === */
.floating-sidebar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 999;
}
.sidebar-btn {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--score-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
}
.sidebar-btn:hover { background: var(--score-red-dark); color: #fff; transform: scale(1.1); }
.sidebar-btn-facebook { background: #1877f2; }
.sidebar-btn-telegram { background: #0088cc; }
.sidebar-label { display: none; }

/* === Footer === */
.site-footer {
    background: linear-gradient(180deg, var(--score-dark) 0%, var(--score-black) 100%);
    border-top: 3px solid var(--score-red);
    padding: 40px 0 20px;
}
.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--score-red);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--score-dark-3);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 14px;
    color: var(--score-gray-light);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-col ul li a::before { content: '›'; color: var(--score-red); }
.footer-col ul li a:hover { color: var(--score-red); transform: translateX(3px); }

.footer-brand-logo { margin-bottom: 12px; }
.footer-brand-logo img { max-height: 45px; }
.footer-brand-text { font-size: 13px; color: var(--score-gray-light); line-height: 1.6; margin-bottom: 12px; }
.footer-18plus {
    display: inline-block;
    padding: 3px 10px;
    border: 2px solid var(--score-red);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--score-red);
    margin-bottom: 12px;
}
.footer-social-links { display: flex; gap: 10px; }
.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--score-dark-3);
    color: var(--score-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}
.footer-social-links a:hover { background: var(--score-red); color: #fff; }

/* License Bar */
.footer-license-bar {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--score-dark-3);
    margin-bottom: 15px;
}
.footer-license-bar h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--score-gray);
    margin-bottom: 12px;
}
.license-icons { display: flex; justify-content: center; gap: 25px; }
.license-item { text-align: center; }
.license-item i { font-size: 28px; color: var(--score-red); display: block; margin-bottom: 5px; }
.license-item span { font-size: 12px; color: var(--score-gray); }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--score-dark-3);
    font-size: 13px;
    color: var(--score-gray);
}
.footer-copyright { font-family: var(--font-heading); }
.footer-disclaimer { font-size: 12px; }

/* === No Posts === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: var(--score-gray);
    font-size: 18px;
    grid-column: 1 / -1;
}

/* === Scroll Reveal === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Home News Placeholder === */
.home-news-placeholder {
    display: contents;
}
