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

body {
    font-family: 'Raleway', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-panel {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 50px 40px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.age-gate-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.age-gate-panel h2 {
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.age-gate-panel p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.age-gate-confirm {
    font-weight: 600;
    color: #fff;
}

.age-gate-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.age-btn {
    flex: 1;
    padding: 18px 35px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-yes {
    background: #d4af37;
    color: #000;
}

.age-yes:hover {
    background: #f0c44a;
    transform: scale(1.05);
}

.age-no {
    background: #444;
    color: #fff;
}

.age-no:hover {
    background: #666;
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.nav-brand {
    color: #d4af37;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.nav-hamburger span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    display: block;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f0a 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: 15px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-slogan {
    font-size: 28px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 18px;
    color: #bbb;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #f0c44a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Sections */
.section-dark {
    background: #0a0a0a;
    padding: 80px 20px;
}

.section-light {
    background: #1a1a1a;
    padding: 80px 20px;
}

.section-heading {
    text-align: center;
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-subheading {
    text-align: center;
    font-size: 18px;
    color: #999;
    margin-bottom: 50px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #d4af37;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card-dark:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.card-icon {
    font-size: 56px;
    margin-bottom: 25px;
}

.info-card-dark h3 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-card-dark p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, #2d1f0a 0%, #1a1a1a 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.alert-header {
    background: #d4af37;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-icon {
    font-size: 32px;
}

.alert-header h2 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
}

.alert-body {
    padding: 30px;
}

.alert-body p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    background: #000;
    border: 3px solid #d4af37;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

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

/* Benefits Layout */
.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    background: #1a1a1a;
    border-left: 4px solid #d4af37;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #222;
    transform: translateX(10px);
}

.benefit-number {
    color: #d4af37;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0.5;
}

.benefit-card h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
}

/* Reminder Panel */
.reminder-panel {
    background: linear-gradient(135deg, #d4af37 0%, #f0c44a 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.reminder-panel h3 {
    color: #000;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.reminder-panel p {
    color: #111;
    font-size: 17px;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f0a 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

.page-header h1 {
    color: #d4af37;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-header p {
    color: #aaa;
    font-size: 18px;
}

.header-date {
    color: #888;
    font-size: 14px;
}

/* Instructions Panel */
.instructions-panel {
    background: #1a1a1a;
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.instructions-panel h2 {
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.instruction-item {
    padding: 20px;
    background: #0a0a0a;
    border-left: 3px solid #d4af37;
}

.instruction-item strong {
    color: #d4af37;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.instruction-item p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
}

/* Legal Document */
.legal-document {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 10px;
    border: 1px solid #333;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-document h2 {
    color: #d4af37;
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 16px;
}

.legal-document ul {
    margin: 20px 0 20px 30px;
}

.legal-document li {
    color: #ccc;
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Footer */
.footer-main {
    background: #000;
    border-top: 2px solid #d4af37;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    color: #888;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-list a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
        border-bottom: 2px solid #d4af37;
    }

    .nav-link {
        border-bottom: none;
        border-left: 3px solid transparent;
        padding: 15px 30px;
    }

    .nav-link:hover,
    .nav-link.active {
        border-left-color: #d4af37;
        border-bottom-color: transparent;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 8px;
    }

    .hero-slogan {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-heading {
        font-size: 32px;
    }

    .game-embed {
        height: 400px;
    }

    .legal-document {
        padding: 30px 25px;
    }

    .age-gate-panel {
        padding: 40px 25px;
    }

    .age-gate-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 5px;
    }

    .game-embed {
        height: 300px;
    }

    .nav-brand {
        font-size: 24px;
    }
}
