/* ====================================
   JETBET — Casino Portal Theme
   Navy + Cyan Color Scheme (Logo Uyumlu)
   ==================================== */

/* === CSS RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Navy Dark Background Palette (Logo Uyumlu) */
    --bg-primary: #0a0e17;
    --bg-secondary: #0d1219;
    --bg-card: #111827;
    --bg-sidebar: #0c1018;
    --bg-header: #080c14;
    --bg-hover: #151d2e;
    --bg-input: #131a28;

    /* Cyan/Teal Accent (Logo Uyumlu) */
    --cyan-primary: #00bcd4;
    --cyan-light: #26c6da;
    --cyan-dark: #0097a7;
    --cyan-bright: #00e5ff;
    --cyan-glow: rgba(0, 188, 212, 0.3);
    --cyan-bg: rgba(0, 188, 212, 0.08);
    --cyan-gradient: linear-gradient(135deg, #00bcd4, #26c6da);

    /* Secondary Blue Accent */
    --blue-accent: #1e88e5;
    --blue-light: #42a5f5;

    /* Text Colors */
    --text-primary: #e8eaf0;
    --text-secondary: #8899aa;
    --text-muted: #4a5568;
    --text-dim: #2d3748;

    /* Border */
    --border-color: #1a2332;
    --border-light: #1e293b;
    --border-active: rgba(0, 188, 212, 0.3);

    /* Status */
    --yellow: #ffc107;
    --red: #ef4444;
    --green: #22c55e;
    --purple: #a855f7;
    --orange: #f59e0b;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.7);
    --shadow-cyan: 0 0 20px rgba(0, 188, 212, 0.2);

    /* Layout */
    --header-height: 56px;
    --sidebar-width: 200px;

    /* Transitions */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ====================================
   TOP HEADER
   ==================================== */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition-fast);
}

.menu-toggle:hover {
    background: var(--bg-hover);
    color: var(--cyan-primary);
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0 12px;
    height: 36px;
    width: 200px;
    transition: var(--transition);
}

.header-search:focus-within {
    border-color: var(--cyan-primary);
    box-shadow: 0 0 0 3px var(--cyan-glow);
    width: 280px;
}

.header-search i {
    color: var(--text-muted);
    font-size: 13px;
    margin-right: 8px;
}

.header-search input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 13px;
    width: 100%;
}

.header-search input::placeholder {
    color: var(--text-muted);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--text-muted);
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-login:hover {
    border-color: var(--cyan-primary);
    color: var(--cyan-primary);
    box-shadow: var(--shadow-cyan);
}

.btn-register {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--cyan-primary);
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-register:hover {
    background: var(--cyan-light);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.currency-selector:hover {
    border-color: var(--cyan-primary);
}

.currency-icon {
    font-weight: 700;
    color: var(--cyan-primary);
}

.currency-amount {
    font-weight: 600;
    color: #fff;
}

.btn-deposit {
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--cyan-gradient);
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-deposit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--cyan-glow);
}

/* ====================================
   MAIN LAYOUT
   ==================================== */
.main-layout {
    display: flex;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* ====================================
   SIDEBAR
   ==================================== */
.sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 900;
    transition: var(--transition);
}

.sidebar::-webkit-scrollbar {
    width: 3px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.sidebar-nav {
    padding: 8px 0;
}

.nav-list {
    display: flex;
    flex-direction: column;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.nav-item a i {
    width: 18px;
    text-align: center;
    font-size: 14px;
}

.nav-item:hover a {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.nav-item.active a {
    color: var(--cyan-primary);
    background: var(--cyan-bg);
    border-left-color: var(--cyan-primary);
}

.nav-badge {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--cyan-primary);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: 6px 16px;
}

.nav-section-title {
    padding: 12px 16px 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sub-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--text-muted);
}

/* ====================================
   MAIN CONTENT
   ==================================== */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    padding: 16px 20px 40px;
    min-width: 0;
}

/* ====================================
   HERO BANNERS (Image Based)
   ==================================== */
.hero-banners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.banner-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.banner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-active);
}

/* Banner Background Image */
.banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s ease;
}

.banner-card:hover .banner-bg {
    transform: scale(1.05);
}

.banner-overlay {
    /* position: absolute; */
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.1) 0%, rgba(10, 14, 23, 0.85) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 16px;
    width: 100%;
}

.banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(0, 188, 212, 0.15);
    border: 1px solid rgba(0, 188, 212, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
}

.banner-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.btn-banner {
    display: inline-block;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    background: var(--cyan-primary);
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-banner:hover {
    background: var(--cyan-light);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.btn-banner-alt {
    background: var(--orange);
}

.btn-banner-alt:hover {
    background: #ffb74d;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.3);
}

/* Remove per-banner gradient backgrounds — images used instead */
.banner-sport,
.banner-casino,
.banner-slots,
.banner-promo {
    background: var(--bg-card);
}

/* ====================================
   GAME SECTIONS
   ==================================== */
.game-section {
    margin-bottom: 28px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 4px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: var(--cyan-primary);
    font-size: 16px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.see-all {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.see-all:hover {
    color: var(--cyan-primary);
}

.see-all i {
    font-size: 10px;
}

/* Game scroll container */
.games-scroll-wrapper {
    position: relative;
}

.games-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.games-row::-webkit-scrollbar {
    display: none;
}

/* Scroll buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
}

.games-scroll-wrapper:hover .scroll-btn {
    opacity: 1;
    pointer-events: all;
}

.scroll-btn:hover {
    background: var(--cyan-primary);
    border-color: var(--cyan-primary);
    color: #fff;
    box-shadow: 0 0 16px var(--cyan-glow);
}

.scroll-left {
    left: -4px;
}

.scroll-right {
    right: -4px;
}

/* ====================================
   GAME CARDS
   ==================================== */
.game-card {
    position: relative;
    flex: 0 0 150px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: var(--cyan-primary);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.15);
    z-index: 5;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover img {
    transform: scale(1.05);
}

.provider-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 3;
    font-size: 8px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 3px;
    background: rgba(10, 14, 23, 0.75);
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tag-evolution {
    background: rgba(255, 193, 7, 0.15);
    color: var(--yellow);
    border-color: rgba(255, 193, 7, 0.2);
}

.tag-pragmatic {
    background: rgba(239, 68, 68, 0.15);
    color: #ef5350;
    border-color: rgba(239, 68, 68, 0.2);
}

.tag-amused {
    background: rgba(0, 188, 212, 0.15);
    color: var(--cyan-primary);
    border-color: rgba(0, 188, 212, 0.2);
}

/* Game hover overlay */
.game-hover {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.game-card:hover .game-hover {
    opacity: 1;
}

.btn-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cyan-primary);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.btn-play:hover {
    transform: scale(1.15);
    background: var(--cyan-light);
}

.btn-play i {
    margin-left: 2px;
}

.btn-demo {
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(6px);
    white-space: nowrap;
}

.btn-demo:hover {
    background: rgba(0, 188, 212, 0.3);
    border-color: var(--cyan-primary);
    box-shadow: 0 0 12px var(--cyan-glow);
    transform: scale(1.05);
}

.btn-demo i {
    font-size: 10px;
}

/* Live badge for live casino cards */
.game-card.live::after {
    content: 'CANLI';
    position: absolute;
    bottom: 8px;
    left: 6px;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 3px;
    background: var(--red);
    color: white;
    letter-spacing: 0.5px;
    z-index: 3;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ====================================
   FLOATING SUPPORT BUTTON
   ==================================== */
.floating-support {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cyan-gradient);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--cyan-glow);
    transition: var(--transition);
    animation: supportFloat 3s ease-in-out infinite;
}

.floating-support:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px var(--cyan-glow);
}

@keyframes supportFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ====================================
   SCROLLBAR STYLE (GLOBAL)
   ==================================== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1200px) {
    .hero-banners {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-card {
        flex: 0 0 140px;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 0px;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 220px;
    }

    .sidebar.open {
        transform: translateX(0);
        width: 220px;
    }

    .main-content {
        margin-left: 0;
        padding: 12px;
    }

    .hero-banners {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .banner-card {
        min-height: 160px;
    }

    .game-card {
        flex: 0 0 130px;
    }

    .game-card img {
        height: 170px;
    }

    .header-search {
        display: none;
    }

    .btn-deposit {
        display: none;
    }

    .currency-selector {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-banners {
        grid-template-columns: 1fr;
    }

    .game-card {
        flex: 0 0 120px;
    }

    .game-card img {
        height: 160px;
    }

    .banner-content h2 {
        font-size: 16px;
    }

    .btn-login,
    .btn-register {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* ====================================
   GAME DETAIL PAGE
   ==================================== */
.game-detail-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

/* Game iframe container */
.game-frame-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-bottom: none;
}

.game-frame-container iframe {
    display: block;
    width: 100%;
    height: 560px;
    border: none;
    background: #000;
}

/* Placeholder when no iframe src */
.game-placeholder {
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(180deg, #0a0e17 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.game-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 188, 212, 0.06) 0%, transparent 70%);
}

.game-placeholder-img {
    width: 280px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.game-placeholder-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    background: rgba(10, 14, 23, 0.55);
    z-index: 2;
}

.game-placeholder-overlay .balance-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.game-placeholder-overlay .balance-display .balance-label {
    font-weight: 500;
}

.game-placeholder-overlay .balance-display .balance-currency {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    font-weight: 600;
}

.game-placeholder-overlay .balance-display .balance-currency .currency-flag {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e30a17;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
}

.game-placeholder-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.btn-uye-ol {
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn-uye-ol:hover {
    background: #16a34a;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    transform: translateY(-1px);
}

.btn-demo-oyna {
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.btn-demo-oyna:hover {
    background: rgba(0, 188, 212, 0.2);
    border-color: var(--cyan-primary);
    box-shadow: 0 0 16px var(--cyan-glow);
    transform: translateY(-1px);
}

.btn-demo-oyna i {
    font-size: 12px;
    color: var(--red);
}

/* Game Bottom Toolbar */
.game-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toolbar-left .tool-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    cursor: pointer;
}

.toolbar-left .tool-btn:hover {
    background: rgba(0, 188, 212, 0.15);
    border-color: var(--cyan-primary);
    color: var(--cyan-primary);
}

.toolbar-currency {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.toolbar-currency:hover {
    border-color: var(--cyan-primary);
}

.toolbar-currency .flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e30a17;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
}

.toolbar-currency .fa-chevron-down {
    font-size: 9px;
    color: var(--text-muted);
}

.toolbar-center {
    display: flex;
    align-items: center;
}

.toolbar-center .toolbar-logo {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.toolbar-center .toolbar-logo:hover {
    opacity: 1;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-toggle-wrapper .toggle-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.demo-toggle-wrapper .toggle-label.active {
    color: var(--text-primary);
}

.demo-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.demo-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--green);
    border-radius: 24px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.demo-toggle input:checked+.toggle-slider {
    background: var(--cyan-primary);
}

.demo-toggle input:checked+.toggle-slider::before {
    transform: translateX(20px);
}

/* Game Info Section */
.game-info-section {
    margin-top: 24px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.game-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.game-info-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.game-info-title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.game-info-title .game-provider {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.game-info-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-info-actions .btn-uye-ol {
    padding: 10px 28px;
    font-size: 12px;
}

.game-info-actions .btn-demo-oyna {
    padding: 10px 24px;
    font-size: 12px;
}

/* Responsive for game detail */
@media (max-width: 768px) {

    .game-frame-container iframe,
    .game-placeholder {
        height: 400px;
    }

    .game-placeholder-img {
        width: 200px;
    }

    .game-info-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .game-info-title {
        flex-direction: column;
        gap: 4px;
    }

    .game-info-title h1 {
        font-size: 20px;
    }

    .toolbar-center .toolbar-logo {
        height: 36px;
    }
}

@media (max-width: 480px) {

    .game-frame-container iframe,
    .game-placeholder {
        height: 300px;
    }

    .game-toolbar {
        padding: 8px 10px;
        gap: 6px;
    }

    .toolbar-left .tool-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .game-info-title h1 {
        font-size: 18px;
    }

    .game-placeholder-actions {
        flex-direction: column;
        gap: 10px;
    }

    .demo-toggle-wrapper .toggle-label {
        font-size: 11px;
    }
}

/* ====================================
   FOOTER
   ==================================== */
.site-footer {
    margin-left: var(--sidebar-width);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 13px;
}

/* Footer Links Grid */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    padding: 36px 32px 28px;
    border-bottom: 1px solid var(--border-color);
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 400;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--cyan-primary);
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-social a.social-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.footer-social a.social-x {
    background: #1a1a2e;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.footer-social a.social-telegram {
    background: #0088cc;
    color: #fff;
}

.footer-social a:hover {
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.3);
}

/* Currency Badges */
.footer-currencies-section {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
}

.footer-currencies-section h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.currency-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.currency-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.currency-badge:hover {
    border-color: var(--cyan-primary);
    color: var(--text-primary);
}

.currency-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-dot.dot-red {
    background: #e30a17;
}

.badge-dot.dot-btc {
    background: #f7931a;
}

.badge-dot.dot-eth {
    background: #627eea;
}

.badge-dot.dot-usdt {
    background: #26a17b;
}

.badge-dot.dot-bnb {
    background: #f3ba2f;
}

.badge-dot.dot-trx {
    background: #eb0029;
}

.badge-dot.dot-xrp {
    background: #23292f;
}

.badge-dot.dot-doge {
    background: #c3a634;
}

.badge-dot.dot-ltc {
    background: #345d9d;
}

.badge-dot.dot-usdc {
    background: #2775ca;
}

.badge-dot.dot-link {
    background: #2a5ada;
}

.badge-dot.dot-shib {
    background: #ffa409;
}

.badge-dot.dot-avax {
    background: #e84142;
}

.badge-dot.dot-ada {
    background: #0033ad;
}

.badge-dot.dot-mvr {
    background: #00bcd4;
}

/* Footer Bottom (license + copyright) */
.footer-license-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    gap: 20px;
}

.footer-license-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-license-text {
    flex: 1;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-license-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-license-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer-license-badge i {
    font-size: 16px;
}

.footer-license-badge.badge-18 {
    color: var(--red);
    border-color: rgba(239, 68, 68, 0.3);
    font-weight: 800;
    font-size: 14px;
}

/* Copyright bar */
.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 11px;
    color: var(--text-muted);
}

.footer-copyright-links {
    display: flex;
    gap: 16px;
}

.footer-copyright-links a {
    color: var(--text-muted);
    font-size: 11px;
    transition: var(--transition-fast);
}

.footer-copyright-links a:hover {
    color: var(--cyan-primary);
}

/* Footer responsive */
@media (max-width: 1100px) {
    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        margin-left: 0;
    }

    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 16px;
    }

    .footer-currencies-section {
        padding: 16px;
    }

    .footer-license-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links-section {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   SPORTSBOOK SPECIFIC STYLES
   ==================================== */
.sportsbook-body {
    background-color: #0b111c;
    /* Slightly muted dark background for sportsbook */
}

.sportsbook-layout {
    display: flex;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* Override standard sidebar for sportsbook layout to be part of the flow */
.sportsbook-layout .sports-sidebar {
    position: static;
    /* override fixed */
    width: 240px;
    /* specific width for sports sidebar */
    flex-shrink: 0;
    height: auto;
    border-right: 1px solid var(--border-color);
}

/* --- Sports Left Sidebar --- */
.sports-sidebar-header {
    margin-bottom: 4px;
}

.sports-sidebar-header .nav-item {
    cursor: pointer;
}

.sports-sidebar-header .nav-item:hover,
.nav-list.sports-list .nav-item:hover {
    background-color: var(--bg-hover);
}

.sports-tabs {
    display: flex;
    padding: 0 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.sports-tab {
    flex: 1;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.sports-tab.active {
    color: var(--text-primary);
    border-bottom-color: var(--cyan-primary);
}

.sports-tab:hover:not(.active) {
    color: var(--text-primary);
}

.nav-list.sports-list .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-list.sports-list .nav-item a {
    flex: 1;
    padding: 8px 16px;
}

.nav-list.sports-list .nav-item.active-sport a {
    color: var(--text-primary);
    background: #0b141d;
    border-left-color: var(--blue-accent);
}

.nav-list.sports-list .nav-item.active-sport a span {
    color: var(--text-primary);
}

.sport-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-list.sports-list .sub-item a {
    padding-left: 36px;
    font-size: 12px;
}

.nav-list.sports-list .sub-item img {
    border-radius: 2px;
}

/* --- Sports Main Content Area --- */
.sports-main {
    background-color: #121927;
    flex: 1;
    /* Take up remaining space between sidebars */
    min-width: 0;
    max-width: calc(100vw - 240px - 320px);
    /* Prevent flex blowout and allow it to shrink/scroll */
    padding: 0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
}

.sports-main::-webkit-scrollbar {
    width: 6px;
}

.sports-main::-webkit-scrollbar-thumb {
    background: #1c2738;
    border-radius: 10px;
}

.sports-top-nav {
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #0b111c;
    border-bottom: 1px solid var(--border-color);
}

.top-nav-link {
    padding: 18px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
}

.top-nav-link.active {
    color: var(--text-primary);
}

.top-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--cyan-primary);
}

.top-nav-link:hover {
    color: var(--text-primary);
}

.sports-top-nav-right {
    margin-left: auto;
    display: flex;
    gap: 16px;
}

.dropdown-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
}

.dropdown-select i {
    font-size: 10px;
}

.dropdown-select:hover {
    color: var(--text-primary);
}

.sports-category-scroll {
    display: flex;
    align-items: center;
    overflow-x: auto;
    background-color: #151d2b;
    padding: 16px 20px;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sports-category-scroll::-webkit-scrollbar {
    display: none;
}

.sports-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-width: 80px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sports-category-item i {
    font-size: 24px;
    margin-bottom: 8px;
}

.sports-category-item span {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.sports-category-item.active {
    background-color: var(--blue-accent);
    color: #fff;
}

.sports-category-item:hover:not(.active) {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

.sport-content-header {
    display: flex;
    flex-direction: column;
    padding: 24px 20px 16px;
}

.sport-content-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-filters {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 6px 16px;
    border-radius: 16px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.filter-btn.active {
    background: var(--blue-accent);
    color: #fff;
}

.filter-btn:hover:not(.active) {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.match-area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: #1a2332;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.match-area-header h3 {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Match Tables */
.match-table-headers {
    display: flex;
    padding: 10px 20px 0;
    margin-bottom: 8px;
}

.empty-space {
    flex: 1;
    /* Match info area width */
}

.odds-header-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.odds-header-group .odds-title {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    background: #182231;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2px 8px;
}

.odds-labels {
    display: flex;
    gap: 4px;
    width: 100%;
}

.odds-labels span {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    width: 60px;
    /* Base width for odds button alignment */
}

/* Ensure the total group has enough space */
.total-group {
    margin-left: 12px;
}

.total-group .odds-labels {
    justify-content: center;
}

.match-league-header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #172131;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    gap: 8px;
}

.match-league-header img {
    width: 16px;
    border-radius: 2px;
}

.match-league-header .right-icon {
    margin-left: auto;
    font-size: 10px;
}

.match-row {
    display: flex;
    padding: 12px 20px;
    background-color: #121927;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    transition: background-color 0.2s;
}

.match-row:hover {
    background-color: #172131;
}

.match-info {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: center;
}

.match-time {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.match-time.live {
    color: var(--blue-light);
    font-weight: 700;
}

.match-time i {
    margin-bottom: 4px;
}

.match-teams {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.team .score {
    color: var(--blue-light);
    font-weight: 800;
    margin-right: 16px;
}

.match-odds {
    display: flex;
    gap: 4px;
    align-items: center;
}

.odd-btn {
    background-color: #1b2638;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 56px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.odd-btn:hover:not(.locked) {
    background-color: #24324a;
    border-color: #314463;
}

.odd-btn i.fa-lock {
    font-size: 10px;
    color: var(--text-muted);
    margin-left: 4px;
}

/* Flex-row for odds with target (e.g. O 1.5) */
.odd-btn span.odd-target {
    font-size: 9px;
    color: #ef4444;
    /* Under */
    font-weight: 700;
}

.odd-btn span.odd-target[style*="down"],
.odd-value.down {
    color: #ef4444;
}

.odd-btn span.odd-target[style*="up"],
.odd-value.up {
    color: var(--blue-light);
}

.odd-btn .odd-target {
    margin-bottom: 2px;
}

.odd-value {
    font-size: 12px;
}

.odd-btn.group-start {
    margin-left: 12px;
    /* Separation for Toplam group */
}

.odd-btn.locked {
    background: transparent;
    border-color: transparent;
    cursor: default;
}

.match-more-odds {
    margin-left: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.match-more-odds:hover {
    color: var(--text-primary);
}


/* --- Sports Right Sidebar (Bet Slip) --- */
.right-sidebar {
    background-color: #101622;
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-height));
    position: sticky;
    top: var(--header-height);
    width: 320px;
    /* Fixed width to prevent collapsing from flex: 1 main content */
    flex-shrink: 0;
}

.bet-slip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.bet-slip-header h3 {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bet-slip-header .badge {
    background-color: var(--blue-accent);
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
}

.bet-slip-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.bet-tab {
    flex: 1;
    padding: 14px 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    background: #141c2b;
    border-bottom: 2px solid transparent;
}

.bet-tab.active {
    background: #101622;
    color: var(--text-primary);
    border-bottom-color: var(--blue-accent);
}

.bet-slip-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.empty-icon-wrap {
    position: relative;
    width: 60px;
    height: 40px;
}

.empty-card {
    position: absolute;
    width: 40px;
    height: 24px;
    background: #1b2638;
    border-radius: 4px;
    transform: rotate(-10deg);
    top: 5px;
    left: 5px;
}

.empty-card.green {
    background: var(--blue-accent);
    transform: rotate(10deg);
    top: 8px;
    left: 15px;
    box-shadow: 0 4px 10px rgba(30, 136, 229, 0.3);
}

.bet-summary {
    background-color: #0b1018;
    padding: 16px;
    border-top: 1px solid var(--border-color);
}

.summary-top h4 {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 800;
    margin-bottom: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.summary-row:last-child {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.bet-action-area {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.btn-clear {
    background: #1b2638;
    color: var(--text-secondary);
    width: 44px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-clear:hover {
    background: #ef4444;
    color: white;
}

.btn-submit-bet {
    flex: 1;
    background: var(--blue-accent);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 12px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-submit-bet:hover {
    background: var(--blue-light);
    box-shadow: 0 0 16px rgba(30, 136, 229, 0.4);
}

.auto-accept-odds {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
    margin-bottom: 12px;
}

.auto-accept-odds .label {
    font-size: 11px;
    color: var(--text-secondary);
    max-width: 70%;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #374151;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #ef4444;
}

input:checked+.slider:before {
    transform: translateX(14px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save-load-events {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.save-load-events:hover {
    color: var(--text-primary);
}

.tipster-coupon {
    padding: 16px;
    background-color: #121927;
}

.tipster-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.tipster-header h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tipster-header span {
    font-size: 11px;
    color: #42a5f5;
    font-weight: 600;
    cursor: pointer;
}

.tipster-stats {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-label {
    font-size: 10px;
    color: var(--blue-accent);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.stat-value {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.stat-value.bg-dark {
    background-color: #1a2436;
    color: var(--blue-accent);
}

.stat-value.bg-green {
    background-color: rgba(30, 136, 229, 0.15);
    color: var(--blue-accent);
}

/* ====================================
   VIP CLUB SPECIFIC STYLES
   ==================================== */
.vip-hero-section {
    padding: 24px;
    padding-bottom: 0;
}

.vip-hero-banner {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vip-banner-img {
    width: 75%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

.vip-ranking-section {
    padding: 24px;
}

.vip-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vip-card {
    background-color: #171b30;
    /* Darker blue background */
    border: 1px solid #273050;
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: #3b4873;
}

.vip-card-header {
    margin-bottom: 16px;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: #272a42;
    color: #fff;
}

.vip-badge.bronze i {
    color: #cd7f32;
}

.vip-badge.silver i {
    color: #c0c0c0;
}

.vip-card-price {
    margin-bottom: 16px;
}

.vip-card-price h3 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.vip-card-price span {
    font-size: 11px;
    color: var(--text-muted);
}

.vip-card-desc {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
    min-height: 54px;
}

.vip-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.vip-perks li {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.vip-perks li i {
    color: #ffb800;
    /* Golden checkmark */
    font-size: 14px;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vip-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   PROMOTION PAGE SPECIFIC STYLES
   ==================================== */

.promo-header-section {
    padding: 24px 24px 0 24px;
}

.promo-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.promo-header-top h1 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.promo-filters {
    display: flex;
    gap: 12px;
}

.promo-filter {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.promo-filter:hover {
    color: var(--text-primary);
}

.promo-filter.active {
    background-color: #558000;
    /* Matching Gamben's green pill color */
    color: #fff;
}

.promo-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #171f2d;
    padding: 12px 20px 12px 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.promo-banner-badge:hover {
    border-color: #558000;
}

.promo-banner-badge .badge-icon {
    width: 36px;
    height: 36px;
    background-color: #242f44;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #558000;
    font-size: 18px;
}

.promo-banner-badge span {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-primary);
}

.promo-banner-badge .badge-arrow {
    color: #558000;
    font-size: 12px;
    margin-left: 10px;
}

.promo-grid-section {
    padding: 24px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-4px);
}

.promo-card:hover .promo-img-wrap img {
    filter: brightness(1.1);
}

.promo-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
    aspect-ratio: 16 / 9;
}

.promo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.promo-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
}

.badge-tag {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-tag.accent {
    background-color: #ccfa00;
    /* Vibrant gamben green/yellow */
    color: #000;
    border-color: #ccfa00;
}

.promo-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo-date {
    font-size: 11px;
    color: var(--text-muted);
}

.promo-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* ====================================
   PROMO MODAL STYLES
   ==================================== */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    /* Dark blur */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.promo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-modal-content {
    background-color: #121927;
    /* Main Jetbet dark color */
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.promo-modal-overlay.active .promo-modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 16px;
    transition: var(--transition);
}

.modal-close:hover {
    background: #e74c3c;
}

.modal-hero-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
}

.modal-body h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-date {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.modal-text p {
    margin-bottom: 16px;
}

.modal-text ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.modal-text li {
    margin-bottom: 8px;
}

.modal-action-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }

}

/* ====================================
   CALL REQUEST MODAL STYLES (ARANMA TALEBİ)
   ==================================== */

.call-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.call-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.call-modal-content {
    background-color: #0b0f19;
    /* Darkest theme background */
    width: 90%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.call-modal-overlay.active .call-modal-content {
    transform: translateY(0);
}

.call-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.call-modal-close:hover {
    color: #fff;
}

.call-modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.call-modal-header h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.call-modal-body {
    padding: 24px;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group label .asterisk {
    color: #ff3b30;
    /* Red required star matching design */
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    background-color: #121927;
    border: 1px solid #1c2738;
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-accent);
}

.phone-input-group {
    display: flex;
    background-color: #121927;
    border: 1px solid #1c2738;
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* Make phone input transparent so container handles border focus */
.phone-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px 12px 0;
    border-radius: 0;
}

.phone-input-group:focus-within {
    border-color: var(--blue-accent);
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-right: 1px solid #1c2738;
    margin-right: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.country-code img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.form-actions {
    margin-top: 24px;
    text-align: center;
}

.btn-submit-call {
    /* Using an eye-catching green from Gamben ref, or Jetbet Blue */
    background: linear-gradient(180deg, #aeea00 0%, #64dd17 100%);
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 14px 24px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    width: 50%;
    margin: 0 auto;
    transition: var(--transition);
}

.btn-submit-call:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(100, 221, 23, 0.4);
}

/* ====================================
   TOP ANNOUNCEMENT BAR
   ==================================== */
.top-announcement {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: linear-gradient(90deg, #0a0e17, #1e88e5, #0a0e17);
    /* Jetbet blue accent gradient centered */
    border-bottom: 1px solid var(--border-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the content */
    z-index: 1001;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 0 16px;
    /* Add padding for the close button right alignment */
}

.announcement-content {
    flex: 1;
    text-align: center;
}

.announcement-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.announcement-close:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Layout adjustments when announcement bar is present */
.has-announcement .top-header {
    top: 36px;
}

.has-announcement .sidebar {
    top: calc(var(--header-height) + 36px);
    height: calc(100vh - var(--header-height) - 36px);
}

.has-announcement .main-content {
    margin-top: calc(var(--header-height) + 36px);
    min-height: calc(100vh - var(--header-height) - 36px);
}

/* ====================================
   PROMO LOAD MODAL
   ==================================== */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.promo-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.promo-modal-content {
    position: relative;
    background: transparent;
    max-width: 600px;
    width: 90%;
    transform: scale(0.9);
    transition: var(--transition);
}

.promo-modal-overlay.active .promo-modal-content {
    transform: scale(1);
}

.promo-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.promo-modal-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
}

.promo-modal-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.3);
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

.promo-modal-img:hover {
    box-shadow: 0 10px 50px rgba(0, 188, 212, 0.5);
    transform: translateY(-2px);
}

/* ====================================
   DEPOSIT PAGE STYLES
   ==================================== */
.deposit-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.deposit-tab {
    flex: 1;
    text-align: center;
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.deposit-tab.active {
    color: var(--cyan-primary);
    border-bottom-color: var(--cyan-primary);
    background: linear-gradient(0deg, rgba(0, 188, 212, 0.1) 0%, transparent 100%);
}

.deposit-tab:hover:not(.active) {
    color: var(--text-primary);
}

.deposit-header {
    margin-bottom: 24px;
}

.deposit-header h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.deposit-header p {
    font-size: 12px;
    color: var(--text-secondary);
}

.deposit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.deposit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.deposit-card:hover {
    border-color: var(--cyan-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.15);
}

.deposit-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.deposit-card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-card-icon img {
    max-width: 100%;
    max-height: 100%;
}

.deposit-card-icon i {
    font-size: 32px;
    color: var(--cyan-primary);
}

/* Cryptocurrency colors */
.icon-tether {
    color: #26A17B !important;
}

.icon-bitcoin {
    color: #F7931A !important;
}

.icon-ethereum {
    color: #627EEA !important;
}

.icon-tron {
    color: #FF060A !important;
}

.deposit-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
}

.deposit-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.deposit-subname {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.deposit-limits {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.deposit-limits span {
    color: var(--text-primary);
    font-weight: 600;
}

.deposit-footer {
    font-size: 12px;
    color: var(--yellow);
    font-style: italic;
    font-weight: 600;
}

@media (max-width: 768px) {
    .deposit-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   PAGE LOADER
   ==================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-spinner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid rgba(0, 188, 212, 0.1);
    border-top-color: var(--cyan-primary);
    border-right-color: var(--cyan-primary);
    animation: spin 1s linear infinite;
}

.loader-logo {
    width: 70px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* ====================================
   USER PROFILE DROPDOWN
   ==================================== */
.user-profile-menu {
    position: relative;
    display: inline-block;
}

.btn-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cyan-gradient);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-profile:hover {
    box-shadow: 0 0 16px var(--cyan-glow);
    transform: scale(1.05);
}

.profile-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: hidden;
    animation: fadeInDown 0.3s ease;
}

.dropdown-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-header .user-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.dropdown-header .user-balance {
    font-size: 18px;
    font-weight: 800;
    color: var(--green);
}

.dropdown-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.dropdown-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-list li a:hover {
    background: rgba(0, 188, 212, 0.1);
    color: var(--cyan-primary);
}

.dropdown-list li a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* ====================================
   MOBILE GAME FULLSCREEN
   ==================================== */
.game-frame-container.pseudo-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    border-radius: 0 !important;
    border: none !important;
    background: #000 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.game-frame-container.pseudo-fullscreen .game-placeholder,
.game-frame-container.pseudo-fullscreen iframe {
    height: 100vh !important;
    width: 100vw !important;
}

.exit-fs-btn {
    display: none;
}

.game-frame-container.pseudo-fullscreen .exit-fs-btn {
    display: flex;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.game-frame-container.pseudo-fullscreen .exit-fs-btn:hover {
    background: rgba(227, 10, 23, 0.8);
    border-color: #e30a17;
}
/* ====================================
   SPORTSBOOK SPECIFIC STYLES
   ==================================== */

.sportsbook-body {
    background: #06090e; /* Even darker for sports */
    color: var(--text-primary);
}

.sportsbook-layout {
    display: flex;
    margin-top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

/* ====================================
   SPORTS SIDEBAR (LEFT)
   ==================================== */
.sports-sidebar {
    position: relative;
    top: 0;
    height: 100%;
    width: 240px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    flex-shrink: 0;
    overflow-y: auto;
}

.sports-tabs {
    display: flex;
    padding: 10px 16px;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.sports-tab {
    flex: 1;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.sports-tab.active {
    background: var(--bg-hover);
    color: var(--cyan-primary);
}

.sports-list .nav-item a {
    padding: 8px 16px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sports-list .nav-item a i,
.sports-list .nav-item a img {
    width: 18px;
    text-align: center;
    margin-right: 10px;
    border-radius: 2px;
}

.sports-list .nav-item a span:nth-child(2) {
    flex: 1;
}

.sport-count {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-input);
    padding: 2px 6px;
    border-radius: 4px;
}

.active-sport a {
    color: var(--text-primary);
    background: rgba(0, 188, 212, 0.05);
}

.sub-item a {
    padding-left: 44px;
    font-size: 12px;
    color: var(--text-secondary);
}

/* ====================================
   SPORTS MAIN CONTENT (CENTER)
   ==================================== */
.sports-main {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #06090e;
    min-width: 0; 
}

/* Sports Top Nav */
.sports-top-nav {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 50px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 10;
}

.top-nav-link {
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.top-nav-link:hover {
    color: var(--text-primary);
}

.top-nav-link.active {
    color: var(--cyan-primary);
    border-bottom-color: var(--cyan-primary);
}

.sports-top-nav-right {
    margin-left: auto;
    display: flex;
    gap: 15px;
}

.dropdown-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px 12px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.dropdown-select:hover {
    border-color: var(--cyan-primary);
    color: var(--text-primary);
}

/* Category Scroll */
.sports-category-scroll {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.sports-category-scroll::-webkit-scrollbar {
    display: none;
}

.sports-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    gap: 6px;
}

.sports-category-item i {
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.sports-category-item span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 65px;
    text-align: center;
}

.sports-category-item:hover,
.sports-category-item.active {
    border-color: var(--cyan-primary);
    background: var(--cyan-bg);
}

.sports-category-item:hover i,
.sports-category-item.active i {
    color: var(--cyan-primary);
}

.sports-category-item:hover span,
.sports-category-item.active span {
    color: var(--text-primary);
}

/* Header & Filters */
.sport-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 10px;
}

.sport-content-header h2 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.sport-content-header h2 i {
    color: var(--cyan-primary);
}

.sport-filters {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--cyan-bg);
    color: var(--cyan-primary);
    border-color: rgba(0, 188, 212, 0.4);
}

/* Match Tables */
.match-area-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--bg-hover);
    margin: 10px 20px 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    cursor: pointer;
}

.match-area-header h3 {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.match-table-headers {
    display: flex;
    padding: 10px 20px;
    margin: 0 20px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.empty-space {
    flex: 1;
}

.odds-header-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px; /* Adjust based on 3 columns */
}

.odds-header-group.total-group {
    width: 140px; /* Adjust based on 2 columns */
    margin-left: 10px;
}

.odds-title {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.odds-labels {
    display: flex;
    width: 100%;
    justify-content: space-around;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.odds-labels span {
    flex: 1;
    text-align: center;
}

.match-league-header {
    padding: 8px 20px;
    margin: 0 20px;
    background: var(--bg-card);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.match-league-header img {
    width: 16px;
    border-radius: 2px;
}

.match-league-header .right-icon {
    margin-left: auto;
    font-size: 10px;
    cursor: pointer;
}

/* Match Rows */
.match-row {
    display: flex;
    padding: 12px 20px;
    margin: 0 20px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.match-row:hover {
    background: var(--bg-hover);
}

.match-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.match-time {
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan-primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-time.live {
    color: var(--orange);
}

.match-teams {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    padding-right: 20px;
}

.team .score {
    color: var(--cyan-primary);
    font-weight: 700;
}

/* Odds Buttons */
.match-odds {
    display: flex;
    align-items: center;
    gap: 4px;
}

.odd-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 42px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid transparent;
}

.odd-btn:hover:not(.locked) {
    background: var(--cyan-bg);
    border-color: var(--cyan-primary);
}

.odd-btn span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.odd-btn .odd-target {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.odd-btn .odd-value {
    font-size: 13px;
    font-weight: 700;
}

/* Rising/Falling Odds Animations */
.odd-value.up {
    color: var(--green);
}
.odd-value.down {
    color: var(--red);
}

.odd-btn.locked {
    background: rgba(30,30,30, 0.4);
    cursor: not-allowed;
    color: var(--text-muted);
}

.odd-btn.group-start {
    margin-left: 10px;
}

.match-more-odds {
    margin-left: 15px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.match-more-odds:hover {
    color: var(--text-primary);
}

/* ====================================
   SPORTS RIGHT SIDEBAR (BET SLIP)
   ==================================== */
.right-sidebar {
    width: 300px;
    height: 100%;
    background: var(--bg-sidebar);
    border-left: 1px solid var(--border-color);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.bet-slip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.bet-slip-header h3 {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bet-slip-header .badge {
    background: var(--cyan-primary);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

.bet-slip-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.bet-tab {
    flex: 1;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.bet-tab.active {
    color: var(--cyan-primary);
    border-bottom: 2px solid var(--cyan-primary);
}

.bet-slip-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #080c14; /* very dark internal */
}

.empty-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.empty-card {
    position: absolute;
    width: 40px;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-card);
    transform: rotate(-10deg);
    left: 0;
    top: 5px;
}

.empty-card.green {
    transform: rotate(10deg);
    border-color: var(--green);
    left: 15px;
    z-index: 2;
}

.bet-summary {
    background: var(--bg-card);
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.summary-top {
    margin-bottom: 20px;
}

.summary-top h4 {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.summary-row:last-child {
    font-size: 14px;
    color: var(--green);
}

.bet-action-area {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-clear {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.btn-clear:hover {
    color: var(--red);
    border-color: var(--red);
}

.btn-submit-bet {
    flex: 1;
    height: 44px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-submit-bet:hover {
    background: #1eb355;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.auto-accept-odds {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--green);
}

input:checked + .slider:before {
    transform: translateX(14px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save-load-events {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: var(--bg-input);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
}

/* Tipster Coupon */
.tipster-coupon {
    padding: 20px;
    background: var(--bg-hover);
    border-top: 1px solid var(--border-color);
}

.tipster-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.tipster-header h4 {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.tipster-header span {
    font-size: 11px;
    color: var(--cyan-primary);
    cursor: pointer;
}

.tipster-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.stat-label {
    color: var(--text-secondary);
}

.stat-value {
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.stat-value.bg-dark {
    background: var(--bg-input);
    color: #fff;
}

.stat-value.bg-green {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
}

/* ====================================
   SPORTSBOOK SPECIFIC STYLES
   ==================================== */

.sportsbook-body {
    background: #06090e; /* Even darker for sports */
    color: var(--text-primary);
}

.sportsbook-layout {
    display: flex;
    margin-top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

/* ====================================
   SPORTS SIDEBAR (LEFT)
   ==================================== */
.sports-sidebar {
    position: relative;
    top: 0;
    height: 100%;
    width: 240px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    flex-shrink: 0;
    overflow-y: auto;
}

.sports-tabs {
    display: flex;
    padding: 10px 16px;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.sports-tab {
    flex: 1;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.sports-tab.active {
    background: var(--bg-hover);
    color: var(--cyan-primary);
}

.sports-list .nav-item a {
    padding: 8px 16px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sports-list .nav-item a i,
.sports-list .nav-item a img {
    width: 18px;
    text-align: center;
    margin-right: 10px;
    border-radius: 2px;
}

.sports-list .nav-item a span:nth-child(2) {
    flex: 1;
}

.sport-count {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-input);
    padding: 2px 6px;
    border-radius: 4px;
}

.active-sport a {
    color: var(--text-primary);
    background: rgba(0, 188, 212, 0.05);
}

.sub-item a {
    padding-left: 44px;
    font-size: 12px;
    color: var(--text-secondary);
}

/* ====================================
   SPORTS MAIN CONTENT (CENTER)
   ==================================== */
.sports-main {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #06090e;
    min-width: 0; 
}

/* Sports Top Nav */
.sports-top-nav {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 50px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 10;
}

.top-nav-link {
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.top-nav-link:hover {
    color: var(--text-primary);
}

.top-nav-link.active {
    color: var(--cyan-primary);
    border-bottom-color: var(--cyan-primary);
}

.sports-top-nav-right {
    margin-left: auto;
    display: flex;
    gap: 15px;
}

.dropdown-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px 12px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.dropdown-select:hover {
    border-color: var(--cyan-primary);
    color: var(--text-primary);
}

/* Category Scroll */
.sports-category-scroll {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.sports-category-scroll::-webkit-scrollbar {
    display: none;
}

.sports-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    gap: 6px;
}

.sports-category-item i {
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.sports-category-item span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 65px;
    text-align: center;
}

.sports-category-item:hover,
.sports-category-item.active {
    border-color: var(--cyan-primary);
    background: var(--cyan-bg);
}

.sports-category-item:hover i,
.sports-category-item.active i {
    color: var(--cyan-primary);
}

.sports-category-item:hover span,
.sports-category-item.active span {
    color: var(--text-primary);
}

/* Header & Filters */
.sport-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 10px;
}

.sport-content-header h2 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.sport-content-header h2 i {
    color: var(--cyan-primary);
}

.sport-filters {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--cyan-bg);
    color: var(--cyan-primary);
    border-color: rgba(0, 188, 212, 0.4);
}

/* Match Tables */
.match-area-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--bg-hover);
    margin: 10px 20px 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    cursor: pointer;
}

.match-area-header h3 {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.match-table-headers {
    display: flex;
    padding: 10px 20px;
    margin: 0 20px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.empty-space {
    flex: 1;
}

.odds-header-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px; /* Adjust based on 3 columns */
}

.odds-header-group.total-group {
    width: 140px; /* Adjust based on 2 columns */
    margin-left: 10px;
}

.odds-title {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.odds-labels {
    display: flex;
    width: 100%;
    justify-content: space-around;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.odds-labels span {
    flex: 1;
    text-align: center;
}

.match-league-header {
    padding: 8px 20px;
    margin: 0 20px;
    background: var(--bg-card);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.match-league-header img {
    width: 16px;
    border-radius: 2px;
}

.match-league-header .right-icon {
    margin-left: auto;
    font-size: 10px;
    cursor: pointer;
}

/* Match Rows */
.match-row {
    display: flex;
    padding: 12px 20px;
    margin: 0 20px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.match-row:hover {
    background: var(--bg-hover);
}

.match-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.match-time {
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan-primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-time.live {
    color: var(--orange);
}

.match-teams {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    padding-right: 20px;
}

.team .score {
    color: var(--cyan-primary);
    font-weight: 700;
}

/* Odds Buttons */
.match-odds {
    display: flex;
    align-items: center;
    gap: 4px;
}

.odd-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 42px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid transparent;
}

.odd-btn:hover:not(.locked) {
    background: var(--cyan-bg);
    border-color: var(--cyan-primary);
}

.odd-btn span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.odd-btn .odd-target {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.odd-btn .odd-value {
    font-size: 13px;
    font-weight: 700;
}

/* Rising/Falling Odds Animations */
.odd-value.up {
    color: var(--green);
}
.odd-value.down {
    color: var(--red);
}

.odd-btn.locked {
    background: rgba(30,30,30, 0.4);
    cursor: not-allowed;
    color: var(--text-muted);
}

.odd-btn.group-start {
    margin-left: 10px;
}

.match-more-odds {
    margin-left: 15px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.match-more-odds:hover {
    color: var(--text-primary);
}

/* ====================================
   SPORTS RIGHT SIDEBAR (BET SLIP)
   ==================================== */
.right-sidebar {
    width: 300px;
    height: 100%;
    background: var(--bg-sidebar);
    border-left: 1px solid var(--border-color);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.bet-slip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.bet-slip-header h3 {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bet-slip-header .badge {
    background: var(--cyan-primary);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

.bet-slip-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.bet-tab {
    flex: 1;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.bet-tab.active {
    color: var(--cyan-primary);
    border-bottom: 2px solid var(--cyan-primary);
}

.bet-slip-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #080c14; /* very dark internal */
}

.empty-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.empty-card {
    position: absolute;
    width: 40px;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-card);
    transform: rotate(-10deg);
    left: 0;
    top: 5px;
}

.empty-card.green {
    transform: rotate(10deg);
    border-color: var(--green);
    left: 15px;
    z-index: 2;
}

.bet-summary {
    background: var(--bg-card);
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.summary-top {
    margin-bottom: 20px;
}

.summary-top h4 {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.summary-row:last-child {
    font-size: 14px;
    color: var(--green);
}

.bet-action-area {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-clear {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.btn-clear:hover {
    color: var(--red);
    border-color: var(--red);
}

.btn-submit-bet {
    flex: 1;
    height: 44px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-submit-bet:hover {
    background: #1eb355;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.auto-accept-odds {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--green);
}

input:checked + .slider:before {
    transform: translateX(14px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save-load-events {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: var(--bg-input);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
}

/* Tipster Coupon */
.tipster-coupon {
    padding: 20px;
    background: var(--bg-hover);
    border-top: 1px solid var(--border-color);
}

.tipster-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.tipster-header h4 {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.tipster-header span {
    font-size: 11px;
    color: var(--cyan-primary);
    cursor: pointer;
}

.tipster-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.stat-label {
    color: var(--text-secondary);
}

.stat-value {
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.stat-value.bg-dark {
    background: var(--bg-input);
    color: #fff;
}

.stat-value.bg-green {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
}

/* ====================================
   SPORTSBOOK (SCREENSHOT LAYOUT)
   ==================================== */
:root {
    --ss-bg: #16191E;
    --ss-card: #22252A;
    --ss-slip: #1E2126;
    --lime-primary: #c4fe00;
    --lime-hover: #d4ff33;
}

.sportsbook-body {
    background: var(--ss-bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.sportsbook-layout {
    display: flex;
    margin-top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

.sports-main {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    background: var(--ss-bg);
}

/* Leagues Banner */
.scrolling-leagues {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-bottom: 25px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrolling-leagues::-webkit-scrollbar { display: none; }

.league-box {
    flex: 0 0 100px;
    height: 80px;
    background: var(--ss-card);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.league-box:hover {
    background: #2a2e35;
    transform: translateY(-2px);
}
.league-box img { width: 20px; }
.league-box span { font-size: 10px; text-align: center; color: var(--text-secondary); line-height: 1.2; font-weight: 600; }

/* Featured Matches */
.featured-matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}
.featured-card {
    background: var(--ss-card);
    border-radius: var(--radius-md);
    padding: 15px;
}
.fc-header { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 11px; color: var(--text-secondary); }
.fc-league { display: flex; align-items: center; gap: 5px; }
.fc-league i { color: var(--lime-primary); }
.fc-date { color: var(--lime-primary); font-weight: 600; }
.fc-teams { display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; margin-bottom: 15px; }
.fc-odds { display: flex; gap: 10px; }
.fc-odd { flex: 1; background: var(--ss-bg); border-radius: var(--radius-sm); padding: 8px; display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: var(--transition-fast); border: 1px solid transparent; }
.fc-odd:hover { border-color: var(--lime-primary); }
.fc-odd span { font-size: 10px; color: var(--text-secondary); margin-bottom: 4px; }
.fc-odd strong { font-size: 13px; color: #fff; }

/* Main List Header */
.screenshot-header { padding: 0 0 15px 0; margin-bottom: 15px; border-bottom: 1px solid #2a2e35; }
.screenshot-tabs .filter-btn { background: var(--ss-card); color: var(--text-secondary); border: none; border-radius: 6px; font-size: 13px; padding: 8px 16px; margin-right: 8px; cursor: pointer; }
.screenshot-tabs .filter-btn.lime-active { background: var(--lime-primary); color: #000; font-weight: 700; }

/* SS Match Row */
.screenshot-match-list { display: flex; flex-direction: column; gap: 4px; }
.ss-match-row { display: flex; align-items: center; background: var(--ss-card); border-radius: var(--radius-sm); padding: 12px 16px; transition: var(--transition-fast); }
.ss-match-row:hover { background: #2a2e35; }
.ss-datetime { display: flex; flex-direction: column; font-size: 11px; width: 60px; color: var(--text-secondary); font-weight: 600; }
.ss-datetime .time { color: #fff; font-size: 13px; margin-top: 2px; }
.ss-teams { flex: 1; display: flex; flex-direction: column; gap: 6px; margin-left:10px; }
.ss-teams .team { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.ss-teams .team img { width: 14px; border-radius: 2px; }
.ss-actions { display: flex; gap: 8px; margin: 0 15px; }
.icon-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--ss-bg); border-radius: 4px; color: var(--text-muted); transition: 0.2s; cursor: pointer; border: none; }
.icon-btn:hover { color: #fff; background: #333; }
.ss-odds { display: flex; gap: 8px; }
.ss-odd-btn { width: 56px; height: 36px; display: flex; flex-direction: column; justify-content: center; align-items: center; background: var(--ss-bg); border-radius: 4px; cursor: pointer; border: 1px solid transparent; transition: 0.2s; }
.ss-odd-btn span { font-size: 9px; color: var(--text-secondary); }
.ss-odd-btn strong { font-size: 12px; }
.ss-odd-btn:hover { border-color: var(--lime-primary); }
.ss-more { margin-left: 8px; }
.ss-more button { height: 36px; padding: 0 12px; background: transparent; border: 1px solid var(--lime-primary); color: var(--lime-primary); border-radius: 4px; font-weight: 600; font-size: 12px; cursor: pointer; transition: 0.2s; }
.ss-more button:hover { background: var(--lime-primary); color: #000; }

/* Right Sidebar (Screenshot) */
.screenshot-sidebar { width: 320px; background: var(--ss-slip); border-left: 1px solid #16191E; display: flex; flex-direction: column; }
.ss-betslip-top { padding: 20px; border-bottom: 2px solid #16191E; }
.ss-tabs { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.ss-tabs .active { background: transparent; border: none; color: #fff; font-size: 14px; font-weight: 700; }
.ss-tabs .close-btn { background: var(--ss-card); border: none; padding: 4px 10px; border-radius: 20px; color: var(--text-secondary); font-size: 11px; display: flex; align-items: center; gap: 6px; cursor: pointer; transition: 0.2s; }
.ss-tabs .close-btn:hover { color: #fff; background: #333; }
.ss-slip-header { display: flex; justify-content: space-between; color: var(--lime-primary); font-weight: 700; font-size: 14px; margin-bottom: 30px; }
.ss-slip-header .badge { color: #000; background: var(--lime-primary); padding: 2px 6px; border-radius: 4px; font-size: 12px; }

.ss-empty-state { text-align: center; color: var(--text-secondary); padding: 10px 0; }
.ss-empty-state h4 { color: #fff; font-size: 14px; margin-bottom: 8px; }
.ss-empty-state p { font-size: 12px; margin-bottom: 20px; }
.btn-lime-login { cursor: pointer; border: none; width: 100%; padding: 12px; background: var(--lime-primary); color: #000; font-weight: 800; font-size: 14px; border-radius: 6px; transition: 0.2s; }
.btn-lime-login:hover { background: var(--lime-hover); box-shadow: 0 0 15px rgba(196, 254, 0, 0.3); }

/* Popular Bets */
.ss-popular-bets { padding: 20px; flex: 1; overflow-y: auto; }
.pb-header { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.pb-item { background: var(--ss-bg); padding: 12px; border-radius: 6px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; transition: 0.2s; }
.pb-item:hover { background: #2a2e35; }
.pb-teams { flex: 1; display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 600; }
.pb-teams span { display: flex; align-items: center; gap: 6px; }
.pb-teams img { width: 14px; border-radius: 2px; }
.pb-date { font-size: 10px; color: var(--text-secondary); font-weight: 600; text-align: right; line-height: 1.4; }
.pb-odds { text-align: right; }
.pb-side { font-size: 9px; color: var(--text-secondary); margin-bottom: 4px; }
.pb-odds .ss-odd-btn { width: 50px; height: 28px; font-size: 12px; font-weight: 700; color: #fff; border: 1px solid #333; margin-left: auto; background: transparent; cursor: pointer; transition: 0.2s; border-radius: 4px; }
.pb-odds .ss-odd-btn:hover { border-color: var(--lime-primary); color: var(--lime-primary); }