/* ============================================================
   SPORTBET WordPress Theme - Main Stylesheet
   Stadium / Sports Betting Theme
   Colors: Grass Green (#2E7D32→#388E3C) + White + Dark Gray
   ============================================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: #388E3C; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #4CAF50; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Oswald', sans-serif; }

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

/* === Stadium Glow Text === */
.stadium-glow-text {
    color: #4CAF50;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.5), 0 0 16px rgba(76, 175, 80, 0.3);
}

/* === Section Title === */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 30px 0 20px;
    letter-spacing: 2px;
}
.section-title i {
    margin-right: 10px;
    font-size: 22px;
}

/* === Header === */
.site-header {
    background: linear-gradient(180deg, #0d1f0d 0%, #1a1a1a 100%);
    border-bottom: 3px solid #2E7D32;
    position: relative;
    z-index: 100;
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}
.logo img {
    height: 50px;
    width: auto;
}
.header-time {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #4CAF50;
    background: rgba(46, 125, 50, 0.15);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}
.header-btn-group {
    display: flex;
    gap: 10px;
}
.btn-login {
    font-family: 'Oswald', sans-serif;
    padding: 10px 20px;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-login:hover {
    background: #4CAF50;
    color: #fff;
}
.btn-register {
    font-family: 'Oswald', sans-serif;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-register:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    color: #fff;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}
.btn-demo {
    font-family: 'Oswald', sans-serif;
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-demo:hover {
    background: #fff;
    color: #1a1a1a;
}

/* === Navigation === */
.main-navigation {
    background: linear-gradient(90deg, #0a1a0a, #0d260d, #0a1a0a);
    border-top: 1px solid rgba(76, 175, 80, 0.2);
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}
.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}
.nav-item { position: relative; }
.nav-link {
    display: block;
    padding: 14px 14px;
    color: #c0c0c0;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
}
.nav-link:hover, .nav-item.current-menu-item .nav-link {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}
.nav-link i {
    margin-right: 5px;
    font-size: 12px;
    color: #4CAF50;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #4CAF50;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === Notification Bar === */
.notification-bar {
    background: linear-gradient(90deg, #1b5e20, #2E7D32, #1b5e20);
    overflow: hidden;
    padding: 8px 0;
}
.notification-content {
    display: flex;
    gap: 60px;
    animation: scrollNotification 30s linear infinite;
    white-space: nowrap;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}
@keyframes scrollNotification {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* === Announcement Modal === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.announcement-modal.active {
    display: flex;
}
.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0d1f0d, #1a2e1a);
    border: 2px solid #2E7D32;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 40px rgba(46, 125, 50, 0.4);
}
.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #4CAF50;
    font-size: 28px;
    cursor: pointer;
    z-index: 1;
}
.announcement-header-icon {
    text-align: center;
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 15px;
}
.announcement-title {
    font-family: 'Oswald', sans-serif;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 6px;
    color: #e0e0e0;
    transition: all 0.3s;
}
.announcement-item:hover {
    background: rgba(46, 125, 50, 0.2);
    border-color: #4CAF50;
    color: #fff;
}
.announcement-badge {
    font-family: 'Oswald', sans-serif;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.announcement-badge.hot { background: #d32f2f; color: #fff; }
.announcement-badge.new { background: #2E7D32; color: #fff; }
.announcement-badge.info { background: #1565C0; color: #fff; }
.announcement-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}
.announcement-item i.fa-chevron-right {
    color: #4CAF50;
    font-size: 11px;
    flex-shrink: 0;
}
.announcement-footer { text-align: center; }
.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s;
}
.announcement-cta:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    color: #fff;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

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

/* === Stadium Hero Section === */
.stadium-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1a0a 0%, #0d260d 40%, #1b5e20 70%, #2E7D32 100%);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.stadium-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(76, 175, 80, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(46, 125, 50, 0.1) 0%, transparent 60%),
        repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(76, 175, 80, 0.05) 98px, rgba(76, 175, 80, 0.05) 100px);
}
.stadium-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px;
}
.hero-scoreboard {
    max-width: 800px;
}
.scoreboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.scoreboard-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #4CAF50;
    letter-spacing: 3px;
}
.scoreboard-live-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #fff;
    background: rgba(211, 47, 47, 0.2);
    border: 1px solid rgba(211, 47, 47, 0.5);
    padding: 6px 14px;
    border-radius: 20px;
}
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #d32f2f;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(211, 47, 47, 0); }
}
.scoreboard-main { margin-bottom: 25px; }
.scoreboard-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5), 0 2px 4px rgba(0,0,0,0.5);
}
.scoreboard-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #a5d6a7;
    letter-spacing: 3px;
    margin-top: 10px;
}
.scoreboard-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}
.stat-label {
    font-size: 12px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-stadium-primary {
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
}
.btn-stadium-primary:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    color: #fff;
    box-shadow: 0 0 25px rgba(76, 175, 80, 0.5);
    transform: translateY(-2px);
}
.btn-stadium-secondary {
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #4CAF50;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 6px;
    border: 2px solid #4CAF50;
    transition: all 0.3s;
    text-transform: uppercase;
}
.btn-stadium-secondary:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #fff;
    border-color: #4CAF50;
    transform: translateY(-2px);
}

/* === LED Scoreboard Section === */
.stadium-scoreboard-section {
    margin-bottom: 20px;
}
.led-scoreboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.scoreboard-match {
    background: #0a1a0a;
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}
.scoreboard-match:hover {
    border-color: #4CAF50;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.2);
}
.match-league {
    background: rgba(46, 125, 50, 0.15);
    padding: 6px 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    color: #a5d6a7;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}
.match-league i {
    margin-right: 5px;
    font-size: 10px;
    color: #4CAF50;
}
.match-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    gap: 10px;
}
.match-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.away-team {
    flex-direction: row-reverse;
    text-align: right;
}
.team-logo-placeholder {
    width: 32px;
    height: 32px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.team-logo-placeholder i {
    font-size: 14px;
    color: #4CAF50;
}
.team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    color: #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.match-score {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    flex-direction: column;
}
.score-home, .score-away {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
    min-width: 28px;
    text-align: center;
}
.score-separator {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #666;
}
.match-score .score-home,
.match-score .score-away {
    display: inline;
}
.match-score {
    flex-direction: row;
    gap: 4px;
}
.match-time-live {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    color: #d32f2f;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}
.match-score {
    position: relative;
    padding-bottom: 18px;
}

/* === Live Matches Grid === */
.live-matches-section {
    margin-bottom: 20px;
}
.live-matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.live-match-card {
    background: #111;
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}
.live-match-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
    transform: translateY(-3px);
}
.match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    background: rgba(46, 125, 50, 0.1);
    border-bottom: 1px solid rgba(76, 175, 80, 0.15);
}
.live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #d32f2f;
    letter-spacing: 1px;
}
.match-minute {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    color: #4CAF50;
}
.match-card-body {
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.match-card-team {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.team-icon {
    width: 28px;
    height: 28px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-icon i {
    font-size: 12px;
    color: #4CAF50;
}
.match-card-team span {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #e0e0e0;
}
.match-card-score {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.4);
    letter-spacing: 4px;
}
.match-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(46, 125, 50, 0.05);
    border-top: 1px solid rgba(76, 175, 80, 0.15);
}
.match-card-footer span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}
.btn-bet {
    font-family: 'Oswald', sans-serif;
    padding: 6px 14px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-bet:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    color: #fff;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.4);
}

/* === Schedule Timeline === */
.schedule-timeline-section {
    margin-bottom: 20px;
}
.schedule-timeline {
    position: relative;
    padding: 20px 0;
}
.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #2E7D32, #388E3C, #2E7D32, transparent);
    transform: translateX(-50%);
}
.timeline-date-group {
    position: relative;
    margin-bottom: 40px;
}
.timeline-date-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 3px solid #0a1a0a;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
}
.date-day {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.date-month {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    color: #c8e6c9;
    letter-spacing: 1px;
}
.timeline-matches {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
    gap: 30px;
}
.timeline-match-item {
    flex: 1;
    background: #111;
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s;
}
.timeline-match-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
    transform: translateY(-2px);
}
.timeline-match-league {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(76, 175, 80, 0.15);
}
.timeline-match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.tl-team {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}
.tl-vs {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    color: #4CAF50;
    background: rgba(46, 125, 50, 0.2);
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 700;
}
.timeline-match-time {
    font-size: 13px;
    color: #a0a0a0;
}
.timeline-match-time i {
    margin-right: 5px;
    color: #4CAF50;
    font-size: 12px;
}

/* === Odds Comparison Table === */
.odds-table-section {
    margin-bottom: 20px;
}
.odds-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.25);
}
.odds-table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
}
.odds-table thead {
    background: linear-gradient(135deg, #1b5e20, #2E7D32);
}
.odds-table thead th {
    padding: 14px 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.odds-table thead th:first-child {
    text-align: left;
}
.odds-col {
    width: 100px;
}
.odds-table tbody tr {
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s;
}
.odds-table tbody tr:nth-child(even) {
    background: rgba(46, 125, 50, 0.05);
}
.odds-table tbody tr:hover {
    background: rgba(46, 125, 50, 0.12);
}
.match-cell {
    padding: 14px 16px;
    font-size: 14px;
    color: #e0e0e0;
    text-align: left;
}
.match-league-badge {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #2E7D32;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 8px;
    letter-spacing: 1px;
}
.odds-cell {
    padding: 14px 16px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #c0c0c0;
    transition: all 0.3s;
}
.odds-cell.best-odds {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.12);
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
    font-weight: 700;
}
.view-more-btn {
    display: block;
    text-align: center;
    margin: 20px auto 0;
    padding: 12px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s;
    width: fit-content;
}
.stadium-view-more {
    color: #4CAF50;
    border: 2px solid #4CAF50;
    background: transparent;
}
.stadium-view-more:hover {
    background: #4CAF50;
    color: #fff;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
}

/* === Featured Sports === */
.featured-sports-section {
    margin-bottom: 20px;
}
.featured-sports-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.sport-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: #111;
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
}
.sport-category-item:hover {
    border-color: #4CAF50;
    background: rgba(46, 125, 50, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}
.sport-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(76, 175, 80, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.sport-category-item:hover .sport-circle {
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    border-color: #4CAF50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}
.sport-circle i {
    font-size: 28px;
    color: #4CAF50;
    transition: color 0.3s;
}
.sport-category-item:hover .sport-circle i {
    color: #fff;
}
.sport-name {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sport-count {
    font-size: 12px;
    color: #4CAF50;
}

/* === Top Leagues Carousel === */
.top-leagues-section {
    margin-bottom: 20px;
}
.top-leagues-swiper {
    padding: 10px 0 40px;
}
.league-card {
    background: #111;
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.league-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
}
.league-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(76, 175, 80, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.league-badge i {
    font-size: 24px;
    color: #4CAF50;
}
.league-name {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.league-country {
    font-size: 12px;
    color: #888;
}

/* === Promotions Section === */
.promos-section {
    margin-bottom: 20px;
}
.promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.promo-card {
    background: linear-gradient(135deg, #111, #0d1f0d);
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}
.promo-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
    transform: translateY(-5px);
}
.promo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.promo-icon i {
    font-size: 28px;
    color: #fff;
}
.promo-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.promo-desc {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
}
.promo-btn {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    padding: 10px 28px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s;
}
.promo-btn:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    color: #fff;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
}

/* === News & CTA Section === */
.news-cta-section {
    margin-bottom: 20px;
}
.news-preview { margin-bottom: 30px; }
.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.home-news-placeholder {
    display: contents;
}
.article-card {
    display: block;
    background: #111;
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    color: #e0e0e0;
}
.article-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
    transform: translateY(-3px);
    color: #e0e0e0;
}
.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 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.4;
}
.article-card-title a { color: #e0e0e0; }
.article-card-title a:hover { color: #4CAF50; }
.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #888;
    display: flex;
    gap: 15px;
}
.article-card-meta i {
    margin-right: 4px;
    color: #4CAF50;
}
.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.5;
}
.article-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    color: #4CAF50;
    font-weight: 600;
    letter-spacing: 1px;
}
.article-card-more:hover { color: #81C784; }

/* === Final CTA === */
.final-cta {
    background: linear-gradient(135deg, #0a1a0a, #1b5e20, #0d260d);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.3);
}
.final-cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}
.final-cta-desc {
    font-size: 16px;
    color: #a5d6a7;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Footer === */
.site-footer {
    background: linear-gradient(180deg, #1a1a1a, #0d1f0d, #0a1a0a);
    border-top: 3px solid #2E7D32;
    padding: 50px 0 0;
    margin-top: 40px;
}
.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}
.footer-brand-logo {
    margin-bottom: 15px;
}
.footer-brand-logo img {
    height: 45px;
}
.footer-brand-text {
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 15px;
}
.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #d32f2f;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.footer-social-links {
    display: flex;
    gap: 10px;
}
.footer-social-links a {
    width: 38px;
    height: 38px;
    background: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    transition: all 0.3s;
}
.footer-social-links a:hover {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}
.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 13px;
    color: #a0a0a0;
    transition: all 0.3s;
}
.footer-col ul li a:hover {
    color: #4CAF50;
    padding-left: 5px;
}
.footer-license-bar {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}
.footer-license-bar h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.license-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.license-item i {
    font-size: 28px;
    color: #4CAF50;
}
.license-item span {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
}
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.footer-copyright {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.footer-disclaimer {
    font-size: 12px;
    color: #888;
}

/* === Floating Sidebar === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}
.sidebar-btn {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.sidebar-btn:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}
.sidebar-btn-facebook { background: linear-gradient(135deg, #1877F2, #42A5F5); }
.sidebar-btn-facebook:hover { background: linear-gradient(135deg, #42A5F5, #64B5F6); }
.sidebar-btn-telegram { background: linear-gradient(135deg, #0088cc, #29B6F6); }
.sidebar-btn-telegram:hover { background: linear-gradient(135deg, #29B6F6, #4FC3F7); }
.sidebar-label {
    display: none;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(76, 175, 80, 0.3);
}
.sidebar-btn:hover .sidebar-label { display: block; }

/* === Breadcrumb === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumb a { color: #4CAF50; }
.breadcrumb a:hover { color: #81C784; }
.breadcrumb span { color: #888; }

/* === Category Header === */
.category-header {
    background: linear-gradient(135deg, #0d1f0d, #1b5e20);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}
.category-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}
.category-desc {
    margin-top: 10px;
    font-size: 14px;
    color: #a5d6a7;
}

/* === Provider Tabs === */
.provider-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.provider-tab {
    font-family: 'Oswald', sans-serif;
    padding: 8px 18px;
    background: #111;
    color: #a0a0a0;
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.provider-tab:hover {
    border-color: #4CAF50;
    color: #4CAF50;
}
.provider-tab.active {
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    color: #fff;
    border-color: #2E7D32;
}

/* === Article Grid (blog) === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

/* === Pagination === */
.pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.pagination .nav-links {
    display: flex;
    gap: 5px;
}
.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #111;
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    transition: all 0.3s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    color: #fff;
    border-color: #2E7D32;
}

/* === Single Post === */
.single-article {
    background: #111;
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}
.article-header { margin-bottom: 25px; }
.article-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 15px;
}
.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #888;
}
.article-meta i {
    margin-right: 5px;
    color: #4CAF50;
}
.article-meta a { color: #4CAF50; }
.article-featured-img {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}
.article-featured-img img {
    width: 100%;
    height: auto;
}
.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: #c0c0c0;
}
.article-content h2, .article-content h3 {
    color: #fff;
    margin: 25px 0 15px;
}
.article-content p { margin-bottom: 15px; }
.article-content a { color: #4CAF50; }
.article-content a:hover { text-decoration: underline; }
.article-content img {
    border-radius: 8px;
    margin: 15px 0;
}
.article-content blockquote {
    border-left: 4px solid #2E7D32;
    padding: 15px 20px;
    background: rgba(46, 125, 50, 0.08);
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #a5d6a7;
}
.article-content ul, .article-content ol {
    padding-left: 25px;
    margin-bottom: 15px;
    list-style: disc;
}
.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(76, 175, 80, 0.15);
    margin-top: 25px;
}
.article-tags i { color: #4CAF50; }
.article-tags span {
    padding: 4px 12px;
    background: rgba(46, 125, 50, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: #4CAF50;
}
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(76, 175, 80, 0.15);
}
.article-nav a {
    color: #4CAF50;
    font-size: 14px;
}
.article-nav a:hover { color: #81C784; }

/* === Related Posts === */
.related-posts {
    margin-bottom: 30px;
}
.related-posts-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.related-item {
    display: block;
    background: #111;
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}
.related-item:hover {
    border-color: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
}
.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: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.4;
}

/* === Page Template === */
.page-article {
    background: #111;
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    padding: 30px;
}
.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.page-featured-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.page-content {
    font-size: 15px;
    line-height: 1.8;
    color: #c0c0c0;
}
.page-content p { margin-bottom: 15px; }
.page-content h2, .page-content h3 { color: #fff; margin: 20px 0 10px; }

/* === Keyframe Animations === */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(76, 175, 80, 0.5), 0 0 10px rgba(76, 175, 80, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(76, 175, 80, 0.8), 0 0 30px rgba(76, 175, 80, 0.5), 0 0 45px rgba(76, 175, 80, 0.3);
    }
}
@keyframes scoreFlash {
    0%, 100% { color: #4CAF50; }
    50% { color: #fff; text-shadow: 0 0 20px rgba(76, 175, 80, 0.8); }
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scoreboardGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(76, 175, 80, 0.4), 0 0 50px rgba(76, 175, 80, 0.1);
    }
}
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* === Animation Utility Classes === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-glow {
    animation: glow 2s ease-in-out infinite;
}
.animate-score-flash {
    animation: scoreFlash 1s ease-in-out infinite;
}
.animate-slide-up {
    animation: slideInUp 0.6s ease forwards;
}
.animate-slide-left {
    animation: slideInLeft 0.6s ease forwards;
}
.animate-slide-right {
    animation: slideInRight 0.6s ease forwards;
}
.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* === Swiper Customization === */
.swiper-pagination-bullet {
    background: #4CAF50;
    opacity: 0.4;
}
.swiper-pagination-bullet-active {
    background: #4CAF50;
    opacity: 1;
}
.swiper-button-next,
.swiper-button-prev {
    color: #4CAF50;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #81C784;
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: #2E7D32;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #388E3C;
}

/* === Selection === */
::selection {
    background: #2E7D32;
    color: #fff;
}

/* === Utility: LED Text Effect === */
.led-text {
    font-family: 'Oswald', monospace;
    color: #4CAF50;
    text-shadow: 
        0 0 5px rgba(76, 175, 80, 0.8),
        0 0 10px rgba(76, 175, 80, 0.6),
        0 0 20px rgba(76, 175, 80, 0.4),
        0 0 40px rgba(76, 175, 80, 0.2);
}

/* === Scoreboard Animation === */
.scoreboard-match.live-match {
    animation: scoreboardGlow 3s ease-in-out infinite;
}

/* === Stadium Field Lines Pattern === */
.stadium-field-pattern {
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(76, 175, 80, 0.03) 50px,
            rgba(76, 175, 80, 0.03) 52px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(76, 175, 80, 0.03) 50px,
            rgba(76, 175, 80, 0.03) 52px
        );
}

/* === Match Card Hover Effects === */
.live-match-card:nth-child(1) { animation-delay: 0.1s; }
.live-match-card:nth-child(2) { animation-delay: 0.2s; }
.live-match-card:nth-child(3) { animation-delay: 0.3s; }
.live-match-card:nth-child(4) { animation-delay: 0.4s; }
.live-match-card:nth-child(5) { animation-delay: 0.5s; }
.live-match-card:nth-child(6) { animation-delay: 0.6s; }

/* === Timeline Connector Lines === */
.timeline-match-item.left {
    animation: slideInLeft 0.6s ease forwards;
}
.timeline-match-item.right {
    animation: slideInRight 0.6s ease forwards;
}

/* === Odds Table Row Animation === */
.odds-table tbody tr {
    animation: fadeIn 0.4s ease forwards;
}
.odds-table tbody tr:nth-child(1) { animation-delay: 0.05s; }
.odds-table tbody tr:nth-child(2) { animation-delay: 0.1s; }
.odds-table tbody tr:nth-child(3) { animation-delay: 0.15s; }
.odds-table tbody tr:nth-child(4) { animation-delay: 0.2s; }
.odds-table tbody tr:nth-child(5) { animation-delay: 0.25s; }
.odds-table tbody tr:nth-child(6) { animation-delay: 0.3s; }
.odds-table tbody tr:nth-child(7) { animation-delay: 0.35s; }
.odds-table tbody tr:nth-child(8) { animation-delay: 0.4s; }

/* === Promo Card Gradient Borders === */
.promo-card:nth-child(1) {
    border-image: linear-gradient(135deg, #2E7D32, #4CAF50) 1;
    border-image-slice: 1;
}
.promo-card:nth-child(2) {
    border-image: linear-gradient(135deg, #1b5e20, #388E3C) 1;
    border-image-slice: 1;
}
.promo-card:nth-child(3) {
    border-image: linear-gradient(135deg, #388E3C, #66BB6A) 1;
    border-image-slice: 1;
}

/* === Sport Category Hover Ripple === */
.sport-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(76, 175, 80, 0.3);
    opacity: 0;
    transition: all 0.4s;
}
.sport-category-item:hover .sport-circle::after {
    opacity: 1;
    transform: scale(1.2);
}
.sport-circle {
    position: relative;
}

/* === Final CTA Background Pattern === */
.final-cta {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(46, 125, 50, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0a1a0a, #1b5e20, #0d260d);
}

/* === Header Active State === */
.nav-item.current-menu-item .nav-link {
    position: relative;
}
.nav-item.current-menu-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: #4CAF50;
    border-radius: 3px 3px 0 0;
}

/* === Score Update Flash === */
.score-updated {
    animation: scoreFlash 0.5s ease 3;
}

/* === Live Indicator Enhanced === */
.live-badge .live-dot {
    animation: pulse 1s infinite;
}

/* === Loading Skeleton === */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(76, 175, 80, 0.05) 0%,
        rgba(76, 175, 80, 0.1) 50%,
        rgba(76, 175, 80, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === Tooltip === */
[data-tooltip] {
    position: relative;
}
[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #0d1f0d;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid rgba(76, 175, 80, 0.3);
}
[data-tooltip]:hover::before {
    opacity: 1;
}

/* === Image Placeholder === */
.img-placeholder {
    background: linear-gradient(135deg, #111, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 40px;
}

/* === Focus States for Accessibility === */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* === Print Styles === */
@media print {
    .site-header, .floating-sidebar, .notification-bar,
    .announcement-modal, .site-footer { display: none; }
    body { background: #fff; color: #000; }
    .container { max-width: 100%; }
}
