* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    background: linear-gradient(to bottom, #1a0f00 0%, #331a00 100%);
    color: #f0e6d2;
    line-height: 1.8;
}

h1, h2, h3, h4, h5 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-verification.verified {
    display: none;
}

.verification-panel {
    background: linear-gradient(to bottom right, #2d1a00 0%, #4d2b00 100%);
    padding: 4rem 3.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    width: 92%;
    border: 4px solid #FF8C00;
    box-shadow: 0 25px 70px rgba(255, 140, 0, 0.4);
}

.verification-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 2rem;
}

.verification-panel h2 {
    color: #FFD700;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.verification-panel p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 2.5rem;
    color: #d9c9a8;
}

.verification-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.verify-yes, .verify-no {
    padding: 1.3rem 3rem;
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.verify-yes {
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
    color: #1a0f00;
    font-weight: bold;
}

.verify-yes:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
}

.verify-no {
    background: #3d2a1a;
    color: #d9c9a8;
}

.verify-no:hover {
    background: #5d3a2a;
}

.site-header {
    background: rgba(26, 15, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
    border-bottom: 3px solid #FF8C00;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.logo-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #FFD700;
    letter-spacing: 4px;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
}

.hamburger-line {
    width: 32px;
    height: 3px;
    background: #FF8C00;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: #f0e6d2;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #FFD700;
}

.hero-area {
    background: linear-gradient(135deg, #4d2b00 0%, #662f00 50%, #804000 100%);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 140, 0, 0.03) 10px,
        rgba(255, 140, 0, 0.03) 20px
    );
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: #f0e6d2;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.primary-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
    color: #1a0f00;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.primary-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(255, 140, 0, 0.6);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.about-section {
    padding: 6rem 0;
    background: rgba(51, 26, 0, 0.4);
}

.main-heading {
    font-size: 3.5rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.lead-paragraph {
    font-size: 1.2rem;
    line-height: 2.1;
    margin-bottom: 2rem;
    color: #d9c9a8;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-section {
    padding: 6rem 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.benefit-item {
    background: linear-gradient(to bottom right, #2d1a00 0%, #3d2a1a 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #FF8C00;
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.4);
    border-color: #FFD700;
}

.benefit-symbol {
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.benefit-item h3 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 2;
    color: #d9c9a8;
}

.game-display {
    padding: 6rem 0;
    background: rgba(51, 26, 0, 0.4);
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #d9c9a8;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-embed {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border: 4px solid #FF8C00;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.game-player {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.key-points {
    padding: 6rem 0;
}

.points-container {
    display: grid;
    gap: 2.5rem;
}

.point-card {
    background: linear-gradient(to right, #2d1a00 0%, #3d2a1a 100%);
    padding: 3rem;
    border-radius: 12px;
    border-left: 8px solid #FF8C00;
}

.point-card h3 {
    color: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.point-card p {
    font-size: 1.15rem;
    line-height: 2;
    color: #d9c9a8;
}

.mission-section {
    padding: 6rem 0;
    background: rgba(102, 47, 0, 0.2);
}

.mission-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, #2d1a00 0%, #4d2b00 100%);
    border-radius: 15px;
    border: 3px solid #FFD700;
}

.mission-box h2 {
    color: #FFD700;
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

.mission-box p {
    font-size: 1.2rem;
    line-height: 2.1;
    color: #d9c9a8;
    margin-bottom: 2rem;
}

.mission-box p:last-child {
    margin-bottom: 0;
}

.important-info {
    padding: 6rem 0;
}

.info-banner {
    background: rgba(102, 47, 0, 0.3);
    border: 4px solid #FF8C00;
    border-radius: 15px;
    padding: 4rem;
}

.info-banner h3 {
    color: #FFD700;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-item {
    padding: 2rem;
    background: rgba(26, 15, 0, 0.6);
    border-radius: 10px;
    font-size: 1.1rem;
    border-left: 5px solid #FFD700;
    line-height: 1.9;
}

.info-item strong {
    color: #FFD700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.page-footer {
    background: #1a0f00;
    padding: 5rem 0 2.5rem;
    margin-top: 6rem;
    border-top: 4px solid #FF8C00;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column h4 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-column p {
    color: #d9c9a8;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.resource-links, .legal-links {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.resource-links a, .legal-links a {
    color: #d9c9a8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-links a:hover, .legal-links a:hover {
    color: #FFD700;
}

.footer-notice {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 140, 0, 0.3);
    color: #a88f70;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 15, 0, 0.98);
        flex-direction: column;
        padding: 2.5rem;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .game-player {
        height: 500px;
    }
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
}

.page-content h1 {
    font-size: 4rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-content h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}

.page-content h3 {
    font-size: 1.9rem;
    color: #FFD700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 2;
    color: #d9c9a8;
}

.page-content ul, .page-content ol {
    margin-bottom: 2rem;
    margin-left: 3rem;
    color: #d9c9a8;
}

.page-content li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 2;
}

.page-content strong {
    color: #FFD700;
}

.play-wrapper {
    padding: 4rem 0;
}

.play-header {
    text-align: center;
    margin-bottom: 4rem;
}

.play-header h1 {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.play-instructions {
    background: rgba(102, 47, 0, 0.3);
    border: 3px solid #FF8C00;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.play-instructions h3 {
    color: #FFD700;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.play-instructions ul {
    list-style: none;
    display: grid;
    gap: 1.2rem;
}

.play-instructions li {
    font-size: 1.15rem;
}
