@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;800&display=swap');

:root {
    --bg-dark: #070e0a;
    --bg-panel: #0d1b14;
    --bg-hover: #13271c;
    --primary: #00ff66;
    --primary-dim: rgba(0, 255, 102, 0.2);
    --gold: #ffcc00;
    --text-main: #f0fdf4;
    --text-muted: #86a392;
    --border: rgba(0, 255, 102, 0.1);
    
    --sidebar-width: 280px;
    --rad-lg: 24px;
    --rad-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* Layout */
.dash-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-panel);
    border-right: 1px solid var(--border);
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    z-index: 100;
}

.sidebar-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 40px;
    padding-left: 10px;
}
.neon-dot {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-nav a {
    display: flex;
    padding: 12px 15px;
    border-radius: var(--rad-sm);
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s;
}
.sidebar-nav a:hover {
    background: var(--bg-hover);
    color: var(--text-main);
    transform: translateX(5px);
}

.sidebar-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Ticker Sidebar */
.sidebar-ticker {
    margin-top: auto;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--rad-sm);
    overflow: hidden;
    padding-top: 15px;
}
.ticker-title {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    padding: 0 15px 10px;
    border-bottom: 1px solid var(--border);
}
.ticker-box {
    height: 160px;
    position: relative;
    overflow: hidden;
}
.ticker-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: scroll-up 20s linear infinite;
}
.tick-item {
    padding: 10px 15px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    display: flex;
    justify-content: space-between;
}
.tick-item span { color: var(--gold); }

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

/* Buttons */
.btn-neon-ghost {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 20px;
    border-radius: var(--rad-sm);
    font-weight: 800;
    text-align: center;
    transition: all 0.3s;
}
.btn-neon-ghost:hover {
    background: var(--primary-dim);
    box-shadow: 0 0 15px var(--primary-dim);
}

.btn-neon-solid {
    background: var(--primary);
    color: #000;
    border: 1px solid var(--primary);
    padding: 12px 20px;
    border-radius: var(--rad-sm);
    font-weight: 800;
    text-align: center;
    transition: all 0.3s;
}
.btn-neon-solid:hover {
    background: #00e65c;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}
.btn-lg { padding: 16px 32px; font-size: 18px; display: inline-block; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-neon-text { color: var(--primary); font-weight: 800; font-size: 14px; }

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 40px 5%;
    max-width: 1300px;
}

.mobile-header { display: none; }

/* Hero */
.hero-board {
    background: radial-gradient(circle at right center, var(--bg-hover) 0%, var(--bg-panel) 100%);
    border: 1px solid var(--border);
    border-radius: var(--rad-lg);
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.hero-board::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--primary-dim) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { flex: 1; z-index: 2; }
.hero-h1 { font-size: 56px; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.hero-h1 span { color: var(--primary); }
.hero-lead { font-size: 18px; color: var(--text-muted); margin-bottom: 30px; max-width: 500px; }

.hero-jackpot-panel {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--rad-lg);
    text-align: center;
    min-width: 300px;
    z-index: 2;
    backdrop-filter: blur(10px);
}
.j-label { color: var(--text-muted); text-transform: uppercase; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.j-amount { font-size: 38px; font-weight: 800; color: var(--gold); text-shadow: 0 0 20px rgba(255, 204, 0, 0.3); }

.section-heading { font-size: 32px; font-weight: 800; margin-bottom: 30px; }

/* Bento Bonuses */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
    margin-bottom: 80px;
}
.bento-item {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--rad-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, border-color 0.3s;
}
.bento-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--bg-panel) 0%, #0d2b1c 100%);
    position: relative;
    overflow: hidden;
}
.b-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.b-image img {
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 255, 102, 0.2));
    transition: transform 0.4s;
}
.bento-large:hover .b-image img {
    transform: translateY(-10px) scale(1.05);
}
.b-icon { font-size: 32px; margin-bottom: 20px; }
.bento-large .b-icon { font-size: 48px; }
.b-text h3 { font-size: 20px; margin-bottom: 10px; }
.bento-large h3 { font-size: 28px; }
.b-text p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }

/* Slots Vault */
.slot-vault { margin-bottom: 80px; }
.vault-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}
.vault-card {
    position: relative;
    border-radius: var(--rad-sm);
    overflow: hidden;
    aspect-ratio: 1/1;
    border: 1px solid transparent;
}
.vault-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.v-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,255,102,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.v-hover span {
    color: #000; font-weight: 800; font-size: 18px; text-transform: uppercase; text-align: center;
}
.vault-card:hover img { transform: scale(1.1); filter: grayscale(100%); }
.vault-card:hover .v-hover { opacity: 1; }
.vault-cta { text-align: center; margin-top: 40px; }

/* SEO Article */
.seo-article {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--rad-lg);
    padding: 60px;
    margin-bottom: 80px;
}
.article-body h1 { font-size: 32px; margin-bottom: 20px; font-weight: 800; }
.article-body h2 { font-size: 24px; margin: 40px 0 15px; font-weight: 800; color: var(--primary); }
.article-body p { margin-bottom: 15px; color: var(--text-muted); font-size: 16px; }
.article-body ul { margin-bottom: 20px; padding-left: 20px; color: var(--text-muted); list-style: disc; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--text-main); }

.table-wrap { overflow-x: auto; margin: 30px 0; }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid var(--border); }
th { color: var(--primary); font-weight: 800; }
td { color: var(--text-muted); }

/* FAQ Accordion */
.faq-accordion { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--rad-sm);
    overflow: hidden;
}
.faq-item summary {
    padding: 20px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::after {
    content: '+';
    position: absolute; right: 20px; top: 50%;
    transform: translateY(-50%); font-size: 24px; color: var(--primary);
}
.faq-item[open] summary::after { content: '-'; }
.faq-content {
    padding: 0 20px 20px;
    color: var(--text-muted);
}
.faq-item[open] { border-color: var(--primary); box-shadow: 0 0 15px var(--primary-dim); }

/* Footer */
.dash-footer {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    padding-bottom: 20px;
}
.f-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.f-brand { font-size: 24px; font-weight: 800; }
.f-links { display: flex; gap: 20px; flex-wrap: wrap; }
.f-links a { color: var(--text-muted); font-size: 14px; }
.f-links a:hover { color: var(--primary); }
.f-bottom { color: #555; font-size: 13px; text-align: center; }

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-large { grid-column: span 2; }
    .hero-board { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .dash-layout { flex-direction: column; }
    .sidebar { display: none; }
    .main-content { margin-left: 0; padding: 20px; }
    
    .mobile-header {
        display: flex; justify-content: space-between; align-items: center;
        background: var(--bg-panel);
        padding: 15px 20px;
        margin: -20px -20px 30px;
        border-bottom: 1px solid var(--border);
        position: sticky; top: 0; z-index: 100;
    }
    .mobile-header .sidebar-logo { margin: 0; padding: 0; font-size: 22px; }
    
    .hero-h1 { font-size: 40px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large { grid-column: span 1; grid-row: span 1; }
    .seo-article { padding: 30px 20px; }
}
