* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d97706;
    --gold-light: #fbbf24;
    --gold-dark: #b45309;
    --dark: #1f2937;
    --darker: #111827;
    --gray: #6b7280;
    --light-gray: #9ca3af;
    --bg: #0f172a;
    --bg-light: #1e293b;
    --white: #ffffff;
    --shadow: 0 4px 16px rgba(217, 119, 6, 0.2);
    --shadow-lg: 0 10px 40px rgba(217, 119, 6, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
.site-header {
    background: var(--darker);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-badge {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    border-radius: 8px;
}

.logo-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold);
}

.site-navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.menu-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle-btn span {
    width: 26px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.menu-toggle-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section,
.page-hero {
    background: linear-gradient(135deg, var(--darker), var(--bg-light));
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(217, 119, 6, 0.05) 10px,
        rgba(217, 119, 6, 0.05) 20px
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 20px rgba(217, 119, 6, 0.5);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    background: rgba(217, 119, 6, 0.1);
    padding: 1.25rem 2rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-text {
    font-weight: 600;
    color: var(--gold);
}

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--light-gray);
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

/* Key Info Section */
.key-info-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.info-panel {
    background: var(--darker);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-panel:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.panel-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.info-panel p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* Featured Game */
.featured-game-section,
.play-section {
    padding: 6rem 0;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: var(--shadow-lg);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
    background: var(--darker);
}

.game-disclaimer,
.play-notice-box {
    max-width: 900px;
    margin: 2.5rem auto 0;
    padding: 2rem;
    background: rgba(217, 119, 6, 0.1);
    border: 2px solid var(--gold);
    border-radius: 15px;
    text-align: center;
}

.game-disclaimer p,
.play-notice-box p {
    color: var(--light-gray);
    font-size: 1.05rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.about-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: var(--darker);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--gold);
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-gray);
    font-size: 1.1rem;
}

/* Advantages Section */
.advantages-section {
    padding: 6rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.advantage-box {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-box:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.25rem;
}

.advantage-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.advantage-box p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Play Page */
.play-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.play-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.play-badges {
    display: flex;
    gap: 1rem;
}

.play-badge {
    background: var(--gold);
    color: var(--darker);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
}

.gameplay-info-section,
.play-notice-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.gameplay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gameplay-item {
    background: var(--darker);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.gameplay-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.gameplay-item p {
    color: var(--light-gray);
    line-height: 1.7;
}

.play-notice-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.play-notice-box ul {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.play-notice-box li {
    padding: 0.75rem 0;
    color: var(--light-gray);
    font-size: 1.05rem;
}

/* Docs Pages */
.docs-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.docs-container h1 {
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.doc-updated {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.docs-content {
    background: var(--bg-light);
    padding: 3.5rem;
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.docs-content article {
    margin-bottom: 3rem;
}

.docs-content h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.docs-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.docs-content p {
    color: var(--light-gray);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.docs-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--light-gray);
}

.docs-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.docs-summary,
.important-box,
.key-points,
.final-notice {
    background: rgba(217, 119, 6, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    margin-top: 3rem;
}

.important-box {
    border: 2px solid var(--gold);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.point {
    text-align: center;
    padding: 1.5rem;
    background: var(--darker);
    border-radius: 12px;
}

.point span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.point p {
    font-size: 0.95rem;
    color: var(--light-gray);
}

/* Age Check */
.age-check-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.age-check-overlay.show {
    display: flex;
}

.age-check-content {
    background: var(--darker);
    border: 3px solid var(--gold);
    padding: 3.5rem;
    border-radius: 25px;
    max-width: 550px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(217, 119, 6, 0.5);
}

.age-check-badge {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    border-radius: 15px;
    margin: 0 auto 1.5rem;
}

.age-check-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.age-check-content p {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.age-check-detail {
    font-size: 0.95rem;
    color: var(--gray);
}

.age-check-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.age-btn-accept,
.age-btn-decline {
    flex: 1;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.age-btn-accept {
    background: var(--gold);
    color: var(--darker);
}

.age-btn-decline {
    background: var(--gray);
    color: var(--white);
}

.age-btn-accept:hover,
.age-btn-decline:hover {
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background: var(--darker);
    border-top: 2px solid var(--gold);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.65rem;
}

.footer-column a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-column p {
    color: var(--light-gray);
    line-height: 1.7;
}

.footer-bar {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(217, 119, 6, 0.3);
    color: var(--gray);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle-btn {
        display: flex;
    }

    .site-navigation {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 90px);
        background: var(--darker);
        flex-direction: column;
        padding: 2rem;
        border-left: 2px solid var(--gold);
        transition: right 0.3s ease;
        gap: 0;
    }

    .site-navigation.active {
        right: 0;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--bg-light);
    }

    .nav-link.active::after {
        display: none;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-iframe {
        height: 500px;
    }

    .age-check-buttons {
        flex-direction: column;
    }

    .docs-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .logo-title {
        font-size: 1.4rem;
    }

    .game-iframe {
        height: 400px;
    }
}
