* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: #0d1821;
    color: #f4e8d8;
    line-height: 1.7;
}

.site-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

header {
    background: linear-gradient(to bottom, #1a2634, #0d1821);
    border-bottom: 3px solid #d4af37;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    max-width: 100%;
}

.brand {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
    font-style: italic;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: #f4e8d8;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.main-nav a:hover {
    color: #d4af37;
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle div {
    width: 35px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
    transition: 0.3s;
}

.hero-banner {
    background: linear-gradient(135deg, #0d1821 0%, #1a2634 50%, #2c3e50 100%);
    padding: 6rem 40px;
    text-align: center;
    border-bottom: 5px solid #d4af37;
}

.hero-banner h1 {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-banner p {
    font-size: 1.4rem;
    color: #b8a588;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
}

.important-info {
    background: #1a2634;
    margin: 4rem 40px;
    padding: 3rem;
    border: 3px solid #d4af37;
    border-radius: 0;
}

.important-info h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.important-info ul {
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
}

.important-info li {
    padding: 1.2rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 40px;
    position: relative;
}

.important-info li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.5rem;
}

.important-info li:last-child {
    border-bottom: none;
}

.game-display {
    margin: 5rem 40px;
}

.game-display h2 {
    text-align: center;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.game-frame-wrapper {
    background: #1a2634;
    padding: 3rem;
    border: 5px solid #d4af37;
    max-width: 1400px;
    margin: 0 auto;
}

.game-frame-wrapper iframe {
    width: 100%;
    height: 750px;
    border: none;
}

.content-block {
    margin: 5rem 40px;
    padding: 4rem;
    background: linear-gradient(to right, #1a2634, #0d1821);
}

.content-block h2 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.content-block p {
    font-size: 1.2rem;
    line-height: 2;
    color: #c9b896;
    max-width: 1100px;
    margin: 0 auto 2rem;
    text-align: justify;
}

footer {
    background: #0a0f15;
    padding: 4rem 40px;
    margin-top: 5rem;
    border-top: 5px solid #d4af37;
}

.footer-info {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer-info h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #b8a588;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #d4af37;
}

.copyright-text {
    color: #7a6f5d;
    margin-top: 2rem;
}

.age-modal {
    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;
}

.age-modal.show {
    display: flex;
}

.modal-box {
    background: linear-gradient(135deg, #1a2634 0%, #0d1821 100%);
    padding: 4rem;
    border: 5px solid #d4af37;
    text-align: center;
    max-width: 600px;
}

.modal-box h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.modal-box p {
    font-size: 1.2rem;
    color: #c9b896;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.modal-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.modal-actions button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border: 2px solid #d4af37;
    background: transparent;
    color: #d4af37;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.modal-actions button:hover {
    background: #d4af37;
    color: #0d1821;
}

.text-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 40px;
}

.text-page h1 {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.text-page h2 {
    font-size: 2.2rem;
    color: #d4af37;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.text-page p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #c9b896;
    margin-bottom: 1.8rem;
}

.text-page ul, .text-page ol {
    margin-left: 3rem;
    margin-bottom: 2rem;
    color: #c9b896;
}

.text-page li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav ul {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #0d1821;
        width: 100%;
        padding: 2rem 0;
        transition: 0.3s;
        border-top: 3px solid #d4af37;
    }

    .main-nav ul.open {
        left: 0;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-banner {
        padding: 4rem 20px;
    }

    .important-info,
    .game-display,
    .content-block {
        margin: 3rem 20px;
        padding: 2rem;
    }

    .game-frame-wrapper iframe {
        height: 500px;
    }

    .brand {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 20px;
    }

    .text-page {
        padding: 3rem 20px;
    }

    .text-page h1 {
        font-size: 2.3rem;
    }
}
