* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to bottom, #2d1b4e 0%, #1a0d2e 100%);
    color: #f5e6d3;
    line-height: 1.8;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.site-wrapper {
    position: relative;
    z-index: 1;
}

.top-bar {
    background: rgba(42, 20, 70, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(218, 165, 32, 0.3);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #daa520;
}

.site-brand .icon {
    font-size: 2.2rem;
}

.site-brand .name {
    font-size: 2.3rem;
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.6);
}

.menu-btn {
    display: none;
    background: none;
    border: 2px solid #daa520;
    color: #daa520;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: #f5e6d3;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #daa520;
    transition: width 0.3s;
}

.main-nav a:hover {
    color: #daa520;
}

.main-nav a:hover::after {
    width: 100%;
}

.content-area {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 25px;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    color: #daa520;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
    margin-bottom: 1rem;
}

.page-header .tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #c4b5a0;
}

.warning-card {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    border: 2px solid #daa520;
    border-radius: 10px;
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.2);
}

.warning-card h2 {
    font-size: 2rem;
    font-style: italic;
    color: #daa520;
    margin-bottom: 1.5rem;
    text-align: center;
}

.warning-card ul {
    list-style: none;
    padding: 0;
}

.warning-card li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.warning-card li:last-child {
    border-bottom: none;
}

.warning-card li::before {
    content: "✨";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.text-block {
    background: rgba(42, 20, 70, 0.6);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 10px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    backdrop-filter: blur(5px);
}

.text-block h2 {
    font-size: 2.3rem;
    font-style: italic;
    color: #daa520;
    margin-bottom: 1.5rem;
}

.text-block p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #e8d9c5;
}

.game-showcase {
    background: rgba(26, 13, 46, 0.8);
    border: 3px solid #daa520;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
}

.game-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    font-style: italic;
    color: #daa520;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.5);
}

.game-viewer {
    width: 100%;
    max-width: 950px;
    height: 650px;
    border: 2px solid rgba(218, 165, 32, 0.5);
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

.site-footer {
    background: rgba(26, 13, 46, 0.9);
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    padding: 3rem 0;
    margin-top: 5rem;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #daa520;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.3s;
}

.footer-links a:hover {
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.8);
}

.footer-inner p {
    color: #c4b5a0;
    font-size: 1rem;
}

.age-verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 13, 46, 0.98);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-verify-modal.active {
    display: flex;
}

.age-verify-box {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a148c 100%);
    border: 3px solid #daa520;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 50px rgba(218, 165, 32, 0.4);
}

.age-verify-box h2 {
    font-size: 2.8rem;
    font-style: italic;
    color: #daa520;
    margin-bottom: 1.5rem;
}

.age-verify-box p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.age-verify-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-verify-btn {
    padding: 1rem 2.5rem;
    border: 2px solid #daa520;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Playfair Display', serif;
}

.age-verify-btn.accept {
    background: #daa520;
    color: #1a0d2e;
}

.age-verify-btn.accept:hover {
    background: #c99a1f;
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

.age-verify-btn.reject {
    background: transparent;
    color: #daa520;
}

.age-verify-btn.reject:hover {
    background: rgba(218, 165, 32, 0.1);
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 13, 46, 0.98);
        padding: 1.5rem;
        gap: 0;
        border-top: 1px solid rgba(218, 165, 32, 0.3);
    }

    .main-nav ul.show {
        display: flex;
    }

    .main-nav li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header .tagline {
        font-size: 1.2rem;
    }

    .game-viewer {
        height: 450px;
    }

    .age-verify-box {
        margin: 0 20px;
        padding: 2rem;
    }

    .age-verify-btns {
        flex-direction: column;
    }

    .age-verify-btn {
        width: 100%;
    }
}
