/*
================================================================================
100TIP.COM - COMPREHENSIVE WEBSITE STYLESHEET
Football Predictions & Betting Tips Platform
================================================================================
Version: 2.0
Last Updated: January 2026
================================================================================
TABLE OF CONTENTS:
1. CSS Variables & Theme
2. Reset & Base Styles
3. Typography
4. Layout & Grid System
5. Header & Navigation
6. Hero Section
7. Prediction Tables
8. Match Cards
9. Jackpot Pages
10. Sidebar Components
11. Footer
12. Buttons & Forms
13. Badges & Pills
14. Alerts & Notifications
15. Loading States
16. Animations
17. Utility Classes
18. Responsive Breakpoints
================================================================================
*/

/* ============================================================================
   1. CSS VARIABLES & THEME
============================================================================ */
:root {
    /* Primary Colors */
    --primary: #fecc08;
    --primary-hover: #e5b800;
    --primary-dim: #c9a300;
    --primary-glow: rgba(254, 204, 8, 0.3);
    
    /* Secondary Colors */
    --accent: #00a54e;
    --accent-hover: #008f43;
    --accent-dim: #007a39;
    --accent-glow: rgba(0, 165, 78, 0.3);
    
    /* Background Colors */
    --bg-primary: #222630;
    --bg-secondary: #1a1d24;
    --bg-tertiary: #13161d;
    --bg-elevated: #2a2f3d;
    --bg-hover: #333a47;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8bcc8;
    --text-muted: #8a8f9d;
    --text-dim: #6b7080;
    
    /* Border Colors */
    --border-primary: #333a47;
    --border-secondary: #444c5c;
    --border-light: rgba(255, 255, 255, 0.1);
    
    /* Status Colors */
    --success: #00a54e;
    --success-soft: rgba(0, 165, 78, 0.15);
    --warning: #fecc08;
    --warning-soft: rgba(254, 204, 8, 0.15);
    --danger: #dc3545;
    --danger-soft: rgba(220, 53, 69, 0.15);
    --info: #17a2b8;
    --info-soft: rgba(23, 162, 184, 0.15);
    
    /* Odds Colors */
    --odd-home: #3498db;
    --odd-draw: #9b59b6;
    --odd-away: #e74c3c;
    
    /* Results Colors */
    --win: #00a54e;
    --loss: #dc3545;
    --draw: #fecc08;
    --pending: #6b7080;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 20px var(--primary-glow);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50px;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    
    /* Typography */
    --font-primary: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Roboto Condensed', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}


/* ============================================================================
   2. RESET & BASE STYLES
============================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}


/* ============================================================================
   3. TYPOGRAPHY
============================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.main-title {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    margin: var(--space-lg) 0 var(--space-md) 0;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border-primary);
}

.section-title {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.entry-title a {
    color: var(--accent);
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--primary);
}


/* ============================================================================
   4. LAYOUT & GRID SYSTEM
============================================================================ */
.grid-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.site-content {
    padding: var(--space-lg) 0;
}

.content-area {
    width: 100%;
}

/* Main Content Layout */
.container {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
}

.center {
    flex: 1;
    min-width: 0;
}

.left-sidebar,
.right-sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* Panel/Card Base */
.panel,
.card,
.widget {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.panel-header,
.card-header,
.widget-title {
    background: var(--bg-tertiary);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-primary);
    font-weight: 700;
    color: var(--text-primary);
}

.panel-body,
.card-body {
    padding: var(--space-lg);
}


/* ============================================================================
   5. HEADER & NAVIGATION
============================================================================ */
.site-header {
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-primary);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

/* Top Bar */
.top-bar {
    background: var(--bg-tertiary);
    padding: var(--space-sm) 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-primary);
}

.top-bar a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.top-bar a:hover {
    color: var(--primary);
}

/* Main Navigation */
.main-navigation {
    background: var(--bg-secondary);
}

.main-navigation .inside-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-lg);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.main-nav ul li a {
    display: block;
    padding: var(--space-md) var(--space-lg);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Dropdown Menu */
.main-nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: var(--z-dropdown);
}

.main-nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav ul ul li a {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
    border-bottom: none;
    border-left: 3px solid transparent;
}

.main-nav ul ul li a:hover {
    background: var(--bg-hover);
    border-left-color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: var(--space-sm);
    cursor: pointer;
}

/* Logo */
.site-branding {
    padding: var(--space-md) 0;
}

.site-branding img {
    height: 40px;
    width: auto;
}

/* League Selector */
.league-selector {
    position: relative;
}

.league-selector select {
    appearance: none;
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-xl) var(--space-sm) var(--space-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.league-selector select:hover,
.league-selector select:focus {
    border-color: var(--primary);
    outline: none;
}


/* ============================================================================
   6. HERO SECTION
============================================================================ */
.hero {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.hero h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}


/* ============================================================================
   7. PREDICTION TABLES
============================================================================ */
.predictions-table {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-primary);
    margin-bottom: var(--space-lg);
}

.predictions-table table {
    width: 100%;
}

.predictions-table thead {
    background: var(--bg-tertiary);
}

.predictions-table thead th {
    padding: var(--space-md) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-align: center;
    border-bottom: 2px solid var(--border-primary);
}

.predictions-table tbody tr {
    border-bottom: 1px solid var(--border-primary);
    transition: background var(--transition-fast);
}

.predictions-table tbody tr:hover {
    background: var(--bg-hover);
}

.predictions-table tbody tr:last-child {
    border-bottom: none;
}

.predictions-table tbody td {
    padding: var(--space-md) var(--space-sm);
    text-align: center;
    vertical-align: middle;
    font-size: 0.9rem;
}

/* Table Columns */
.predictions-table .col-time {
    width: 70px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.predictions-table .col-match {
    text-align: left;
    padding-left: var(--space-md);
}

.predictions-table .col-odds {
    width: 60px;
}

.predictions-table .col-tip {
    width: 80px;
}

.predictions-table .col-result {
    width: 80px;
}

/* Match Names */
.match-teams {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-home,
.team-away {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-vs {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Odds Display */
.odd-value {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-primary);
    min-width: 45px;
}

.odd-value.highlighted {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--accent);
}

/* Score Display */
.score-display {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.score-display.pending {
    color: var(--text-muted);
}

/* League Header Row */
.league-header-row {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-elevated) 100%);
}

.league-header-row td {
    padding: var(--space-sm) var(--space-md) !important;
    text-align: left !important;
}

.league-name {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.league-flag {
    font-size: 1.1rem;
}


/* ============================================================================
   8. MATCH CARDS
============================================================================ */
.match-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
    transition: all var(--transition-normal);
}

.match-card:hover {
    border-color: var(--border-secondary);
    box-shadow: var(--shadow-md);
}

.match-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-primary);
}

.match-card-header .league {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.match-card-header .time {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.match-card-body {
    padding: var(--space-lg);
}

.match-card-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.match-card-team {
    flex: 1;
    text-align: center;
}

.match-card-team .name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.match-card-vs {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    padding: 0 var(--space-md);
}

.match-card-odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.match-card-odd {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-sm);
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-primary);
    transition: all var(--transition-fast);
}

.match-card-odd:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
}

.match-card-odd .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.match-card-odd .value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.match-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-primary);
}


/* ============================================================================
   9. JACKPOT PAGES
============================================================================ */
/* Jackpot Hero */
.jackpot-hero {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: center;
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
}

.jackpot-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.jackpot-hero h1 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.jackpot-hero h1 span {
    color: var(--accent);
}

.jackpot-hero .subtitle {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

/* Jackpot Grid */
.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

/* Jackpot Cards */
.jackpot-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    text-decoration: none !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 204, 8, 0.1), transparent);
    transition: left 0.5s ease;
}

.jackpot-card:hover {
    background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-secondary) 100%);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    color: var(--primary) !important;
}

.jackpot-card:hover::before {
    left: 100%;
}

.jackpot-card .card-icon {
    margin-right: var(--space-sm);
    font-size: 1.1rem;
}

/* Jackpot Content Section */
.jackpot-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

.jackpot-content .content-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: var(--space-lg) var(--space-xl);
}

.jackpot-content .content-header h2 {
    color: var(--text-primary);
    font-size: 1.35rem;
    margin: 0;
}

.jackpot-content .content-body {
    padding: var(--space-xl);
}

.jackpot-content .content-body h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin: var(--space-xl) 0 var(--space-md) 0;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border-primary);
}

.jackpot-content .content-body h3:first-child {
    margin-top: 0;
}

.jackpot-content .content-body h4 {
    color: var(--accent);
    font-size: 1.05rem;
    margin: var(--space-lg) 0 var(--space-sm) 0;
}

.jackpot-content .content-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

/* Prize Table */
.prize-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.prize-table thead th {
    background: var(--bg-tertiary);
    color: var(--primary);
    padding: var(--space-md);
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prize-table tbody tr {
    background: var(--bg-elevated);
    transition: background var(--transition-fast);
}

.prize-table tbody tr:nth-child(even) {
    background: var(--bg-secondary);
}

.prize-table tbody tr:hover {
    background: var(--bg-hover);
}

.prize-table tbody td {
    padding: var(--space-md);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-primary);
    font-size: 0.9rem;
}

.prize-table tbody tr:last-child td {
    border-bottom: none;
}

.prize-table .prize-amount {
    color: var(--accent);
    font-weight: 700;
}

.prize-table .jackpot-winner {
    background: var(--success-soft) !important;
}

.prize-table .jackpot-winner td {
    color: var(--success);
    font-weight: 700;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-primary);
    transition: all var(--transition-fast);
}

.feature-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.feature-item .icon {
    font-size: 1.5rem;
    margin-right: var(--space-sm);
}

.feature-item .text {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Steps List */
.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.steps-list li {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.steps-list li::before {
    content: counter(step-counter);
    background: var(--primary);
    color: var(--bg-tertiary);
    font-weight: 700;
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.steps-list li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: var(--space-xs);
}

.steps-list li span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Tips List */
.tips-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--warning-soft);
    border-radius: var(--radius-md);
    border: 1px solid rgba(254, 204, 8, 0.2);
}

.tips-list li .tip-icon {
    color: var(--primary);
    margin-right: var(--space-sm);
    font-size: 1.1rem;
}

.tips-list li .tip-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.tips-list li .tip-text strong {
    color: var(--text-primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    margin-top: var(--space-xl);
}

.cta-section h4 {
    color: var(--text-primary) !important;
    font-size: 1.25rem;
    margin: 0 0 var(--space-sm) 0 !important;
    border: none !important;
    padding: 0 !important;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0 !important;
    font-size: 1rem !important;
}


/* ============================================================================
   10. SIDEBAR COMPONENTS
============================================================================ */
.sidebar .widget {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.sidebar .widget-title {
    background: var(--bg-tertiary);
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-primary);
    margin: 0;
}

.sidebar .widget-content {
    padding: var(--space-md);
}

/* League List */
.league-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.league-list li {
    border-bottom: 1px solid var(--border-primary);
}

.league-list li:last-child {
    border-bottom: none;
}

.league-list a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.league-list a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    padding-left: var(--space-lg);
}

.league-list .flag {
    font-size: 1.1rem;
}

/* Country Sidebar */
.country-list {
    max-height: 400px;
    overflow-y: auto;
}

.country-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-bottom: 1px solid var(--border-primary);
}

.country-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.country-item.active {
    background: var(--primary-glow);
    color: var(--primary);
    font-weight: 600;
}

/* Accumulator Card */
.acca-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.acca-card-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: var(--space-md) var(--space-lg);
    color: var(--text-primary);
    font-weight: 700;
}

.acca-card-body {
    padding: var(--space-md);
}

.acca-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-primary);
    font-size: 0.85rem;
}

.acca-match:last-child {
    border-bottom: none;
}

.acca-match .teams {
    color: var(--text-primary);
    font-weight: 600;
}

.acca-match .pick {
    color: var(--accent);
    font-weight: 700;
}

.acca-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    margin-top: var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 700;
}

.acca-total .label {
    color: var(--text-muted);
}

.acca-total .value {
    color: var(--primary);
    font-size: 1.1rem;
}


/* ============================================================================
   11. FOOTER
============================================================================ */
.site-footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-primary);
    margin-top: var(--space-2xl);
}

.footer-widgets {
    padding: var(--space-2xl) 0;
}

.footer-widgets-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.footer-widget-title {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border-primary);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget li {
    margin-bottom: var(--space-sm);
}

.footer-widget a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-widget a:hover {
    color: var(--primary);
}

.site-info {
    background: var(--bg-secondary);
    padding: var(--space-lg) 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.site-info a {
    color: var(--accent);
}


/* ============================================================================
   12. BUTTONS & FORMS
============================================================================ */
/* Buttons */
.btn,
button,
input[type="button"],
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--bg-tertiary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dim) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-primary);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-dim) 100%);
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.8rem;
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

/* Search Form */
.search-form {
    display: flex;
    gap: var(--space-sm);
}

.search-form input {
    flex: 1;
}

/* Date Pills */
.date-pills {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.date-pill {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.date-pill:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.date-pill.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--bg-tertiary);
    border-color: var(--primary);
}


/* ============================================================================
   13. BADGES & PILLS
============================================================================ */
.badge,
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    min-width: 40px;
}

/* Tip Pills */
.pill-1,
.pill-home {
    background: var(--odd-home);
    color: white;
}

.pill-X,
.pill-draw {
    background: var(--odd-draw);
    color: white;
}

.pill-2,
.pill-away {
    background: var(--odd-away);
    color: white;
}

/* Result Pills */
.pill-win,
.won-indicator {
    background: var(--success-soft);
    color: var(--success);
    border: 1px solid var(--success);
}

.pill-loss,
.lost-indicator {
    background: var(--danger-soft);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.pill-pending {
    background: var(--bg-elevated);
    color: var(--text-muted);
    border: 1px solid var(--border-primary);
}

/* Status Badges */
.badge-live {
    background: var(--danger);
    color: white;
    animation: pulse 1.5s infinite;
}

.badge-finished {
    background: var(--success);
    color: white;
}

.badge-upcoming {
    background: var(--info);
    color: white;
}

/* Confidence Badges */
.confidence-badge {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
}

.confidence-high {
    background: var(--success-soft);
    color: var(--success);
}

.confidence-medium {
    background: var(--warning-soft);
    color: var(--warning);
}

.confidence-low {
    background: var(--danger-soft);
    color: var(--danger);
}


/* ============================================================================
   14. ALERTS & NOTIFICATIONS
============================================================================ */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.alert-success {
    background: var(--success-soft);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-warning {
    background: var(--warning-soft);
    border: 1px solid var(--warning);
    color: var(--primary);
}

.alert-danger {
    background: var(--danger-soft);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.alert-info {
    background: var(--info-soft);
    border: 1px solid var(--info);
    color: var(--info);
}

/* Warning Box */
.warning-box {
    background: var(--warning-soft);
    border: 1px solid rgba(254, 204, 8, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.warning-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.warning-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* ============================================================================
   15. LOADING STATES
============================================================================ */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-primary);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--bg-hover) 50%, var(--bg-elevated) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 1em;
    margin-bottom: var(--space-sm);
}

.skeleton-box {
    height: 100px;
}


/* ============================================================================
   16. ANIMATIONS
============================================================================ */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease forwards;
}

.animate-slide-in {
    animation: slideIn 0.3s ease forwards;
}


/* ============================================================================
   17. UTILITY CLASSES
============================================================================ */
/* Text */
.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-accent { color: var(--accent) !important; }
.text-warning { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.text-uppercase { text-transform: uppercase !important; }
.text-bold { font-weight: 700 !important; }

/* Background */
.bg-primary { background-color: var(--bg-primary) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-tertiary { background-color: var(--bg-tertiary) !important; }
.bg-elevated { background-color: var(--bg-elevated) !important; }

/* Spacing */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: var(--space-sm) !important; }
.mb-1 { margin-bottom: var(--space-sm) !important; }
.mt-2 { margin-top: var(--space-md) !important; }
.mb-2 { margin-bottom: var(--space-md) !important; }
.mt-3 { margin-top: var(--space-lg) !important; }
.mb-3 { margin-bottom: var(--space-lg) !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: var(--space-sm) !important; }
.p-2 { padding: var(--space-md) !important; }
.p-3 { padding: var(--space-lg) !important; }

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Width */
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

/* Visibility */
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* Cursor */
.cursor-pointer { cursor: pointer !important; }

/* Border */
.border-0 { border: none !important; }
.rounded { border-radius: var(--radius-md) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }

/* Shadow */
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }


/* ============================================================================
   18. RESPONSIVE BREAKPOINTS
============================================================================ */
/* Tablet (1024px) */
@media (max-width: 1024px) {
    .grid-container {
        padding: 0 var(--space-md);
    }
    
    .container {
        flex-direction: column;
    }
    
    .left-sidebar,
    .right-sidebar {
        width: 100%;
        order: 2;
    }
    
    .center {
        order: 1;
    }
    
    .jackpot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-widgets-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .main-nav > ul {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation.toggled .main-nav > ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-top: 1px solid var(--border-primary);
        box-shadow: var(--shadow-lg);
    }
    
    .main-nav ul li a {
        padding: var(--space-md);
        border-bottom: 1px solid var(--border-primary);
    }
    
    .main-nav ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-tertiary);
    }
    
    .hero {
        padding: var(--space-xl) var(--space-md);
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .jackpot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .jackpot-card {
        min-height: 70px;
        padding: var(--space-sm) var(--space-md);
        font-size: 0.8rem;
    }
    
    .predictions-table thead th {
        padding: var(--space-sm) var(--space-xs);
        font-size: 0.65rem;
    }
    
    .predictions-table tbody td {
        padding: var(--space-sm) var(--space-xs);
        font-size: 0.8rem;
    }
    
    .team-home,
    .team-away {
        font-size: 0.8rem;
    }
    
    .odd-value {
        padding: 2px 4px;
        font-size: 0.75rem;
        min-width: 38px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .match-card-teams {
        flex-direction: column;
        text-align: center;
    }
    
    .match-card-vs {
        padding: var(--space-xs) 0;
    }
    
    .footer-widgets-container {
        grid-template-columns: 1fr;
    }
    
    /* Hide columns on mobile */
    .hide-mobile {
        display: none !important;
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .grid-container {
        padding: 0 var(--space-sm);
    }
    
    .jackpot-grid {
        grid-template-columns: 1fr;
    }
    
    .jackpot-hero h1 {
        font-size: 1.25rem;
    }
    
    .predictions-table {
        font-size: 0.75rem;
    }
    
    .predictions-table .col-time {
        width: 50px;
    }
    
    .predictions-table .col-odds {
        width: 45px;
    }
    
    .odd-value {
        min-width: 32px;
        font-size: 0.7rem;
    }
    
    .pill {
        padding: 2px 6px;
        font-size: 0.65rem;
        min-width: 30px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .date-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-sm);
    }
    
    .date-pill {
        flex-shrink: 0;
    }
    
    .match-card-odds {
        gap: var(--space-xs);
    }
    
    .match-card-odd {
        padding: var(--space-xs);
    }
    
    .match-card-odd .value {
        font-size: 0.9rem;
    }
}

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
    .grid-container {
        max-width: 1400px;
    }
}


/* ============================================================================
   FLOATING ELEMENTS
============================================================================ */
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: var(--z-fixed);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Telegram Float Button */
.telegram-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #0088cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    z-index: var(--z-fixed);
}

.telegram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

/* Float Dock */
.float-dock {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: var(--z-fixed);
}


/* ============================================================================
   SEO ARTICLE SECTION
============================================================================ */
.seo-article,
.center > article {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
}

.seo-article h2,
.center > article h2 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border-primary);
}

.seo-article h3,
.center > article h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin: var(--space-lg) 0 var(--space-md) 0;
}

.seo-article p,
.center > article p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.seo-article ul,
.center > article ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.seo-article li,
.center > article li {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.seo-article a,
.center > article a {
    color: var(--accent);
}

.seo-article a:hover,
.center > article a:hover {
    color: var(--primary);
}


/* ============================================================================
   LIVE MATCH INDICATORS
============================================================================ */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: var(--danger);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.live-indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.live-time {
    color: var(--danger);
    font-weight: 700;
}

.live-score {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}


/* ============================================================================
   MODE TOGGLE (if needed)
============================================================================ */
.mode-toggles {
    display: flex;
    gap: var(--space-xs);
}

.mode-toggle {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mode-toggle:hover {
    background: var(--bg-hover);
}

.mode-toggle.active {
    background: var(--primary);
    color: var(--bg-tertiary);
    border-color: var(--primary);
}


/* ============================================================================
   CUSTOM SCROLLBAR
============================================================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}


/* ============================================================================
   PRINT STYLES
============================================================================ */
@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .float-dock,
    .back-to-top,
    .telegram-float {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .predictions-table {
        border: 1px solid #ccc;
    }
    
    .predictions-table th,
    .predictions-table td {
        border: 1px solid #ccc;
    }
}