@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --bg-black: #050a14;
    --bg-deep: #0a1224;
    --bg-sidebar: #0f1930;
    --bg-card: #182542;
    --dk-green: #37ff00;
    --dk-green-soft: rgba(55, 255, 0, 0.15);
    --text-white: #ffffff;
    --text-muted: #8a9cb5;
    --border-soft: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.03);
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* 🎬 ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(55, 255, 0, 0.2); }
    50% { box-shadow: 0 0 20px rgba(55, 255, 0, 0.5); }
    100% { box-shadow: 0 0 5px rgba(55, 255, 0, 0.2); }
}

.fade-in { animation: fadeIn 0.4s ease forwards; }

/* 🏔️ HERO SECTION */
.hero-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: 0.5s ease;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, rgba(5,10,20,1) 0%, rgba(5,10,20,0.4) 100%);
}

.hero-content { position: relative; z-index: 2; }

/* 🏟️ MATCH ROW DESIGN */
.match-row {
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-soft);
    padding: 20px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    border-radius: 12px;
    margin-bottom: 10px;
}

.match-row:hover { background: #0e1a31; transform: scale(1.01); }

.team-indicator { width: 4px; height: 20px; background: var(--dk-green); margin-right: 15px; border-radius: 2px; box-shadow: 0 0 10px var(--dk-green); }

.team-name-row { font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; margin-bottom: 5px; }

/* 📊 ODDS DESIGN */
.odds-matrix { display: flex; gap: 10px; }
.odd-btn {
    width: 85px; height: 55px;
    background: #141f33;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.odd-btn:hover { background: #1d2d4a; border-color: var(--dk-green); }
.odd-btn.active { background: var(--dk-green) !important; animation: glow 1.5s infinite; }
.odd-btn.active .val, .odd-btn.active .lbl { color: #000 !important; }

.odd-btn .val { font-weight: 800; color: var(--dk-green); font-size: 1rem; }
.odd-btn .lbl { font-size: 0.65rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; }

/* 📱 MOBILE FLOATING BETSLIP */
#mobileBetslipFab {
    position: fixed; bottom: 25px; right: 25px;
    width: 65px; height: 65px; border-radius: 50%;
    background: var(--dk-green); color: #000;
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px var(--dk-green-soft); z-index: 2000; border: none; font-size: 1.4rem;
}

@media (max-width: 991px) { #mobileBetslipFab { display: flex; } .main { padding: 15px; } }

/* NAVBAR & SIDEBAR */
.navbar-paryaj { background: var(--bg-deep); padding: 15px 30px; border-bottom: 2px solid var(--border-soft); position: sticky; top: 0; z-index: 1000; }
.fd-sidebar { background: var(--bg-sidebar); min-height: 100vh; padding: 30px 20px; border-right: 1px solid var(--border-soft); }
.fd-side-link { display: flex; align-items: center; padding: 15px; color: var(--text-muted); text-decoration: none; font-weight: 600; border-radius: 10px; margin-bottom: 5px; transition: 0.3s; }
.fd-side-link:hover, .fd-side-link.active { background: var(--dk-green-soft); color: var(--dk-green); }
.fd-side-link i { margin-right: 15px; font-size: 1.2rem; }

/* BETSLIP */
.betslip-card { background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border-soft); overflow: hidden; position: sticky; top: 100px; }
.betslip-header { background: #1a2a4d; padding: 20px; font-weight: 800; display: flex; justify-content: space-between; border-bottom: 2px solid var(--dk-green); }

.no-print { display: block; }
@media print { .no-print { display: none; } }
