:root {
    --bg-primary: #f5f6f8;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f9fc;
    --gold: #009933;
    --gold-light: #00b33c;
    --gold-dark: #00802b;
    --accent: #dc2626;
    --accent-green: #16a34a;
    --text-primary: #1a1a2e;
    --text-secondary: #6b7280;
    --border: #e5e7eb;
    --border-light: #d1d5db;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-gold: 0 0 20px rgba(0,153,51,0.08);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(0,153,51,0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(220,38,38,0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(22,163,74,0.02) 0%, transparent 50%);
}

/* ============ HEADER ============ */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), var(--shadow-sm);
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    gap: 0.8rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0,153,51,0.2);
    flex-shrink: 0;
    position: relative;
    font-weight: 900;
    font-size: 1.3rem;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), transparent);
    opacity: 0.2;
    z-index: -1;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.06); }
}

.logo-text {
    font-size: clamp(0.85rem, 2.5vw, 1.25rem);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-tagline {
    font-size: 0.55rem;
    color: var(--text-secondary);
    -webkit-text-fill-color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(0,153,51,0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,153,51,0.25);
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,153,51,0.35);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}
.btn-primary:hover::after { left: 100%; }

.live-pill {
    display: none;
    align-items: center;
    gap: 0.4rem;
    background: rgba(220,38,38,0.08);
    color: var(--accent);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(220,38,38,0.15);
}
.live-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: livePulse 1.2s infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(220,38,38,0.5); }
    50% { opacity: 0.4; box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}

/* ============ MAIN WRAPPER ============ */
.main-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ============ HERO BANNER ============ */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 50%, #ffffff 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0,153,51,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(22,163,74,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,153,51,0.08);
    border: 1px solid rgba(0,153,51,0.15);
    color: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}
.hero-badge .pulse-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.hero-title .gold-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0,0,0,0.03);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    border: 1px solid rgba(0,0,0,0.06);
}
.hero-stat-pill .stat-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
}
.stat-dot.green { background: var(--accent-green); }
.stat-dot.gold { background: var(--gold); }

/* Hero Odds Box */
.hero-odds-box {
    background: linear-gradient(145deg, #f8f9fc 0%, #ffffff 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 1.8rem 2.2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,153,51,0.08), inset 0 0 30px rgba(0,153,51,0.02);
    position: relative;
    min-width: 180px;
}
.hero-odds-box::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    opacity: 0.1;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}
@keyframes borderGlow {
    0%, 100% { opacity: 0.06; }
    50% { opacity: 0.18; }
}
.odds-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(220,38,38,0.3);
}
.odds-match-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
    font-weight: 600;
}
.odds-teams {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
}
.odds-value {
    font-size: clamp(2.5rem, 8vw, 3.8rem);
    font-weight: 900;
    background: linear-gradient(180deg, #1a1a2e 0%, #009933 50%, #00802b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
}
.odds-meta {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 0.4rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============ GAMES SLIDER ============ */
.slider-section {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.slider-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slider-card {
    min-width: 280px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.slider-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}
.slider-card.featured-slide {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #e6f9ef, #f8f9fc);
}
.slider-card .card-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.slider-card .card-badge.featured-badge {
    background: var(--gold);
    color: #ffffff;
}
.slider-card .card-teams {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-primary);
}
.slider-card .card-league {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.8rem;
}
.slider-card .card-odds-row {
    display: flex;
    gap: 0.4rem;
}
.slider-card .card-odd {
    flex: 1;
    text-align: center;
    background: #f0f1f4;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all 0.2s;
    color: var(--text-primary);
}
.slider-card .card-odd:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff;
}
.slider-card .card-odd span {
    display: block;
    font-size: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.15rem;
    text-transform: uppercase;
}
.slider-card .card-time {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(0,153,51,0.4);
    width: 24px;
    border-radius: 10px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
    padding: 0 0.5rem;
}
.slider-arrow {
    pointer-events: all;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}
.slider-arrow:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

/* ============ STATS ROW ============ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}
.stat-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.stat-value {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 800;
    color: var(--gold);
}
.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============ FILTERS ============ */
.filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.3rem;
}
.filters::-webkit-scrollbar { display: none; }

.filter-chip {
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.filter-chip:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}
.filter-chip.active {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,153,51,0.25);
}

/* ============ SECTION ============ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}
.section-badge {
    font-size: 0.65rem;
    background: rgba(0,153,51,0.08);
    color: var(--gold);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(0,153,51,0.12);
}

/* ============ MATCH CARDS ============ */
.matches-grid {
    display: grid;
    gap: 0.7rem;
}

.match-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.2rem;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: default;
}
.match-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md);
}

.match-time {
    text-align: center;
    flex-shrink: 0;
}
.match-time .date {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.match-time .time {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: var(--gold);
}
.match-time .live-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0.2rem;
    animation: livePulse 2s infinite;
    letter-spacing: 0.5px;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: clamp(0.8rem, 2.2vw, 0.95rem);
}
.team-crest {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid var(--border);
    flex-shrink: 0;
}
.vs-divider {
    color: var(--text-secondary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.match-league {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.15rem;
    font-weight: 500;
}

.match-odds {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}
.odd-btn {
    background: #f0f1f4;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 50px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.odd-btn:hover {
    background: #e5e7eb;
    border-color: var(--border-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.odd-btn:active,
.odd-btn.selected {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff;
    transform: scale(0.96);
    box-shadow: 0 4px 20px rgba(22,163,74,0.3);
}
.odd-label {
    font-size: 0.55rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Match */
.match-card.featured {
    background: linear-gradient(135deg, #e6f9ef 0%, #f8f9fc 100%);
    border: 1.5px solid var(--gold);
    position: relative;
    box-shadow: var(--shadow-gold);
}
.featured-flag {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: var(--gold);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 0 0 8px 8px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,153,51,0.3);
}

/* ============ BET SLIP ============ */
.layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}
.bet-slip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}
.bet-slip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}
.bet-slip-title {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-primary);
}
.bet-slip-count {
    background: var(--gold);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bet-slip-empty {
    color: var(--text-secondary);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.85rem;
}
.bet-slip-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}
.bet-slip-total .total-odds {
    font-size: 1.3rem;
    color: var(--gold);
}
.stake-input {
    width: 100%;
    padding: 0.7rem 1rem;
    margin-top: 0.8rem;
    background: #f0f1f4;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    outline: none;
    transition: all 0.2s;
}
.stake-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(0,153,51,0.08);
}
.btn-bet {
    width: 100%;
    margin-top: 0.8rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--accent-green), #15803d);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22,163,74,0.25);
}
.btn-bet:hover {
    box-shadow: 0 6px 25px rgba(22,163,74,0.4);
    transform: translateY(-1px);
}
.btn-bet:active { transform: scale(0.97); }

/* ============ FOOTER ============ */
.footer {
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    background: var(--bg-secondary);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ============ RESPONSIVE ============ */
@media (min-width: 481px) {
    .live-pill { display: flex; }
    .logo-tagline { display: block; }
}

@media (max-width: 768px) {
    .header-inner { 
        padding: 0.5rem 0.8rem; 
        gap: 0.4rem;
    }
    .logo-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 1.1rem;
        border-radius: 8px;
    }
    .logo-icon::after {
        inset: -3px;
        border-radius: 10px;
    }
    .logo-text { font-size: 0.8rem; }
    .logo-tagline {
        font-size: 0.5rem;
        letter-spacing: 0.8px;
    }
    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        border-radius: 40px;
    }
    .btn-outline { padding: 0.4rem 0.7rem; }
    .btn-primary { padding: 0.4rem 0.8rem; }
    .live-pill { display: none !important; }
}

@media (max-width: 480px) {
    .header-inner { 
        padding: 0.45rem 0.6rem; 
        gap: 0.3rem;
    }
    .logo { gap: 0.35rem; }
    .logo-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.9rem;
        border-radius: 7px;
    }
    .logo-icon::after {
        inset: -2px;
        border-radius: 9px;
    }
    .logo-text {
        font-size: 0.7rem;
        letter-spacing: -0.3px;
    }
    .logo-tagline {
        font-size: 0.45rem;
        letter-spacing: 0.5px;
    }
    .btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
        border-radius: 30px;
    }
    .btn-outline {
        padding: 0.35rem 0.55rem;
        border-width: 1px;
    }
    .btn-primary { padding: 0.35rem 0.65rem; }
    .header-actions { gap: 0.3rem; }
    .live-pill { display: none !important; }
}

@media (max-width: 360px) {
    .logo-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 0.8rem;
        border-radius: 6px;
    }
    .logo-text { font-size: 0.65rem; }
    .logo-tagline { display: none; }
    .btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.6rem;
    }
    .header-inner { padding: 0.4rem 0.4rem; }
}

@media (max-width: 950px) {
    .layout { grid-template-columns: 1fr; }
    .bet-slip { position: static; margin-top: 1rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 1.5rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-odds-box { width: 100%; }
    .slider-card { min-width: 240px; }
}

@media (max-width: 600px) {
    .main-wrapper { padding: 1rem 0.8rem 0; gap: 1rem; }
    .hero { padding: 1.2rem; border-radius: var(--radius-lg); }
    .match-card { grid-template-columns: 50px 1fr; gap: 0.6rem; padding: 0.8rem; }
    .match-odds { grid-column: 1 / -1; justify-content: center; gap: 0.5rem; }
    .odd-btn { min-width: 55px; padding: 0.55rem 0.7rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .stat-card { padding: 0.8rem; }
    .slider-card { min-width: 220px; padding: 1rem; }
    .slider-arrow { width: 32px; height: 32px; font-size: 1rem; }
}

/* ---- Logo Image ---- */
.logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 28px;
        max-width: 140px;
    }
}