/* 
   Diamond Exchange - Premium Stylesheet
   Color Palette:
   - Deep Black-Navy (Bg): #080c14
   - Dark Slate (Cards): #111625
   - Accent Cyan: #00d2ff
   - Accent Gold: #ffb800
   - Back Bet (Blue): #0099ff
   - Lay Bet (Pink): #ff62a5
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,400&display=swap');

:root {
    --bg-color: #080c14;
    --card-bg: #111625;
    --card-hover-bg: #161e33;
    --accent-cyan: #00d2ff;
    --accent-gold: #ffb800;
    --text-primary: #ffffff;
    --text-secondary: #8ea0b4;
    --back-color: #0077ff;
    --back-light: #e2f0ff;
    --lay-color: #f63e75;
    --lay-light: #ffe6ee;
    --whatsapp-green: #25d366;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #1b243b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Utility Classes & Gradients */
.text-cyan {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}
.text-gold {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #0077ff 100%);
}
.bg-gradient-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e67e22 100%);
}
.bg-glass {
    background: rgba(17, 22, 37, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header & Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 36px;
    background-color: #0d1b2a;
    border-bottom: 1px solid rgba(0, 210, 255, 0.15);
    display: flex;
    align-items: center;
}
.ticker-content {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: ticker 25s linear infinite;
}
.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #e0f7fa;
}
@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Navbar Styling */
.navbar {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.navbar.scrolled {
    background: rgba(8, 12, 20, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 210, 255, 0.1);
}
.navbar-brand {
    padding: 0;
    margin: 0;
}
.navbar-brand img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.5));
}
.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px 0;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(0, 210, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 184, 0, 0.03) 0%, transparent 40%);
}
.hero-badge {
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 210, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
}
.hero-img-container {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2) 0%, rgba(255, 184, 0, 0.1) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.hero-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

/* Stat Box */
.stat-box {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-box:last-child {
    border-right: none;
}
@media (max-width: 767px) {
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .stat-box:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* Premium Buttons */
.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-whatsapp:hover {
    background-color: #20ba5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-pulse {
    animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-premium-outline {
    border: 2px solid var(--accent-cyan);
    color: #fff;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}
.btn-premium-outline:hover {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #0077ff 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

/* Features Grid */
.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    background: var(--card-hover-bg);
    border-color: rgba(0, 210, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 210, 255, 0.05);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.07);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 210, 255, 0.1);
}
.feature-card:hover .feature-icon-wrapper {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

/* Match Card & Odds Styling */
.match-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.match-card:hover {
    border-color: rgba(0, 210, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.match-meta {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
}
.match-teams {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 8px 0;
}
.match-team {
    display: flex;
    align-items: center;
    gap: 8px;
}
.team-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.team-1-indicator { background-color: var(--accent-cyan); }
.team-2-indicator { background-color: var(--accent-gold); }

/* Odds Boxes */
.odds-container {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}
.odds-box {
    width: 60px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease;
}
.odds-box .odds-val {
    font-size: 0.95rem;
    line-height: 1;
}
.odds-box .odds-vol {
    font-size: 0.65rem;
    font-weight: 400;
    margin-top: 2px;
}
.odds-box.back {
    background-color: var(--back-light);
    color: var(--back-color);
}
.odds-box.back:hover {
    background-color: #b3d7ff;
}
.odds-box.lay {
    background-color: var(--lay-light);
    color: var(--lay-color);
}
.odds-box.lay:hover {
    background-color: #ffd0dc;
}

/* Category Filter Tabs */
.game-tabs .nav-link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 8px 24px;
    color: var(--text-secondary) !important;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 5px;
    transition: all 0.3s ease;
}
.game-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #0077ff 100%);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

/* How It Works Steps */
.step-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}
.step-card:hover {
    border-color: rgba(255, 184, 0, 0.2);
    transform: translateY(-5px);
}
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e67e22 100%);
    color: #000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.4);
}

/* Partners Logos */
.partner-logo-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: all 0.3s ease;
}
.partner-logo-box:hover {
    background: rgba(0, 210, 255, 0.05);
    border-color: rgba(0, 210, 255, 0.2);
    transform: scale(1.05);
}
.partner-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    background: linear-gradient(to right, #ffffff, #8ea0b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.partner-logo-box:hover .partner-name {
    background: linear-gradient(to right, var(--accent-cyan), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Dynamic Trust Feed */
.live-transactions {
    background: rgba(17, 22, 37, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    max-height: 250px;
    overflow-y: hidden;
    position: relative;
}
.transaction-list {
    position: relative;
    animation: scrollTransactions 15s linear infinite;
}
.transaction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}
.transaction-item:last-child {
    border-bottom: none;
}
.tx-success {
    color: #2ec4b6;
    font-weight: 600;
}

/* Games Gallery Grid */
.game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    border: 1px solid rgba(255,255,255,0.05);
}
.game-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.game-card:hover .game-card-bg {
    transform: scale(1.1);
}
.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 12, 20, 0.9) 0%, rgba(8, 12, 20, 0.2) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: all 0.3s ease;
}
.game-card:hover .game-card-overlay {
    background: linear-gradient(to top, rgba(8, 12, 20, 0.95) 0%, rgba(0, 210, 255, 0.15) 100%);
}
.game-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.game-category {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* FAQ / Accordion Styling */
.accordion-item {
    background-color: var(--card-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.accordion-button {
    background-color: var(--card-bg) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: none !important;
    padding: 18px 24px;
}
.accordion-button:not(.collapsed) {
    color: var(--accent-cyan) !important;
    background-color: var(--card-hover-bg) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-body {
    background-color: var(--card-bg);
    color: var(--text-secondary);
    padding: 20px 24px;
    line-height: 1.6;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.floating-whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp-btn:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}
.floating-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #111625;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.floating-whatsapp:hover .floating-tooltip {
    opacity: 1;
    right: 70px;
}

/* Footer & Disclaimers */
footer {
    background-color: #04070d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}
.disclaimer-box {
    background-color: rgba(255, 184, 0, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.age-restriction-badge {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ff3b30;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 32px;
    text-align: center;
    margin-right: 8px;
}

/* Live Cricket Tracker Section Styles */
#live-tracker {
    background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.04) 0%, transparent 60%);
    position: relative;
}

.live-match-tabs {
    background: rgba(13, 20, 35, 0.8);
    display: flex;
    flex-wrap: wrap;
    padding: 10px 15px 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.live-match-tabs .nav-link {
    background: transparent !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    border-radius: 0 !important;
    color: var(--text-secondary) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-match-tabs .nav-link:hover {
    color: var(--text-primary) !important;
}

.live-match-tabs .nav-link.active {
    color: var(--accent-cyan) !important;
    border-bottom-color: var(--accent-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.live-match-status-badge {
    background: rgba(255, 78, 80, 0.1);
    color: #ff4e50;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 78, 80, 0.2);
    font-weight: 700;
}

.live-score-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .live-score-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
}

.live-team-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.live-team-box.batting {
    border-color: rgba(0, 210, 255, 0.2);
    background: rgba(0, 210, 255, 0.03);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.05);
}

.live-team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-team-score {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.live-team-overs {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.vs-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.live-ticker-wrap {
    background: rgba(8, 12, 20, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin-bottom: 20px;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-ticker-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #ff3b30;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    animation: flashBadge 1.5s infinite;
    white-space: nowrap;
}

/* Animations */
@keyframes pulseGlow {
    0% { opacity: 1; box-shadow: 0 0 5px rgba(220, 53, 69, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 15px rgba(220, 53, 69, 0.8); }
    100% { opacity: 1; box-shadow: 0 0 5px rgba(220, 53, 69, 0.5); }
}

.animate-pulse {
    animation: pulseGlow 1.5s infinite;
}

/* Game Library Cards */
.game-library-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-library-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.game-library-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-library-card:hover .game-library-overlay {
    opacity: 1;
}

/* Promo Cards */
.promo-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.1);
}
.promo-badge {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 1rem;
}

@keyframes flashBadge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.live-ticker-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
}

.cricket-stats-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.cricket-stats-table th {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.cricket-stats-table td {
    font-size: 0.9rem;
    color: #fff;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.cricket-stats-table tr:last-child td {
    border-bottom: none;
}

.odds-grid-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.odds-grid-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.odds-team-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.ball-history-dots {
    display: flex;
    gap: 6px;
    margin-top: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.ball-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.ball-dot.run-4 {
    background: #0077ff;
    border-color: #0077ff;
    box-shadow: 0 0 8px rgba(0, 119, 255, 0.4);
}

.ball-dot.run-6 {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 8px rgba(255, 184, 0, 0.5);
}

.ball-dot.wicket {
    background: #ff3b30;
    border-color: #ff3b30;
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.5);
}

.ball-dot.extra {
    background: rgba(0, 210, 255, 0.2);
    border-color: rgba(0, 210, 255, 0.3);
    color: var(--accent-cyan);
}

/* Odds flashing animations */
@keyframes flashGreen {
    0% { background-color: #2ec4b6 !important; color: #fff !important; }
}

@keyframes flashRed {
    0% { background-color: #ff3b30 !important; color: #fff !important; }
}

.odds-flash-down {
    animation: flashGreen 1s ease;
}

.odds-flash-up {
    animation: flashRed 1s ease;
}

.commentary-scroll {
    max-height: 160px;
    overflow-y: auto;
    background: rgba(8, 12, 20, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
}

.commentary-line {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    line-height: 1.4;
}

.commentary-line:first-child {
    color: #fff;
    font-weight: 500;
}

.commentary-line .event-highlight {
    font-weight: 700;
}

.commentary-line .event-highlight.six { color: var(--accent-gold); }
.commentary-line .event-highlight.four { color: #00d2ff; }
.commentary-line .event-highlight.wicket { color: #ff3b30; }

