* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

/* Age Verification Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 3px solid #d4af37;
    padding: 50px;
    border-radius: 10px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    animation: modalFade 0.5s ease-out;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.modal-box h2 {
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 20px;
}

.modal-box p {
    color: #b0b0b0;
    margin-bottom: 35px;
    font-size: 17px;
}

.modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: #3a3a3a;
    color: #888;
}

.btn-secondary:hover {
    background: #4a4a4a;
}

/* Top Navigation */
.navbar {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-links li a {
    display: block;
    padding: 12px 25px;
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23d4af37" fill-opacity="0.1" d="M0,0 L50,10 L100,0 L150,10 L200,0 L250,10 L300,0 L350,10 L400,0 L450,10 L500,0 L550,10 L600,0 L650,10 L700,0 L750,10 L800,0 L850,10 L900,0 L950,10 L1000,0 L1050,10 L1100,0 L1150,10 L1200,0 L1200,120 L0,120 Z"></path></svg>') bottom repeat-x;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 56px;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-text p {
    font-size: 22px;
    color: #e0e0e0;
    margin-bottom: 35px;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
}

/* Content Wrapper */
.content-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Alert Section */
.alerts {
    padding: 80px 0;
    background: #242424;
}

.alert-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.alert-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid;
    background: #2d2d2d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.alert-box:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.alert-box.red {
    border-left-color: #e74c3c;
}

.alert-box.blue {
    border-left-color: #3498db;
}

.alert-box.gold {
    border-left-color: #d4af37;
}

.alert-symbol {
    font-size: 40px;
    line-height: 1;
}

.alert-box h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 20px;
}

.alert-box p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 20px;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text p {
    color: #b0b0b0;
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: #2d2d2d;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 19px;
}

.feature-card p {
    color: #888;
    font-size: 14px;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 0;
    background: #242424;
}

.section-subtitle {
    color: #888;
    font-size: 18px;
    margin-top: 15px;
}

.game-embed {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
    border: 3px solid #d4af37;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-disclaimer {
    background: #2d2d2d;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #f4d03f;
    color: #b0b0b0;
    font-size: 16px;
}

.game-disclaimer strong {
    color: #d4af37;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 2px solid #3a3a3a;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #d4af37;
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Extra Info */
.extra-info {
    padding: 80px 0;
    background: #1a1a1a;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-col {
    background: #2d2d2d;
    padding: 35px;
    border-radius: 8px;
    border-top: 3px solid #d4af37;
}

.info-col h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 24px;
}

.info-col p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Play Page */
.play-page {
    padding: 80px 0;
    min-height: calc(100vh - 300px);
    background: #1a1a1a;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 15px;
}

.page-title p {
    font-size: 20px;
    color: #888;
}

.play-instructions {
    background: #2d2d2d;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    border: 2px solid #3a3a3a;
}

.play-instructions h3 {
    color: #d4af37;
    margin-bottom: 25px;
    font-size: 26px;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.instruction-item {
    background: #242424;
    padding: 20px;
    border-radius: 6px;
    border-left: 3px solid #d4af37;
    color: #b0b0b0;
    font-size: 15px;
}

.instruction-item strong {
    color: #d4af37;
    display: block;
    margin-bottom: 8px;
}

.critical-note {
    background: #3a2f1a;
    padding: 20px;
    border-radius: 6px;
    border: 2px solid #d4af37;
    color: #f4d03f;
    text-align: center;
    font-size: 16px;
}

.game-arena {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
    border: 3px solid #d4af37;
}

.arena-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.play-footnote {
    background: #2d2d2d;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    color: #888;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background: #1a1a1a;
    min-height: calc(100vh - 300px);
}

.updated-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-document {
    background: #2d2d2d;
    padding: 50px;
    border-radius: 10px;
    border: 2px solid #3a3a3a;
}

.legal-document h2 {
    color: #d4af37;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 28px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #b0b0b0;
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-document ul {
    margin: 20px 0;
    padding-left: 40px;
    color: #b0b0b0;
}

.legal-document ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.terms-footer {
    margin-top: 50px;
    padding: 30px;
    background: #242424;
    border-radius: 8px;
    border: 2px solid #d4af37;
}

.terms-footer p {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.terms-footer ul {
    list-style: none;
    padding-left: 0;
}

.terms-footer ul li {
    color: #b0b0b0;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border-top: 3px solid #d4af37;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    color: #666;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 2px solid #d4af37;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li a {
        padding: 15px;
        border-bottom: 1px solid #2d2d2d;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .alert-row,
    .about-grid,
    .info-columns {
        grid-template-columns: 1fr;
    }

    .game-iframe,
    .arena-frame {
        height: 450px;
    }

    .legal-document {
        padding: 30px 20px;
    }

    .page-title h1 {
        font-size: 36px;
    }

    .modal-box {
        margin: 20px;
        padding: 35px 25px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .game-iframe,
    .arena-frame {
        height: 350px;
    }
}
