* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8960E;
    --light-gold: #FFD700;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--black);
    color: var(--text-white);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header */
.main-header {
    background: var(--dark-gray);
    border-bottom: 3px solid var(--gold);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-description {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Intro Content */
.intro-content {
    padding: 80px 0;
}

.content-block {
    background: var(--dark-gray);
    padding: 50px;
    margin-bottom: 30px;
    border-left: 5px solid var(--gold);
    border-radius: 5px;
}

.content-block.highlight-block {
    background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
    border-left-color: var(--light-gold);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.block-icon {
    font-size: 48px;
}

.content-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--gold);
}

.content-block p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 17px;
}

.guidelines {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guideline-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 5px;
}

.guideline-label {
    font-weight: 700;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.guideline-text {
    color: var(--text-muted);
}

/* Game Showcase */
.game-showcase {
    padding: 80px 0;
    background: var(--dark-gray);
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

.showcase-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.game-display {
    background: var(--medium-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 2px solid var(--gold);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 5px;
}

.game-info {
    text-align: center;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    border: 1px solid var(--gold);
    color: var(--text-muted);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    text-align: center;
    color: var(--gold);
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--medium-gray);
    transition: transform 0.3s, border-color 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Responsibility Banner */
.responsibility-banner {
    padding: 60px 0;
    background: var(--dark-gray);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.banner-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.banner-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 25px;
}

.banner-content p {
    color: var(--text-muted);
    font-size: 17px;
}

/* Play Page */
.page-title-section {
    padding: 60px 0;
    text-align: center;
    background: var(--dark-gray);
    border-bottom: 2px solid var(--gold);
}

.page-title-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    color: var(--gold);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

.play-instructions {
    padding: 60px 0;
}

.instruction-panel {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid var(--gold);
}

.instruction-panel h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 25px;
}

.instruction-panel p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.gameplay-area {
    padding: 60px 0;
}

.game-container-large {
    background: var(--dark-gray);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.game-embed-large {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 5px;
}

.play-notice {
    padding: 60px 0;
}

.notice-box {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    text-align: center;
}

.notice-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
}

.notice-box p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 15px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
    min-height: 60vh;
}

.legal-document {
    background: var(--dark-gray);
    padding: 60px;
    border-radius: 10px;
    border: 1px solid var(--medium-gray);
}

.legal-document h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--gold);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--light-gold);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-document p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.legal-document ul {
    margin: 20px 0 20px 40px;
    color: var(--text-muted);
}

.legal-document li {
    margin-bottom: 12px;
}

/* Critical Notices */
.critical-notice {
    display: flex;
    gap: 30px;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    border: 3px solid;
}

.critical-notice.age-restriction {
    background: rgba(255, 107, 107, 0.15);
    border-color: #ff6b6b;
}

.critical-notice.no-money {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.critical-notice.entertainment {
    background: rgba(100, 200, 255, 0.1);
    border-color: #64c8ff;
}

.notice-icon {
    font-size: 56px;
    flex-shrink: 0;
}

.notice-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
}

.notice-content p, .notice-content ul {
    color: var(--text-muted);
}

.summary-block {
    background: rgba(212, 175, 55, 0.1);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    margin-top: 50px;
}

.summary-block h2 {
    font-family: 'Cinzel', serif;
    text-align: center;
    color: var(--gold);
    margin-bottom: 30px;
}

.summary-items {
    list-style: none;
    padding: 0;
}

.summary-items li {
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.summary-items li:last-child {
    border-bottom: none;
}

/* Footer */
.main-footer {
    background: var(--dark-gray);
    border-top: 3px solid var(--gold);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand span {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.footer-links-group h4 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-links-group a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.footer-notice {
    margin-bottom: 20px;
}

.footer-notice p {
    color: var(--text-muted);
    font-weight: 600;
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-panel {
    background: var(--dark-gray);
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: 60px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.age-modal-icon {
    font-size: 72px;
    margin-bottom: 25px;
}

.age-modal-panel h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 30px;
}

.age-modal-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 17px;
}

.age-modal-note {
    font-style: italic;
    font-size: 15px;
}

.age-modal-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.age-modal-buttons button {
    flex: 1;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn-confirm {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
}

.age-btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.age-btn-deny {
    background: var(--medium-gray);
    color: var(--text-white);
}

.age-btn-deny:hover {
    background: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--dark-gray);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s;
        border-top: 2px solid var(--gold);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 450px;
    }

    .game-embed-large {
        height: 550px;
    }

    .content-block {
        padding: 35px 25px;
    }

    .legal-document {
        padding: 40px 25px;
    }

    .age-modal-panel {
        margin: 20px;
        padding: 40px 30px;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .critical-notice {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
}
