@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(165deg, #2b1e14 0%, #1a110a 50%, #2b1e14 100%);
    color: #e8dcc7;
    line-height: 1.75;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 35%, rgba(184, 134, 11, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 75% 65%, rgba(205, 127, 50, 0.04) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.page-header {
    background: rgba(26, 17, 10, 0.96);
    padding: 1.6rem 3.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 28px rgba(184, 134, 11, 0.3);
    border-bottom: 2px solid rgba(184, 134, 11, 0.5);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #cd7f32;
    text-decoration: none;
    text-shadow: 0 3px 12px rgba(205, 127, 50, 0.6);
    letter-spacing: 4px;
}

.brand-name::before {
    content: '⚡ ';
    color: #b8860b;
}

.menu-toggle {
    display: none;
    background: rgba(184, 134, 11, 0.2);
    border: 2px solid #b8860b;
    color: #cd7f32;
    font-size: 1.6rem;
    padding: 0.7rem 1.1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(184, 134, 11, 0.35);
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 3.8rem;
}

.navigation a {
    color: #e8dcc7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0;
    letter-spacing: 1.2px;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b8860b, #cd7f32);
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

.navigation a:hover {
    color: #cd7f32;
}

.welcome-section {
    padding: 7.5rem 3.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.06) 0%, transparent 100%);
    position: relative;
    z-index: 1;
}

.welcome-content {
    max-width: 1150px;
    margin: 0 auto;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: 2.2rem;
    color: #cd7f32;
    text-shadow: 0 4px 18px rgba(205, 127, 50, 0.5);
    line-height: 1.15;
    letter-spacing: 3px;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
    color: #b8860b;
    text-shadow: 0 3px 12px rgba(184, 134, 11, 0.4);
}

.welcome-section p {
    font-size: 1.3rem;
    margin-bottom: 2.8rem;
    color: #d4c4ad;
    line-height: 1.85;
}

.cta-link {
    display: inline-block;
    background: linear-gradient(135deg, #b8860b 0%, #cd7f32 100%);
    color: #1a110a;
    padding: 1.4rem 4.2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.13rem;
    transition: all 0.4s ease;
    box-shadow: 0 9px 38px rgba(184, 134, 11, 0.45);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border: 2px solid transparent;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 50px rgba(184, 134, 11, 0.65);
    border-color: #cd7f32;
}

.content-area {
    max-width: 1600px;
    margin: 5.5rem auto;
    padding: 0 3.5rem;
    position: relative;
    z-index: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3.2rem;
    margin: 4.5rem 0;
}

.info-panel {
    background: rgba(43, 30, 20, 0.75);
    padding: 3.8rem;
    border-radius: 15px;
    border: 2px solid rgba(184, 134, 11, 0.35);
    transition: all 0.4s ease;
    box-shadow: 0 10px 42px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
}

.info-panel:hover {
    border-color: #b8860b;
    transform: translateY(-10px);
    box-shadow: 0 18px 65px rgba(184, 134, 11, 0.25);
}

.info-panel h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.85rem;
    margin-bottom: 1.6rem;
    color: #cd7f32;
    font-weight: 700;
}

.info-panel p {
    font-size: 1.08rem;
    color: #d4c4ad;
    line-height: 1.8;
}

.game-container {
    background: rgba(43, 30, 20, 0.85);
    padding: 3.2rem;
    border-radius: 22px;
    margin: 4.5rem auto;
    max-width: 1450px;
    border: 3px solid rgba(184, 134, 11, 0.45);
    box-shadow: 0 22px 75px rgba(184, 134, 11, 0.28);
    backdrop-filter: blur(6px);
}

.game-container iframe {
    width: 100%;
    height: 820px;
    border: none;
    border-radius: 12px;
}

.detail-section {
    background: rgba(43, 30, 20, 0.65);
    padding: 4.2rem;
    border-radius: 15px;
    margin: 4.5rem 0;
    border-left: 5px solid #b8860b;
    box-shadow: 0 16px 55px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
}

.detail-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.35rem;
    margin-bottom: 1.9rem;
    color: #cd7f32;
    font-weight: 700;
}

.detail-section p {
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
    color: #d4c4ad;
    line-height: 1.85;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
}

.detail-section li {
    padding: 1.15rem 0;
    font-size: 1.1rem;
    color: #d4c4ad;
    border-bottom: 1px solid rgba(184, 134, 11, 0.18);
    line-height: 1.8;
}

.detail-section li::before {
    content: '⚡ ';
    color: #b8860b;
    font-weight: bold;
    margin-right: 1rem;
}

.page-footer {
    background: rgba(26, 17, 10, 0.96);
    padding: 4.8rem 3.5rem;
    margin-top: 7.5rem;
    border-top: 2px solid rgba(184, 134, 11, 0.5);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.page-footer h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.95rem;
    margin-bottom: 2.8rem;
    color: #cd7f32;
    font-weight: 700;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
    flex-wrap: wrap;
    margin-bottom: 3.2rem;
}

.footer-navigation a {
    color: #d4c4ad;
    text-decoration: none;
    font-size: 1.08rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-navigation a:hover {
    color: #cd7f32;
}

.page-footer p {
    color: #a89378;
    margin-top: 2.8rem;
    font-size: 0.95rem;
    opacity: 0.88;
}

.age-check-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-check-box {
    background: linear-gradient(135deg, #2b1e14 0%, #1a110a 100%);
    padding: 4.2rem;
    border-radius: 22px;
    text-align: center;
    max-width: 620px;
    border: 4px solid #b8860b;
    box-shadow: 0 38px 105px rgba(184, 134, 11, 0.4);
    backdrop-filter: blur(18px);
}

.age-check-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 2.4rem;
    color: #cd7f32;
}

.age-check-box p {
    font-size: 1.18rem;
    margin-bottom: 3.2rem;
    color: #d4c4ad;
    line-height: 1.8;
}

.age-check-buttons {
    display: flex;
    gap: 2.8rem;
    justify-content: center;
}

.age-check-buttons button {
    padding: 1.35rem 3.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-check-buttons .affirm-btn {
    background: linear-gradient(135deg, #b8860b, #cd7f32);
    color: #1a110a;
    box-shadow: 0 9px 38px rgba(184, 134, 11, 0.45);
}

.age-check-buttons .affirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 50px rgba(184, 134, 11, 0.65);
}

.age-check-buttons .deny-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #d4c4ad;
    border: 2px solid #b8860b;
}

.age-check-buttons .deny-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        height: 100vh;
        background: rgba(26, 17, 10, 0.98);
        padding: 7.5rem 3.5rem;
        transition: right 0.4s ease;
        border-left: 2px solid #b8860b;
        box-shadow: -6px 0 35px rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(12px);
    }
    
    .navigation.active {
        right: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 3.2rem;
    }
    
    .brand-name {
        font-size: 1.9rem;
    }
    
    h1 {
        font-size: 2.9rem;
    }
    
    h2 {
        font-size: 2.3rem;
    }
    
    .welcome-section {
        padding: 5.5rem 2.2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe {
        height: 620px;
    }
    
    .age-check-box {
        margin: 2.2rem;
        padding: 3.2rem;
    }
    
    .age-check-buttons {
        flex-direction: column;
    }
    
    .footer-navigation {
        flex-direction: column;
        gap: 2.2rem;
    }
}
