* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', serif;
    background: #0a1628;
    color: #e8dcc8;
    line-height: 1.7;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
}

.brand-name {
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 32px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s;
    border-radius: 2px;
}

.navigation {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: #e8dcc8;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(30, 58, 95, 0.25) 100%);
    padding: 100px 0;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #d4af37;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.tagline {
    font-size: 24px;
    margin-bottom: 35px;
    color: #e8dcc8;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

/* Introduction */
.introduction {
    padding: 80px 0;
    background: rgba(30, 58, 95, 0.3);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #d4af37;
}

.intro-text p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-visual {
    display: grid;
    gap: 25px;
}

.visual-card {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.card-icon {
    font-size: 52px;
    margin-bottom: 15px;
}

.visual-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d4af37;
}

.visual-card p {
    font-size: 17px;
}

/* Critical Info */
.critical-info {
    padding: 80px 0;
}

.critical-info h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #d4af37;
    text-align: center;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.info-box {
    background: rgba(30, 58, 95, 0.4);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 35px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 42px;
}

.info-box h3 {
    font-size: 24px;
    color: #d4af37;
}

.info-box p {
    font-size: 17px;
    line-height: 1.8;
}

/* Featured Game */
.featured-game {
    padding: 80px 0;
    background: rgba(30, 58, 95, 0.3);
}

.featured-game h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #d4af37;
    text-align: center;
}

.game-description {
    text-align: center;
    font-size: 19px;
    margin-bottom: 45px;
}

.game-display {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    margin-bottom: 35px;
    border: 3px solid #d4af37;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.game-action {
    text-align: center;
}

.primary-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1e3a5f;
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Platform Features */
.platform-features {
    padding: 80px 0;
}

.platform-features h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #d4af37;
    text-align: center;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature {
    background: rgba(30, 58, 95, 0.4);
    border-left: 4px solid #d4af37;
    padding: 35px;
    transition: all 0.3s;
}

.feature:hover {
    background: rgba(30, 58, 95, 0.6);
    transform: translateX(5px);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    display: block;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4af37;
}

.feature p {
    font-size: 17px;
    line-height: 1.8;
}

/* Responsibility */
.responsibility {
    padding: 80px 0;
    background: rgba(30, 58, 95, 0.3);
}

.responsibility-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.responsibility h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #d4af37;
}

.responsibility p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    padding: 60px 0 25px;
    margin-top: 80px;
    border-top: 3px solid #d4af37;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 45px;
}

.footer-column h4 {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.8;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #e8dcc8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 17px;
}

.footer-menu a:hover {
    color: #d4af37;
}

.footer-legal {
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding-top: 25px;
    text-align: center;
    font-size: 15px;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    border: 4px solid #d4af37;
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.9);
}

.age-modal-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 2px;
}

.age-modal-content p {
    font-size: 19px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.age-requirement {
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    padding: 15px;
    margin: 25px 0;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
}

.age-notice {
    font-style: italic;
    color: #b89968;
}

.age-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 35px;
}

.age-btn-yes {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1e3a5f;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cinzel', serif;
}

.age-btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
}

.age-btn-no {
    background: transparent;
    color: #e8dcc8;
    padding: 16px 40px;
    border: 2px solid #e8dcc8;
    border-radius: 8px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cinzel', serif;
}

.age-btn-no:hover {
    background: rgba(232, 220, 200, 0.1);
}

/* Play Page */
.play-intro {
    padding: 70px 0;
    text-align: center;
    background: rgba(212, 175, 55, 0.15);
    border-bottom: 2px solid #d4af37;
}

.play-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d4af37;
}

.play-intro p {
    font-size: 20px;
}

.game-area {
    padding: 0;
}

.game-container-full {
    background: #000;
    width: 100%;
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
}

.game-iframe-full {
    width: 100%;
    height: 750px;
    border: none;
}

.play-details {
    padding: 80px 0;
}

.play-details h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #d4af37;
    text-align: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.detail-card {
    background: rgba(30, 58, 95, 0.4);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 35px;
}

.detail-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4af37;
}

.detail-card p {
    font-size: 17px;
    line-height: 1.8;
}

.play-notice {
    padding: 50px 0;
    background: rgba(30, 58, 95, 0.3);
}

.notice-container {
    background: rgba(212, 175, 55, 0.15);
    border: 3px solid #d4af37;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.notice-container h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #d4af37;
}

.notice-container p {
    font-size: 19px;
    line-height: 1.8;
}

/* Legal Pages */
.legal-hero {
    padding: 70px 0;
    text-align: center;
    background: rgba(212, 175, 55, 0.15);
    border-bottom: 2px solid #d4af37;
}

.legal-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d4af37;
}

.legal-update {
    font-size: 19px;
    color: #b89968;
    font-style: italic;
}

.legal-document {
    padding: 80px 0;
}

.document-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(30, 58, 95, 0.4);
    padding: 50px;
    border-radius: 15px;
    border: 2px solid #d4af37;
}

.document-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #d4af37;
}

.document-content h2:first-child {
    margin-top: 0;
}

.document-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.document-content ul {
    margin: 20px 0 20px 35px;
}

.document-content li {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 10px;
}

.document-content a {
    color: #d4af37;
    text-decoration: none;
}

.document-content a:hover {
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .navigation {
        position: absolute;
        top: 80px;
        right: 0;
        background: rgba(30, 58, 95, 0.98);
        flex-direction: column;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        display: none;
        min-width: 220px;
        border: 2px solid #d4af37;
    }

    .navigation.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .tagline {
        font-size: 19px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .info-columns,
    .features-layout,
    .details-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .game-iframe-full {
        height: 550px;
    }

    .age-modal-content {
        padding: 35px 25px;
        margin: 20px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .document-content {
        padding: 30px 20px;
    }
}
