/* =====================================================
   PREMIUM DARK BETTING THEME - WinXO
   Modern iGaming UI/UX Design System
   ===================================================== */

:root {
    /* Primary Colors - Royal Green Theme */
    --bg-primary: #0d1f12;
    --bg-secondary: #0f2818;
    --bg-tertiary: #132f1c;
    --bg-card: #153320;
    --bg-card-hover: #1a3d26;
    
    /* Accent Colors */
    --accent-gold: #ffd700;
    --accent-green: #10b981;
    --accent-blue: #10b981;
    --accent-purple: #10b981;
    --accent-pink: #ec4899;
    --accent-orange: #f59e0b;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a8b5a0;
    --text-muted: #6b7a65;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #10b981;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-blue: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-premium: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-dark: linear-gradient(180deg, #0f2818 0%, #0d1f12 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-glow-green: 0 0 20px rgba(0, 255, 136, 0.3);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =====================================================
   BASE STYLES
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* =====================================================
   PREMIUM NAVBAR
   ===================================================== */

.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(13, 31, 18, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.navbar-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
}

.nav-link i {
    font-size: 1.1rem;
}

/* Live Balance Badge */
.balance-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    font-weight: 700;
    color: #000;
    box-shadow: var(--shadow-glow-green);
    position: relative;
}

.balance-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.balance-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
}

.balance-currency {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Auth Buttons */
.btn-login {
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-login:hover {
    background: var(--accent-blue);
    color: white;
}

.btn-register {
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    background: var(--gradient-blue);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* =====================================================
   SIDEBAR NAVIGATION
   ===================================================== */

.premium-sidebar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 240px;
    height: calc(100vh - 70px);
    background: var(--bg-secondary);
    border-right: 1px solid rgba(16, 185, 129, 0.1);
    padding: 20px 0;
    overflow-y: auto;
    z-index: 900;
    transition: var(--transition-normal);
}

.sidebar-section {
    margin-bottom: 24px;
    padding: 0 16px;
}

.sidebar-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-left: 12px;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-item {
    margin-bottom: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.sidebar-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-link.active {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
}

.sidebar-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.sidebar-badge {
    margin-left: auto;
    padding: 2px 8px;
    background: var(--accent-green);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
}

/* =====================================================
   MAIN CONTENT AREA
   ===================================================== */

.main-content {
    margin-left: 240px;
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    padding: 24px;
}

.main-content.full-width {
    margin-left: 0;
}

/* =====================================================
   HERO CAROUSEL
   ===================================================== */

.hero-carousel {
    position: relative;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 32px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(13, 31, 18, 0.95) 0%, rgba(13, 31, 18, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 16px;
}

.hero-badge.live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse-live 1s infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 600px;
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    font-weight: 700;
    color: #000;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-gold);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent-gold);
}

/* =====================================================
   LIVE TICKER / MARQUEE
   ===================================================== */

.live-ticker {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    margin-bottom: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--accent-green);
    white-space: nowrap;
}

.ticker-label i {
    animation: pulse-live 1s infinite;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    white-space: nowrap;
    color: var(--text-secondary);
}

.ticker-item .winner-name {
    font-weight: 600;
    color: var(--text-primary);
}

.ticker-item .winner-amount {
    color: var(--accent-gold);
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.ticker-item .winner-game {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

.section-title i {
    color: var(--accent-gold);
}

.section-nav {
    display: flex;
    gap: 8px;
}

.section-nav-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.section-nav-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.section-link {
    color: var(--accent-blue);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-link:hover {
    color: var(--text-primary);
}

/* =====================================================
   PROVIDER/PUBLISHER CARDS
   ===================================================== */

.providers-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 32px;
    scrollbar-width: none;
}

.providers-grid::-webkit-scrollbar {
    display: none;
}

.provider-card {
    flex: 0 0 180px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.provider-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.provider-logo {
    height: 40px;
    margin-bottom: 12px;
    filter: grayscale(100%) brightness(1.2);
    transition: var(--transition-fast);
}

.provider-card:hover .provider-logo {
    filter: none;
}

.provider-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.provider-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.provider-count::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
}

/* =====================================================
   GAME CARDS GRID
   ===================================================== */

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    cursor: pointer;
    transition: var(--transition-fast);
    aspect-ratio: 3/4;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.game-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.game-card:hover .game-card-image {
    transform: scale(1.05);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.game-card-provider {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.game-card-play {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: var(--gradient-gold);
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: #000;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.game-card:hover .game-card-play {
    transform: translateY(0);
}

.game-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.game-card-badge.hot {
    background: var(--gradient-gold);
    color: #000;
}

.game-card-badge.new {
    background: var(--accent-green);
    color: #000;
}

.game-card-players {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.game-card-players::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
}

/* =====================================================
   LIVE CASINO CARDS (Larger, with Models)
   ===================================================== */

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.live-game-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    cursor: pointer;
    transition: var(--transition-fast);
    aspect-ratio: 4/5;
}

.live-game-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.live-game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-game-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
}

.live-game-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.live-game-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.live-game-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.live-game-players {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 600;
}

.live-game-players::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

/* =====================================================
   DASHBOARD STAT CARDS
   ===================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.stat-card.balance::before {
    background: var(--gradient-green);
}

.stat-card.bets::before {
    background: var(--gradient-blue);
}

.stat-card.winnings::before {
    background: var(--gradient-gold);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
}

.stat-card.balance .stat-icon {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-green);
}

.stat-card.bets .stat-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}

.stat-card.winnings .stat-icon {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
}

.stat-live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--accent-green);
    font-weight: 600;
}

.stat-live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.stat-card.balance .stat-value {
    color: var(--accent-green);
}

.stat-card.winnings .stat-value {
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-size: 0.85rem;
}

.stat-change.positive {
    color: var(--success);
}

.stat-change.negative {
    color: var(--danger);
}

/* =====================================================
   DATA TABLE
   ===================================================== */

.data-table-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.data-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.data-table-filters {
    display: flex;
    gap: 12px;
}

.filter-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    text-align: left;
    padding: 16px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.data-table td {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.table-game {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-game-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.table-game-name {
    font-weight: 600;
}

.table-game-type {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.table-amount {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.table-amount.positive {
    color: var(--accent-green);
}

.table-amount.negative {
    color: var(--danger);
}

.table-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.table-status.won {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.table-status.lost {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.table-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

/* =====================================================
   MOBILE BOTTOM NAVIGATION
   ===================================================== */

.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(13, 31, 18, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    z-index: 1000;
}

.mobile-nav-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    list-style: none;
}

.mobile-nav-item {
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.mobile-nav-link i {
    font-size: 1.3rem;
}

.mobile-nav-link.active {
    color: var(--accent-gold);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
    .premium-sidebar {
        transform: translateX(-100%);
    }
    
    .premium-sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .premium-navbar {
        padding: 0 16px;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .main-content {
        padding: 16px;
        margin-bottom: 70px;
    }
    
    .hero-carousel {
        height: 300px;
        border-radius: var(--radius-lg);
    }
    
    .hero-overlay {
        padding: 24px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .live-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .data-table-wrapper {
        overflow-x: auto;
    }
    
    .data-table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-games-grid {
        grid-template-columns: 1fr;
    }
    
    .balance-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
