:root {
    --green: #0A8F3C;
    --gold: #F4B400;
    --bg: #f5f6f4;
    --text: #1d2527;
    --muted: #5a666c;
    --card: #ffffff;
    --radius: 12px;
    --shadow: 0 12px 30px rgba(0,0,0,0.06);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar {
    background: var(--card);
    border-bottom: 1px solid #e2e5e7;
    padding: 16px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow);
    width: 100%;
}

.menu-wrap {
    position: sticky;
    top: 0;
    background: var(--card);
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e5e7;
    z-index: 11;
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--green);
    letter-spacing: -0.5px;
}
.logo span { color: var(--gold); }

.side-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 12px 0 10px;
}
.side-nav a {
    padding: 8px 12px;
    background: #eef2ee;
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.live-now {
    margin-top: 12px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(10,143,60,0.1), rgba(244,180,0,0.08));
    border-radius: var(--radius);
    border: 1px solid rgba(10,143,60,0.1);
}
.live-header {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.live-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #d7dcdf;
}
.live-match:last-child { border-bottom: none; }
.live-match p { margin: 0; font-weight: 700; }
.live-match span { color: var(--muted); font-size: 0.9rem; }
.live-match button {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
}

.casino-now {
    margin-top: 12px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(244,180,0,0.12), rgba(10,143,60,0.08));
    border-radius: var(--radius);
    border: 1px solid rgba(244,180,0,0.2);
    box-shadow: var(--shadow);
}
.casino-game {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #e6d9b0;
}
.casino-game:last-child { border-bottom: none; }
.casino-game p { margin: 0; font-weight: 800; color: #4d3a0a; }
.casino-game span { color: var(--muted); font-size: 0.9rem; }
.casino-game button {
    background: #fff8e6;
    color: #7a5a00;
    border: 1px solid rgba(244,180,0,0.8);
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 800;
}

.content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.hero {
    background: var(--card);
    border-radius: var(--radius);
    padding: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='10' cy='10' r='2' fill='%230A8F3C' fill-opacity='0.06'/%3E%3Ccircle cx='60' cy='60' r='2' fill='%230A8F3C' fill-opacity='0.06'/%3E%3Ccircle cx='110' cy='110' r='2' fill='%230A8F3C' fill-opacity='0.06'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}
.hero-grid { display: grid; gap: 14px; position: relative; z-index: 1; }
.hero-text h1 { margin: 4px 0 10px; font-size: 1.9rem; line-height: 1.2; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.eyebrow { text-transform: uppercase; letter-spacing: 1px; font-weight: 800; color: var(--green); font-size: 0.85rem; margin: 0; }
.meta-grid { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.meta-label { color: var(--muted); font-size: 0.85rem; }

.hero-odds {
    background: #0b1b14;
    color: #eaf3ec;
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: inset 0 0 0 1px rgba(10,143,60,0.2);
}
.odds-header { font-weight: 800; letter-spacing: 0.5px; margin-bottom: 10px; }
.odds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.odd-card { background: rgba(14,38,25,0.7); border-radius: var(--radius); padding: 12px; border: 1px solid rgba(244,180,0,0.15); }
.odd-card.tall { grid-row: span 2; }
.odd-row { display: flex; justify-content: space-between; margin-top: 6px; }

.stats-ribbon {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    position: relative;
    z-index: 1;
}
.stats-ribbon div {
    background: #eef2ee;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}
.stats-ribbon span { color: var(--muted); font-size: 0.9rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid transparent;
}
.btn.primary { background: var(--green); color: #fff; }
.btn.ghost { background: transparent; color: var(--text); border-color: rgba(10,143,60,0.4); }

.sports-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
}
.sports-grid .grid-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 26px 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: #0d3a1f;
    box-shadow: var(--shadow);
}
.sports-grid .wide { grid-column: span 2; }
.sports-grid .tall { grid-row: span 2; }
.sports-grid .short { padding: 18px 16px; }

.live-banner {
    background: linear-gradient(120deg, rgba(10,143,60,0.12), rgba(244,180,0,0.12));
    border-radius: var(--radius);
    padding: 18px;
    display: grid;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.live-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 Q40 60 80 80 T160 80' stroke='%230A8F3C' stroke-width='2' fill='none' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
}
.live-copy { position: relative; z-index: 1; }
.live-list { position: relative; z-index: 1; display: grid; gap: 10px; }
.live-item { background: rgba(255,255,255,0.9); padding: 12px; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.live-item button { background: var(--gold); border: none; padding: 10px 14px; border-radius: 10px; font-weight: 800; color: #3a3000; }
.live-item span { color: var(--muted); font-size: 0.9rem; }

.bonuses {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.bonus-card {
    background: var(--card);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(10,143,60,0.12);
}
.bonus-card.large { min-height: 220px; }
.bonus-card.small { min-height: 170px; }
.bonus-card .amount { font-size: 2rem; color: var(--green); margin: 8px 0; font-weight: 900; }

.timeline {
    position: relative;
    padding: 10px 0 10px 24px;
}
.timeline h2 { margin: 0 0 12px; }
.timeline-line {
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--green), var(--gold));
}
.steps { display: grid; gap: 14px; }
.step { position: relative; padding-left: 22px; }
.step.offset { margin-left: 16px; }
.marker {
    position: absolute;
    left: -4px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--card);
    border: 3px solid var(--green);
    border-radius: 50%;
}
.step-content { background: #eef2ee; padding: 12px; border-radius: var(--radius); box-shadow: 0 8px 20px rgba(0,0,0,0.05); }

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.testimonial {
    background: var(--card);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 6px solid var(--gold);
}
.testimonial.wide { min-height: 140px; }
.testimonial.compact { min-height: 110px; }
.testimonial.tall { min-height: 180px; }
.testimonial p { margin-top: 0; font-size: 1.02rem; }
.testimonial span { color: var(--muted); font-weight: 700; }

.footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0 70px;
    font-size: 0.95rem;
    color: var(--muted);
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--text); text-decoration: none; font-weight: 700; }

.story {
    background: var(--card);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(10,143,60,0.12);
}
.story h2 { margin-top: 0; }
.story h3 { margin-bottom: 8px; color: var(--green); }
.story p { margin: 0 0 10px; color: var(--muted); }

.support-bar {
    position: sticky;
    bottom: 0;
    background: #0a8f3c;
    color: #fff;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    z-index: 20;
}
.support-actions { display: flex; gap: 8px; }
.support-bar .btn { min-height: 44px; border-color: rgba(255,255,255,0.7); color: #fff; }
.support-bar .btn.ghost { color: #fff; }

@media (min-width: 768px) {
    body { padding: 10px; }
    .layout { gap: 16px; flex-direction: row; }
    .sidebar {
        width: 240px;
        min-height: 100vh;
        border-right: 1px solid #e2e5e7;
        border-bottom: none;
        position: sticky;
        top: 12px;
        border-radius: var(--radius);
    }
    .side-nav { flex-direction: column; }
    .side-nav a { width: 100%; }
    .content { padding: 0; }
    .hero-grid { grid-template-columns: 1.2fr 1fr; align-items: stretch; }
    .stats-ribbon { grid-template-columns: repeat(4, minmax(0,1fr)); }
    .sports-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .live-banner { grid-template-columns: 1.1fr 1fr; align-items: center; }
    .bonuses { grid-template-columns: 1.4fr 1fr; }
    .bonuses .large { grid-row: span 2; }
    .testimonials { grid-template-columns: repeat(4, 1fr); grid-template-rows: masonry; }
    .testimonial.wide { grid-column: span 2; }
    .testimonial.tall { grid-row: span 2; }
    .footer { grid-template-columns: 1fr 1fr; padding-bottom: 30px; }
    .support-bar { position: fixed; left: 0; right: 0; }
}

@media (min-width: 1024px) {
    .content { padding-right: 20px; gap: 28px; }
    .hero { padding: 22px; }
    .hero-text h1 { font-size: 2.4rem; }
    .sports-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
    .sports-grid .wide { grid-column: span 2; }
    .sports-grid .tall { grid-row: span 2; }
    .bonuses .large { min-height: 260px; }
    .bonuses .small { min-height: 200px; }
    .testimonials { grid-template-columns: repeat(6, 1fr); }
    .testimonial.wide { grid-column: span 3; }
    .testimonial.compact { grid-column: span 2; }
    .testimonial.tall { grid-column: span 2; grid-row: span 2; }
}