* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #1a1410 0%, #0d0a08 50%, #1a1410 100%);
    color: #d4c5b0;
    line-height: 1.6;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.header {
    background: rgba(13, 10, 8, 0.95);
    border-bottom: 2px solid #d4af37;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 11px;
    color: #a89876;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #b8a992;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #d4af37;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-burger span {
    width: 26px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    background: rgba(13, 10, 8, 0.98);
    padding: 25px;
    flex-direction: column;
    gap: 18px;
    border-bottom: 2px solid #d4af37;
}

.mobile-item {
    color: #b8a992;
    text-decoration: none;
    padding: 12px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.mobile-item:hover,
.mobile-item.active {
    color: #d4af37;
    border-left-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

/* Age Overlay */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: linear-gradient(135deg, #1a1410 0%, #2a1f18 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #d4af37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.owl-emblem {
    font-size: 75px;
    margin-bottom: 20px;
}

.age-title {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 36px;
    margin-bottom: 8px;
}

.age-subtitle {
    color: #a89876;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.age-message p {
    color: #d4c5b0;
    margin-bottom: 12px;
}

.age-req {
    background: rgba(212, 175, 55, 0.15);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d4af37;
    margin: 20px 0;
}

.age-note {
    font-size: 14px;
    color: #a89876;
}

.age-choice {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-enter,
.btn-leave {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
}

.btn-enter {
    background: #d4af37;
    color: #1a1410;
}

.btn-enter:hover {
    background: #b8993d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.btn-leave {
    background: #8b4513;
    color: #fff;
}

.btn-leave:hover {
    background: #6f360f;
    transform: translateY(-2px);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 20, 16, 0.8) 100%);
    padding: 100px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-text {
    font-size: 22px;
    color: #b8a992;
    margin-bottom: 25px;
    font-style: italic;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: #d4af37;
    margin: 0 auto 25px;
}

.hero-desc {
    font-size: 17px;
    color: #d4c5b0;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(212, 175, 55, 0.15);
    padding: 10px 22px;
    border-radius: 25px;
    border: 1px solid #d4af37;
    color: #d4c5b0;
}

/* Sections */
.intro,
.principles,
.game-section,
.features,
.about {
    padding: 70px 0;
}

.intro {
    background: rgba(26, 20, 16, 0.5);
}

.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    color: #d4af37;
    text-align: center;
    margin-bottom: 35px;
}

.intro-text p {
    font-size: 17px;
    color: #d4c5b0;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Principles */
.principles {
    background: rgba(13, 10, 8, 0.6);
}

.principles-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.principle-card {
    background: rgba(26, 20, 16, 0.6);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.principle-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.principle-icon {
    font-size: 50px;
    margin-bottom: 18px;
}

.principle-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 22px;
}

.principle-card p {
    color: #b8a992;
    line-height: 1.7;
}

/* Game Section */
.game-section,
.play-zone {
    background: rgba(26, 20, 16, 0.5);
}

.section-subtext {
    text-align: center;
    color: #b8a992;
    margin-bottom: 45px;
    font-size: 18px;
}

.game-container,
.game-window {
    max-width: 950px;
    margin: 0 auto;
}

.game-window {
    background: #0d0a08;
    padding: 20px;
    border-radius: 14px;
    border: 3px solid #d4af37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    margin-bottom: 25px;
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
}

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.info-chip {
    background: rgba(212, 175, 55, 0.1);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4c5b0;
}

.info-chip strong {
    color: #d4af37;
}

/* Features */
.features {
    background: rgba(13, 10, 8, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(26, 20, 16, 0.6);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.feature-symbol {
    font-size: 50px;
    color: #d4af37;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #d4af37;
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-item p {
    color: #b8a992;
    font-size: 15px;
}

/* About */
.about {
    background: rgba(26, 20, 16, 0.5);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.about-content p {
    color: #d4c5b0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

/* Play Page */
.page-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(26, 20, 16, 0.9) 100%);
    padding: 70px 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.page-banner h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 12px;
}

.page-banner p {
    color: #b8a992;
    font-size: 19px;
}

.play-guide {
    padding: 50px 0;
    background: rgba(26, 20, 16, 0.5);
}

.guide-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.1);
    padding: 35px;
    border-radius: 14px;
    border: 2px solid #d4af37;
}

.guide-box h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 24px;
}

.guide-list {
    list-style: none;
    color: #d4c5b0;
}

.guide-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.guide-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 18px;
}

.play-zone {
    padding: 40px 0 70px;
}

.play-reminder {
    max-width: 950px;
    margin: 25px auto 0;
    text-align: center;
    padding: 20px;
    background: rgba(139, 69, 19, 0.2);
    border: 2px solid #8b4513;
    border-radius: 10px;
    color: #d4a574;
}

/* Legal */
.legal-section {
    padding: 60px 0;
    min-height: calc(100vh - 350px);
}

.legal-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 44px;
    color: #d4af37;
    margin-bottom: 10px;
}

.legal-updated {
    color: #8b7a5f;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-article {
    background: rgba(26, 20, 16, 0.4);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid #d4af37;
}

.legal-article h2 {
    color: #d4af37;
    margin-bottom: 16px;
    font-size: 26px;
}

.legal-article h3 {
    color: #b8993d;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 20px;
}

.legal-article p {
    color: #d4c5b0;
    margin-bottom: 14px;
    line-height: 1.7;
}

.legal-article ul {
    margin: 16px 0;
    padding-left: 25px;
    color: #d4c5b0;
}

.legal-article li {
    margin-bottom: 10px;
}

.legal-article a {
    color: #d4af37;
    text-decoration: none;
}

.legal-article a:hover {
    text-decoration: underline;
}

.warning-article {
    background: rgba(139, 69, 19, 0.2);
    border-left-color: #8b4513;
}

.warning-article h2 {
    color: #d4a574;
}

/* Footer */
.footer {
    background: #0d0a08;
    border-top: 2px solid #d4af37;
    padding: 50px 0 25px;
    margin-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 35px;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    color: #8b7a5f;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8a992;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #8b7a5f;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .mobile-nav.active {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-heading {
        font-size: 32px;
    }

    .principles-layout,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 450px;
    }

    .age-box {
        margin: 20px;
        padding: 35px 25px;
    }

    .age-title {
        font-size: 28px;
    }

    .age-choice {
        flex-direction: column;
    }

    .legal-section h1 {
        font-size: 32px;
    }
}
