* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(to right, #1c1917 0%, #292524 50%, #1c1917 100%);
    color: #fef3c7;
    line-height: 1.7;
    min-height: 100vh;
}

.content-width {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #78350f 0%, #451a03 100%);
    border-bottom: 3px solid #fbbf24;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 800;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.brand:hover {
    transform: scale(1.05);
}

.brand-star {
    font-size: 2.2rem;
    color: #fbbf24;
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: 2px;
}

.navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: #fef3c7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-item:hover {
    color: #fbbf24;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-bar {
    width: 28px;
    height: 3px;
    background: #fbbf24;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Age Check */
.age-check-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
}

.age-check-overlay.hidden {
    display: none;
}

.age-check-card {
    background: linear-gradient(135deg, #78350f 0%, #451a03 100%);
    border: 4px solid #fbbf24;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
}

.age-check-emblem {
    font-size: 5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.age-check-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.age-check-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.age-requirement-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 2rem;
}

.age-check-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.accept-btn {
    background: #fbbf24;
    color: #451a03;
}

.reject-btn {
    background: #78350f;
    color: #fef3c7;
    border: 2px solid #fbbf24;
}

.age-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

/* Content Sections */
.content {
    padding-top: 2rem;
}

.intro-section {
    padding: 4rem 0;
    text-align: center;
}

.intro-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.9;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid #fbbf24;
    padding: 1rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.badge-icon {
    font-size: 1.6rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: rgba(120, 53, 15, 0.1);
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.8rem;
}

.section-subheading {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: rgba(120, 53, 15, 0.3);
    border: 2px solid rgba(251, 191, 36, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.card-symbol {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.card-description {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Game Section */
.game-section {
    padding: 4rem 0;
}

.game-header {
    text-align: center;
    margin-bottom: 3rem;
}

.game-wrapper {
    background: rgba(120, 53, 15, 0.3);
    border: 3px solid #fbbf24;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.2);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

/* Notice Section */
.notice-section {
    padding: 4rem 0;
}

.notice-card {
    background: rgba(251, 191, 36, 0.15);
    border: 3px solid #fbbf24;
    padding: 2.5rem;
    border-radius: 15px;
}

.notice-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-align: center;
}

.notice-items {
    display: grid;
    gap: 1.5rem;
}

.notice-item {
    background: rgba(120, 53, 15, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
    font-size: 1.1rem;
    line-height: 1.8;
}

.notice-item strong {
    color: #fbbf24;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: rgba(120, 53, 15, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(120, 53, 15, 0.3);
    border: 2px solid rgba(251, 191, 36, 0.3);
    padding: 2rem;
    border-radius: 12px;
}

.benefit-marker {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(251, 191, 36, 0.4);
    margin-bottom: 1rem;
    font-style: italic;
}

.benefit-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.8rem;
}

.benefit-text {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: rgba(69, 26, 3, 0.8);
    border-top: 3px solid #fbbf24;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.footer-text {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.7rem;
}

.footer-link {
    color: #fef3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.3);
}

/* Play Page */
.play-intro {
    padding: 3rem 0 2rem;
    text-align: center;
}

.play-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.play-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
}

.play-content {
    padding: 2rem 0 4rem;
}

.play-info-panel {
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.panel-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.instruction-item {
    background: rgba(120, 53, 15, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
}

.instruction-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.8rem;
}

.instruction-detail {
    line-height: 1.8;
}

.play-game-section {
    margin-bottom: 3rem;
}

.play-disclaimer {
    background: rgba(251, 191, 36, 0.15);
    border: 3px solid #fbbf24;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-section {
    padding: 3rem 0 4rem;
}

.legal-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-style: italic;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.legal-body {
    background: rgba(120, 53, 15, 0.3);
    border: 2px solid rgba(251, 191, 36, 0.3);
    padding: 3rem;
    border-radius: 15px;
    line-height: 1.9;
}

.legal-body h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fbbf24;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    margin-bottom: 1.2rem;
}

.legal-body ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.legal-body li {
    margin-bottom: 0.7rem;
}

.legal-body a {
    color: #fbbf24;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 801;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(135deg, #78350f 0%, #451a03 100%);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s;
        border-left: 3px solid #fbbf24;
    }

    .navigation.active {
        right: 0;
    }

    .intro-title {
        font-size: 2.2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .intro-features {
        flex-direction: column;
        align-items: center;
    }

    .game-frame {
        height: 450px;
    }

    .age-check-card {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .age-check-actions {
        flex-direction: column;
    }

    .legal-body {
        padding: 1.5rem;
    }
}
