@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --bg-dark: #1A1408;
    --bg-card: #2A2010;
    --text-white: #FEFCF3;
    --text-cream: #E8DFC7;
    --accent-bronze: #CD7F32;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.8;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Header */
header {
    background: linear-gradient(180deg, rgba(26, 20, 8, 0.98) 0%, rgba(26, 20, 8, 0.95) 100%);
    border-bottom: 2px solid var(--gold-primary);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-symbol {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 3px;
}

nav {
    display: flex;
    gap: 45px;
}

nav a {
    color: var(--text-cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    color: var(--gold-primary);
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
}

.menu-toggle.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero-section {
    padding: 180px 25px 120px;
    text-align: center;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.hero-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 30px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.hero-section .tagline {
    font-size: 1.3rem;
    color: var(--text-cream);
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    padding: 18px 55px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-dark);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}

/* Info Boxes */
.info-section {
    padding: 80px 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.info-box {
    flex: 1;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.info-box .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-box p {
    color: var(--text-cream);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Game Area */
.game-area {
    padding: 100px 25px;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
}

.game-area h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.game-frame {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--gold-dark);
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-frame iframe {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
}

/* Features Grid */
.features-section {
    padding: 100px 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.features-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 60px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    border-left: 3px solid var(--gold-dark);
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-left-color: var(--gold-primary);
    transform: translateX(5px);
}

.feature-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-cream);
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Footer */
footer {
    background: rgba(10, 8, 3, 0.95);
    border-top: 2px solid var(--gold-dark);
    padding: 60px 25px 40px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-cream);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold-primary);
}

.responsible-links {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.responsible-links p {
    color: var(--text-cream);
    font-size: 0.85rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.responsible-links a {
    color: var(--gold-primary);
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.85rem;
}

.responsible-links a:hover {
    text-decoration: underline;
}

.copyright-text {
    margin-top: 35px;
    color: rgba(232, 223, 199, 0.5);
    font-size: 0.8rem;
}

/* Age Modal */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

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

.age-box {
    background: var(--bg-card);
    border: 2px solid var(--gold-primary);
    padding: 55px 50px;
    text-align: center;
    max-width: 480px;
    margin: 20px;
}

.age-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.age-box p {
    color: var(--text-cream);
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-action {
    padding: 14px 40px;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.age-action.confirm {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-dark);
}

.age-action.deny {
    background: transparent;
    border: 1px solid var(--text-cream);
    color: var(--text-cream);
}

.age-action:hover {
    transform: scale(1.03);
}

/* Content Pages */
.content-area {
    padding: 150px 25px 100px;
    max-width: 950px;
    margin: 0 auto;
}

.content-area h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 45px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.content-area h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    margin: 40px 0 18px;
}

.content-area p {
    color: var(--text-cream);
    margin-bottom: 20px;
    opacity: 0.9;
}

.content-area ul {
    color: var(--text-cream);
    margin: 0 0 25px 30px;
    opacity: 0.9;
}

.content-area li {
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 1100px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .info-row {
        flex-direction: column;
        align-items: center;
    }
    
    .info-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(26, 20, 8, 0.99);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--gold-dark);
    }
    
    nav.show {
        transform: translateX(0);
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .tagline {
        font-size: 1.1rem;
    }
    
    .game-frame iframe {
        height: 480px;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .age-actions {
        flex-direction: column;
    }
}
