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

body {
    font-family: 'Playfair Display', serif;
    background: #f5f1ea;
    color: #2c2416;
    line-height: 1.7;
}

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.site-header {
    background: linear-gradient(to bottom, #8b6f47, #6d5638);
    padding: 2rem 0;
    border-bottom: 4px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.site-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-emblem {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2c2416;
    font-weight: bold;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.brand-text {
    font-size: 2.2rem;
    color: #f4d03f;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.primary-nav a {
    color: #f5f1ea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 5px;
}

.primary-nav a:hover {
    background: rgba(244, 208, 63, 0.2);
    color: #f4d03f;
}

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

.nav-trigger span {
    width: 30px;
    height: 3px;
    background: #f4d03f;
    border-radius: 3px;
}

/* Main Content */
main {
    padding: 3.5rem 0;
}

.intro-banner {
    background: linear-gradient(135deg, #fff, #f5f1ea);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 3.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.intro-banner h1 {
    font-size: 3.2rem;
    color: #8b6f47;
    margin-bottom: 1.8rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
}

.intro-banner p {
    font-size: 1.15rem;
    color: #4a3f2e;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #d9534f, #c9302c);
    border: 3px solid #a94442;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    color: #fff;
    box-shadow: 0 5px 15px rgba(217, 83, 79, 0.3);
}

.warning-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
}

.warning-box ul {
    list-style: none;
}

.warning-box li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.warning-box li:before {
    content: '⚠ ';
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Game Section */
.game-section {
    background: linear-gradient(135deg, #fff, #f5f1ea);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.game-section h2 {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 2rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 1rem;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: 3px solid #d4af37;
    border-radius: 8px;
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Info Block */
.info-block {
    background: linear-gradient(135deg, #fff, #f5f1ea);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-block h2 {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 2rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 1rem;
}

.info-block h3 {
    font-size: 1.8rem;
    color: #6d5638;
    margin: 2rem 0 1rem;
    font-weight: 600;
    font-style: italic;
}

.info-block p {
    font-size: 1.1rem;
    color: #4a3f2e;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.info-block ul,
.info-block ol {
    margin-left: 3rem;
    margin-bottom: 1.5rem;
}

.info-block li {
    font-size: 1.1rem;
    color: #4a3f2e;
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

/* Footer */
.site-footer {
    background: linear-gradient(to bottom, #8b6f47, #6d5638);
    border-top: 4px solid #d4af37;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    color: #f5f1ea;
}

.footer-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block h4 {
    font-size: 1.5rem;
    color: #f4d03f;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-style: italic;
}

.footer-block p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-block a {
    display: block;
    color: #f5f1ea;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.footer-block a:hover {
    color: #f4d03f;
}

.footer-credits {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(244, 208, 63, 0.3);
    font-size: 1rem;
}

/* Age Verification Overlay */
.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 22, 0.95);
    z-index: 5000;
}

.age-overlay.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-box {
    background: linear-gradient(135deg, #f5f1ea, #fff);
    padding: 4rem;
    border-radius: 10px;
    border: 4px solid #d4af37;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.age-box h2 {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 2rem;
    font-weight: 700;
    font-style: italic;
}

.age-box p {
    font-size: 1.15rem;
    color: #4a3f2e;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.age-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-button {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s;
}

.age-button.confirm {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #2c2416;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.age-button.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.age-button.reject {
    background: #6d5638;
    color: #f5f1ea;
}

.age-button.reject:hover {
    background: #8b6f47;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-trigger {
        display: flex;
    }
    
    .primary-nav ul {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: #8b6f47;
        width: 100%;
        padding: 2rem 0;
        text-align: center;
        transition: left 0.3s;
        border-top: 4px solid #d4af37;
        gap: 0;
    }
    
    .primary-nav ul.open {
        left: 0;
    }
    
    .intro-banner {
        padding: 2.5rem 2rem;
    }
    
    .intro-banner h1 {
        font-size: 2.2rem;
    }
    
    .info-block {
        padding: 2rem;
    }
    
    .game-iframe {
        height: 500px;
    }
    
    .age-box {
        margin: 0 20px;
        padding: 3rem 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
