* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(to bottom, #fdf4f5 0%, #e8d5e8 100%);
    color: #4a2a4a;
    min-height: 100vh;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #d4a5d4 0%, #b48bb4 100%);
    padding: 0.8rem 2rem;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

/* Header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-symbol {
    font-size: 2.5rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a5d4 0%, #b48bb4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.primary-nav a {
    color: #4a2a4a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.primary-nav a:hover {
    color: #b48bb4;
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid #d4a5d4;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #b48bb4;
    margin: 4px 0;
}

/* Main Content */
.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
}

.page-banner {
    background: linear-gradient(135deg, #f5e6f5 0%, #e8d5e8 100%);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 5px 25px rgba(180, 139, 180, 0.2);
}

.page-banner h1 {
    font-size: 3.5rem;
    color: #b48bb4;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.3rem;
    color: #6a4a6a;
}

.article-section {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.article-section h2 {
    color: #b48bb4;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.article-section h3 {
    color: #d4a5d4;
    font-size: 1.7rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-section p {
    line-height: 1.9;
    margin-bottom: 1.3rem;
    color: #5a3a5a;
    font-size: 1.05rem;
}

.article-section ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.article-section li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #5a3a5a;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #ffd6e8 0%, #ffc9e3 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 3px solid #ffb3d9;
}

.highlight-box h3 {
    color: #8b2a6b;
    margin-top: 0;
    font-size: 1.8rem;
}

.highlight-box ul {
    margin-left: 1.5rem;
}

.highlight-box li {
    color: #6a2a5a;
    font-weight: 500;
}

.highlight-box strong {
    color: #8b2a6b;
}

/* Game Feature */
.game-feature {
    background: #f9f4f9;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    border: 2px solid #e8d5e8;
}

.game-feature h2 {
    color: #b48bb4;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.game-feature p {
    color: #6a4a6a;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-feature iframe {
    border-radius: 15px;
    max-width: 100%;
    border: 3px solid #d4a5d4;
    box-shadow: 0 5px 25px rgba(180, 139, 180, 0.3);
}

/* Feature Cards */
.feature-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(180, 139, 180, 0.3);
}

.feature-item h3 {
    color: #b48bb4;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-item p {
    color: #6a4a6a;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: linear-gradient(90deg, #d4a5d4 0%, #b48bb4 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
    color: #fff;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-info {
    opacity: 0.95;
    font-size: 0.95rem;
}

/* Age Modal */
.age-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(106, 74, 106, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification-modal.show {
    display: flex;
}

.age-modal-box {
    background: linear-gradient(135deg, #fdf4f5 0%, #f5e6f5 100%);
    border-radius: 25px;
    padding: 3.5rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid #d4a5d4;
}

.age-modal-box h2 {
    color: #b48bb4;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.age-modal-box p {
    color: #5a3a5a;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.6;
}

.age-modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-modal-btn {
    padding: 1.2rem 2.8rem;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.age-modal-btn-yes {
    background: linear-gradient(135deg, #d4a5d4 0%, #b48bb4 100%);
    color: #fff;
}

.age-modal-btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(180, 139, 180, 0.4);
}

.age-modal-btn-no {
    background: linear-gradient(135deg, #e8a0b8 0%, #d88aa8 100%);
    color: #fff;
}

.age-modal-btn-no:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(216, 138, 168, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .primary-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .primary-nav ul.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .page-banner h1 {
        font-size: 2.2rem;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
    }

    .age-modal-box {
        margin: 1rem;
        padding: 2.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
