:root {
    --bg-dark: #05020a;
    --bg-obsidian: #0e081a;
    --bg-card: rgba(14, 8, 26, 0.95);
    --accent-pink: #ff0055;
    --accent-orange: #ff5500;
    --accent-purple: #9d00ff;
    --glass-purple: rgba(157, 0, 255, 0.05);
    --text-white: #ffffff;
    --text-silver: #b0b0b0;
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --neon-gradient: linear-gradient(135deg, #ff0055 0%, #ff5500 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 5% 5%, rgba(157, 0, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 95% 95%, rgba(255, 0, 85, 0.1) 0%, transparent 40%);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* STICKY HEADER */
.sticky-header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(5, 2, 10, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 60px;
    border: 1px solid rgba(255, 0, 85, 0.15);
    padding: 10px 30px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.nav-links a {
    color: var(--text-silver);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 20px;
    font-weight: 700;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-pink);
}

.btn-neon {
    background: var(--neon-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 0, 85, 0.3);
    transition: 0.4s;
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 85, 0.5);
}

/* SIDEBAR TOC */
.toc-sidebar {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border-left: 4px solid var(--accent-pink);
    padding: 35px;
    z-index: 900;
    border-radius: 0 20px 20px 0;
}

.toc-sidebar h4 {
    font-family: var(--font-head);
    color: var(--accent-pink);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.toc-sidebar ul {
    list-style: none;
}

.toc-sidebar li {
    margin-bottom: 15px;
}

.toc-sidebar a {
    color: #777;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.toc-sidebar a:hover {
    color: var(--text-white);
    padding-left: 8px;
}

/* HERO SLIDER */
.hero-slider {
    margin-top: 130px;
    height: 750px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    padding-left: 100px;
    max-width: 800px;
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 25px;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BENTO GRID */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin: 80px 0;
}

.bento-card {
    background: var(--bg-card);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    transition: 0.4s;
}

.bento-card:hover {
    border-color: rgba(255, 0, 85, 0.3);
    transform: scale(1.02);
}

.span-8 {
    grid-column: span 8;
}

.span-4 {
    grid-column: span 4;
}

.span-12 {
    grid-column: span 12;
}

/* SLOTS MATRIX */
.pokie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pokie-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    transition: 0.5s;
}

.pokie-card:hover {
    background: rgba(255, 0, 85, 0.05);
    border-color: var(--accent-pink);
    transform: translateY(-10px);
}

.pokie-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--bg-obsidian);
    padding: 30px;
    border-radius: 20px;
}

.faq-item h4 {
    color: var(--accent-orange);
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .toc-sidebar {
        display: none;
    }

    .hero-content {
        padding-left: 40px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    .pokie-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .span-8,
    .span-4 {
        grid-column: span 12;
    }
}