/* 
   BIZZO CASINO AUSTRALIA - DARK NEON LUXURY (MooWin Style)
   DESIGN SYSTEM 2026
*/

:root {
    --bg-main: #0E1116;
    --bg-card: rgba(20, 24, 33, 0.8);
    --accent-neon: #39FF14;
    /* Neon Green */
    --accent-amber: #FFBF00;
    /* Amber CTA */
    --accent-cyan: #00F5FF;
    --text-main: #FFFFFF;
    --text-dim: #94A3B8;
    --border-glow: rgba(57, 255, 20, 0.2);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* NAVIGATION */
header {
    background: rgba(14, 17, 22, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--accent-neon);
}

.btn-neon {
    background: var(--accent-neon);
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 15px var(--border-glow);
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--accent-neon);
}

.btn-amber {
    background: var(--accent-amber);
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-amber:hover {
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.4);
}

/* HERO SLIDER */
.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s linear;
    transform: scale(1.05);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(14, 17, 22, 0.7), rgba(14, 17, 22, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, #94A3B8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* CARDS & GLASSMORPHISM */
.content-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    border-left: 5px solid var(--accent-neon);
    padding-left: 20px;
}

/* FOOTER */
footer {
    background: #000;
    padding: 100px 0 40px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* UTILITIES */
.accent-glow {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.neon-glow {
    color: var(--accent-neon);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

/* EXPERT NAV & SCORECARD */
#expert-nav {
    background: linear-gradient(180deg, rgba(14, 17, 22, 1) 0%, rgba(20, 24, 33, 1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-panel h3,
.scorecard h3 {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.toc-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.toc-link::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-neon);
}

.toc-link:hover {
    color: var(--accent-neon);
    transform: translateX(5px);
}

.scorecard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.score-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-cyan);
    transition: 0.3s;
}

.score-item:hover {
    background: rgba(0, 245, 255, 0.05);
}

.score-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: block;
    margin-bottom: 5px;
}

.score-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

@media (max-width: 968px) {
    #expert-nav .container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }

    .scorecard-grid {
        grid-template-columns: 1fr;
    }
}