@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;
}

body {
    font-family: 'Lato', sans-serif;
    background: #1a1410;
    color: #f5ebe0;
    min-height: 100vh;
    line-height: 1.75;
}

.top-bar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 163, 91, 0.3);
}

.top-bar-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
}

.site-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #d4a35b;
    text-decoration: none;
    letter-spacing: 3px;
}

.site-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.site-nav a {
    color: #f5ebe0;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.site-nav a:hover {
    color: #d4a35b;
}

.burger-menu {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu div {
    width: 25px;
    height: 2px;
    background: #d4a35b;
    margin: 6px 0;
    transition: 0.4s;
}

.burger-menu.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.burger-menu.active div:nth-child(2) {
    opacity: 0;
}

.burger-menu.active div:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.page-body {
    padding-top: 85px;
}

.welcome-area {
    padding: 100px 30px;
    background: 
        linear-gradient(135deg, rgba(212, 163, 91, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(139, 90, 43, 0.1) 0%, transparent 50%);
    text-align: center;
}

.welcome-area h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    font-weight: 600;
    color: #d4a35b;
    margin-bottom: 30px;
    text-shadow: 2px 2px 20px rgba(212, 163, 91, 0.3);
}

.welcome-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 45px;
    color: #c9beb0;
}

.warning-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.warning-item {
    background: rgba(212, 163, 91, 0.15);
    border: 1px solid rgba(212, 163, 91, 0.4);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.warning-item span {
    margin-right: 10px;
}

.slot-section {
    padding: 80px 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.slot-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    text-align: center;
    color: #d4a35b;
    margin-bottom: 50px;
}

.slot-wrapper {
    background: linear-gradient(145deg, #231b15, #1a1410);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 0 50px rgba(212, 163, 91, 0.15),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 163, 91, 0.2);
}

.slot-embed {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 12px;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 30px;
}

.info-column {
    background: rgba(35, 27, 21, 0.8);
    padding: 40px;
    border-radius: 15px;
    border-left: 3px solid #d4a35b;
}

.info-column h3 {
    font-family: 'Cinzel', serif;
    color: #d4a35b;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.info-column p {
    color: #c9beb0;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 30px;
}

.feature-box {
    background: #231b15;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-bottom-color: #d4a35b;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-symbol {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-family: 'Cinzel', serif;
    color: #d4a35b;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: #a89b8c;
    font-size: 0.95rem;
}

.bottom-footer {
    background: #0f0c0a;
    padding: 60px 30px 35px;
    margin-top: 80px;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.help-section {
    margin-bottom: 35px;
}

.help-section h4 {
    font-family: 'Cinzel', serif;
    color: #d4a35b;
    margin-bottom: 18px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.help-section a {
    color: #c9beb0;
    margin: 0 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.help-section a:hover {
    color: #d4a35b;
}

.footer-menu {
    margin-bottom: 30px;
}

.footer-menu a {
    color: #8a7d6f;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #d4a35b;
}

.footer-note {
    color: #5a5048;
    font-size: 0.85rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 10, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate.gone {
    display: none;
}

.gate-box {
    background: linear-gradient(145deg, #231b15, #1a1410);
    padding: 55px;
    border-radius: 20px;
    text-align: center;
    max-width: 480px;
    border: 2px solid #d4a35b;
}

.gate-box h2 {
    font-family: 'Cinzel', serif;
    color: #d4a35b;
    margin-bottom: 25px;
    font-size: 1.9rem;
}

.gate-box p {
    color: #c9beb0;
    margin-bottom: 15px;
}

.gate-box .emphasize {
    color: #d4a35b;
    font-weight: 700;
}

.gate-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gate-btn {
    padding: 15px 40px;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    letter-spacing: 1px;
}

.gate-btn.yes {
    background: linear-gradient(135deg, #d4a35b, #8b5a2b);
    color: #1a1410;
}

.gate-btn.no {
    background: transparent;
    border: 2px solid #5a5048;
    color: #c9beb0;
}

.gate-btn:hover {
    transform: scale(1.05);
}

.interior-header {
    padding: 120px 30px 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(212, 163, 91, 0.15) 0%, transparent 100%);
}

.interior-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #d4a35b;
}

.text-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 30px;
}

.text-area h2 {
    font-family: 'Cinzel', serif;
    color: #d4a35b;
    font-size: 1.6rem;
    margin: 40px 0 18px;
}

.text-area h2:first-of-type {
    margin-top: 0;
}

.text-area p {
    color: #c9beb0;
    margin-bottom: 16px;
}

.text-area ul {
    color: #c9beb0;
    margin: 18px 0;
    padding-left: 25px;
}

.text-area li {
    margin-bottom: 10px;
}

.play-tip {
    background: rgba(212, 163, 91, 0.1);
    border-left: 4px solid #d4a35b;
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 35px;
}

@media (max-width: 1024px) {
    .info-columns,
    .feature-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1410;
        padding: 25px;
        display: none;
        border-bottom: 1px solid rgba(212, 163, 91, 0.3);
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 18px;
    }

    .welcome-area h1 {
        font-size: 2.2rem;
    }

    .warning-row {
        flex-direction: column;
        align-items: center;
    }

    .slot-embed {
        height: 400px;
    }

    .gate-box {
        margin: 20px;
        padding: 35px 25px;
    }

    .gate-buttons {
        flex-direction: column;
    }
}
