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

:root {
    --midnight: #0d1b2a;
    --navy: #1b263b;
    --steel: #415a77;
    --silver: #778da9;
    --pearl: #e0e1dd;
    --accent: #ffd700;
    --accent-hover: #ffed4a;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--midnight);
    color: var(--pearl);
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-hover);
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 27, 42, 0.98);
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--accent);
    margin: 6px 0;
    transition: 0.4s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--pearl);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

@media (max-width: 800px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s;
    }
    
    .nav-links.open {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
}

/* Main Wrapper */
.main-wrapper {
    padding-top: 70px;
}

/* Hero Banner */
.banner {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--midnight) 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 25px;
}

.banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.banner-text {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.banner-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--pearl);
    margin-bottom: 25px;
    line-height: 1.2;
}

.banner-text h1 span {
    color: var(--accent);
}

.banner-text p {
    font-size: 1.15rem;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Alerts */
.alert-strip {
    background: var(--navy);
    border-left: 4px solid var(--accent);
    padding: 25px 30px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 0 8px 8px 0;
}

.alert-strip h4 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.alert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--silver);
}

.alert-item span:first-child {
    font-size: 1.2rem;
}

/* Game Display */
.game-display {
    padding: 50px 25px;
    background: var(--midnight);
}

.game-container {
    max-width: 1300px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

@media (max-width: 800px) {
    .game-embed {
        height: 450px;
    }
}

/* Sections */
.section {
    padding: 80px 25px;
}

.section.dark {
    background: var(--navy);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--pearl);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--silver);
    max-width: 650px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: var(--midnight);
    padding: 35px;
    border-radius: 10px;
    border-top: 3px solid var(--accent);
    transition: transform 0.3s;
}

.section.dark .info-card {
    background: rgba(13, 27, 42, 0.6);
}

.info-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--silver);
    font-size: 0.95rem;
}

/* Text Content */
.text-block {
    max-width: 950px;
    margin: 0 auto;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--silver);
}

/* Footer */
.bottom-footer {
    background: #060d14;
    padding: 45px 25px 25px;
    border-top: 1px solid var(--navy);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gaming-help {
    margin-bottom: 30px;
}

.gaming-help h5 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 18px;
}

.help-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 35px;
}

.help-links a {
    color: var(--silver);
    font-size: 0.9rem;
}

.copyright {
    padding-top: 25px;
    border-top: 1px solid var(--navy);
    color: var(--steel);
    font-size: 0.85rem;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate.dismissed {
    display: none;
}

.gate-box {
    background: var(--navy);
    padding: 50px 45px;
    border-radius: 12px;
    text-align: center;
    max-width: 480px;
    margin: 20px;
    border: 2px solid var(--accent);
}

.gate-box h2 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.gate-box p {
    color: var(--silver);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.gate-btn {
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.gate-btn.confirm {
    background: var(--accent);
    color: var(--midnight);
}

.gate-btn.deny {
    background: transparent;
    border: 2px solid var(--steel);
    color: var(--steel);
}

.gate-btn:hover {
    transform: scale(1.05);
}

.gate-btn.confirm:hover {
    background: var(--accent-hover);
}

/* Page Intro */
.page-intro {
    padding: 130px 25px 60px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--midnight) 100%);
    text-align: center;
}

.page-intro h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 15px;
}

.page-intro p {
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 25px;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin: 45px 0 20px;
    color: var(--accent);
}

.legal-section h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    color: var(--pearl);
}

.legal-section p {
    margin-bottom: 18px;
    color: var(--silver);
    font-size: 1rem;
}

.legal-section ul {
    margin: 18px 0 18px 30px;
    color: var(--silver);
}

.legal-section li {
    margin-bottom: 10px;
}

/* Play Page */
.play-area {
    padding: 90px 25px 50px;
}

.play-notes {
    max-width: 800px;
    margin: 25px auto 0;
    text-align: center;
    color: var(--silver);
    font-size: 0.95rem;
}
