* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #fafafa;
    color: #2c2c2c;
    line-height: 1.75;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Age Verification Modal */
.verification-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    backdrop-filter: blur(18px);
}

.verification-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-panel {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 5px solid #9C27B0;
    padding: 50px;
    border-radius: 25px;
    max-width: 600px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(156, 39, 176, 0.5);
    animation: royalEntry 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes royalEntry {
    0% {
        transform: scale(0.7) rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
    }
}

.royal-emblem {
    font-size: 5rem;
    margin-bottom: 25px;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.verification-panel h2 {
    font-size: 2.5rem;
    color: #9C27B0;
    margin-bottom: 25px;
    font-weight: 700;
}

.verification-text {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 20px;
}

.verification-requirement {
    font-size: 1.4rem;
    color: #9C27B0;
    margin-bottom: 20px;
    font-weight: 600;
}

.verification-requirement strong {
    color: #6A1B9A;
}

.verification-note {
    font-size: 1.05rem;
    color: #666;
    font-style: italic;
    margin-bottom: 35px;
}

.verification-choices {
    display: flex;
    gap: 20px;
}

.choice-grant, .choice-deny {
    flex: 1;
    padding: 18px;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.choice-grant {
    background: linear-gradient(135deg, #9C27B0 0%, #6A1B9A 100%);
    color: #fff;
}

.choice-grant:hover {
    background: linear-gradient(135deg, #AB47BC 0%, #7B1FA2 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(156, 39, 176, 0.5);
}

.choice-deny {
    background: #757575;
    color: #fff;
}

.choice-deny:hover {
    background: #616161;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 4px solid #9C27B0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #9C27B0;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-icon span {
    width: 30px;
    height: 3px;
    background: #9C27B0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.primary-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #9C27B0;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #9C27B0;
}

.nav-link:hover::after {
    width: 100%;
}

/* Banner */
.royal-banner {
    position: relative;
    background: linear-gradient(135deg, #6A1B9A 0%, #9C27B0 100%);
    padding: 130px 30px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.2;
}

.banner-text {
    position: relative;
    z-index: 1;
}

.royal-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1.6rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.banner-attributes {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.attribute {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #9C27B0 0%, #6A1B9A 100%);
    padding: 80px 30px;
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.3rem;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.area-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #6A1B9A;
}

/* Intro Area */
.intro-area {
    padding: 100px 30px;
    background: #fff;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 25px;
    color: #444;
}

/* Essential Info */
.essential-info {
    padding: 100px 30px;
    background: #f5f5f5;
}

.policy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.policy-card {
    padding: 45px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-10px);
}

.policy-card.gold {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
}

.policy-card.purple {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
}

.policy-card.royal {
    background: linear-gradient(135deg, #6A1B9A 0%, #4A148C 100%);
}

.card-symbol {
    font-size: 4rem;
    margin-bottom: 25px;
}

.policy-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Game Presentation */
.game-presentation {
    padding: 100px 30px;
    background: #fff;
}

.game-description {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 50px;
}

.game-frame-royal {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(106, 27, 154, 0.3);
    border: 5px solid #9C27B0;
}

.game-frame-royal.expanded {
    max-width: 100%;
}

.game-player {
    width: 100%;
    height: 100%;
}

.game-advisory {
    background: rgba(212, 175, 55, 0.15);
    border: 3px solid #D4AF37;
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.game-advisory p {
    font-size: 1.15rem;
    color: #9A7D0A;
}

.play-advisory {
    background: rgba(156, 39, 176, 0.1);
    border: 3px solid #9C27B0;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    text-align: center;
}

.play-advisory h3 {
    color: #6A1B9A;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.play-advisory p {
    color: #7B1FA2;
    font-size: 1.1rem;
    line-height: 1.9;
}

/* Features Showcase */
.features-showcase {
    padding: 100px 30px;
    background: #f5f5f5;
}

.features-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-item {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #9C27B0;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.feature-item h3 {
    color: #6A1B9A;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-item p {
    color: #555;
    line-height: 1.8;
}

/* Royal Invitation */
.royal-invitation {
    padding: 120px 30px;
    background: linear-gradient(135deg, #6A1B9A 0%, #9C27B0 100%);
    text-align: center;
    color: #fff;
}

.royal-invitation h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.royal-invitation p {
    font-size: 1.4rem;
    margin-bottom: 45px;
}

.royal-button {
    display: inline-block;
    background: #FFD700;
    color: #6A1B9A;
    padding: 20px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.royal-button:hover {
    background: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

/* Guidelines Section */
.guidelines-section {
    padding: 90px 30px;
    background: #f5f5f5;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.guideline-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.guideline-box:hover {
    border-color: #9C27B0;
}

.guideline-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.guideline-box h3 {
    color: #6A1B9A;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.guideline-box p {
    color: #555;
    line-height: 1.8;
}

/* Play Area */
.play-area {
    padding: 90px 30px;
    background: #fff;
}

/* Legal Page */
.legal-page {
    padding: 90px 30px;
    background: #fff;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 3.5rem;
    color: #6A1B9A;
    margin-bottom: 20px;
}

.effective-date {
    color: #888;
    font-style: italic;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.legal-document h2 {
    color: #9C27B0;
    font-size: 2rem;
    margin-top: 45px;
    margin-bottom: 25px;
    font-weight: 700;
}

.legal-document p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.95;
}

.legal-document ul {
    color: #444;
    margin: 22px 0 22px 45px;
    line-height: 1.95;
}

.critical-advisory {
    background: rgba(156, 39, 176, 0.1);
    border: 5px solid #9C27B0;
    padding: 45px;
    border-radius: 25px;
    margin-top: 60px;
    text-align: center;
}

.critical-advisory h3 {
    color: #6A1B9A;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.critical-advisory p {
    color: #7B1FA2;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 80px 30px 35px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 45px;
}

.footer-column h4 {
    color: #9C27B0;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.footer-column p {
    line-height: 1.9;
    margin-bottom: 25px;
}

.support-resources {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.support-resources a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-resources a:hover {
    color: #9C27B0;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-nav a:hover {
    color: #9C27B0;
}

.footer-copyright {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid #444;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .primary-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 35px;
        gap: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease;
    }
    
    .primary-nav.open {
        left: 0;
    }
    
    .royal-banner h1 {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .area-title {
        font-size: 2.2rem;
    }
    
    .game-frame-royal {
        aspect-ratio: 3/4;
    }
    
    .verification-choices {
        flex-direction: column;
    }
}
