@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&display=swap');

:root {
    --btn1: #f1a501;
    --btn1-text: #0a0a0a;
    --head: #000e3f;
    --body: #010d3f;
    --footer: #0f2151;
    --fc: #ffffff;
    --card: rgba(255,255,255,.03);
    --muted: rgba(255,255,255,.38);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--body);
    color: var(--fc);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* TOPBAR */
.topbar {
    position: sticky;
    top: 0;
    height: 51px;
    background: var(--head);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    gap: 24px;
}

.topbar .logo {
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fc);
    text-decoration: none;
    white-space: nowrap;
}

.topbar nav {
    display: flex;
    gap: 18px;
    flex: 1;
}

.topbar nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
    white-space: nowrap;
}

.topbar nav a:hover {
    color: var(--fc);
}

.topbar-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.topbar .btn-login {
    border: 1px solid var(--btn1);
    color: var(--btn1);
    padding: 6px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: background .2s;
}

.topbar .btn-login:hover {
    background: rgba(241,165,1,.1);
}

.topbar .btn-reg {
    background: var(--btn1);
    color: var(--btn1-text);
    padding: 6px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: transform .2s;
}

.topbar .btn-reg:hover {
    transform: translateY(-1px);
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    left: 0;
    top: 51px;
    width: 51px;
    height: calc(100vh - 51px);
    background: var(--head);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 16px;
    z-index: 90;
    border-right: 1px solid rgba(255,255,255,.08);
}

.sidebar a {
    font-size: 20px;
    text-decoration: none;
    opacity: .5;
    transition: opacity .2s;
}

.sidebar a:hover {
    opacity: 1;
}

/* MAIN */
.main {
    margin-left: 51px;
    padding: 0 24px 40px;
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 24px;
    padding: 40px 0;
    align-items: center;
}

.hero .label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-group {
    display: flex;
    gap: 12px;
}

.hero-img {
    background: linear-gradient(135deg, rgba(241,165,1,.15), rgba(1,13,63,.8));
    border-radius: 16px;
    min-height: 200px;
}

/* STATS */
.stats {
    display: flex;
    gap: 0;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.06);
    margin-bottom: 32px;
}

.stats .item {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    border-right: 1px solid rgba(255,255,255,.06);
}

.stats .item:last-child {
    border-right: none;
}

.stats .num {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--btn1);
}

.stats .label {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

/* LIVE WINS */
.livewins {
    overflow: hidden;
    background: var(--card);
    border-radius: 10px;
    padding: 12px 0;
    margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,.06);
}

.lw-track {
    display: flex;
    gap: 16px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.lw-item {
    flex-shrink: 0;
    background: rgba(255,255,255,.04);
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.lw-item .name {
    font-weight: 600;
}

.lw-item .amount {
    color: var(--btn1);
    font-weight: 700;
}

.lw-item .game {
    color: var(--muted);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SECTIONS */
.section {
    margin-bottom: 32px;
}

.section .tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    color: var(--btn1);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section .tag::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(241,165,1,.2);
}

.section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--btn1);
}

.section p {
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 14px;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

thead th {
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--btn1);
    font-size: 11px;
    text-align: left;
    padding: 10px 14px;
    border-bottom: 2px solid rgba(241,165,1,.2);
}

tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 13px;
    color: rgba(255,255,255,.65);
}

/* SLOT GRID */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(116px, 1fr));
    gap: 10px;
    margin-bottom: 32px;
}

.slot-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(255,255,255,.06);
    cursor: pointer;
    transition: transform .2s, border .2s;
}

.slot-card:hover {
    transform: scale(1.03);
    border-color: var(--btn1);
}

.slot-card .img {
    aspect-ratio: 400/550;
    background-size: cover;
    background-position: center;
    background-color: #0a1030;
}

.slot-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.58);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
}

.slot-card:hover .overlay {
    opacity: 1;
}

.slot-card .overlay a {
    background: var(--btn1);
    color: var(--btn1-text);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
}

.slot-card .title {
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* BONUSES */
.bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.bonus-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 20px;
    transition: border .2s;
}

.bonus-card:hover {
    border-color: var(--btn1);
}

.bonus-card .emoji {
    font-size: 32px;
    margin-bottom: 10px;
}

.bonus-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-card p {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
}

.bonus-card .wager {
    margin-top: 10px;
    font-size: 11px;
    color: var(--btn1);
    font-weight: 600;
}

/* PAYMENTS */
.payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.payments .method {
    background: var(--card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--muted);
}

/* FAQ */
.faq details {
    background: var(--card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 9px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq summary {
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    font-size: 18px;
    color: var(--btn1);
    transition: transform .3s;
}

.faq details[open] summary::after {
    transform: rotate(45deg);
}

.faq details[open] {
    border-color: var(--btn1);
}

.faq .answer {
    padding: 0 18px 14px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: var(--footer);
    padding: 30px 24px;
    margin-left: 51px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer .logo {
    font-size: 18px;
    font-weight: 800;
}

.footer .legal {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

.footer .badges {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer .badge {
    background: rgba(255,255,255,.06);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
}

/* BUTTONS */
.btn-primary {
    background: var(--btn1);
    color: var(--btn1-text);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: transform .2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--btn1);
    color: var(--btn1);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(241,165,1,.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .sidebar {
        display: none;
    }

    .main {
        margin-left: 0;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero .hero-img {
        display: none;
    }

    .topbar nav {
        display: none;
    }

    .stats {
        flex-wrap: wrap;
    }

    .stats .item {
        flex: 50%;
    }

    .footer {
        grid-template-columns: 1fr;
        margin-left: 0;
    }

    .footer .badges {
        justify-content: flex-start;
    }
}