* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e8e8e8;
    line-height: 1.8;
}

/* Age Verification Screen */
.age-verification-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-verification-screen.hidden {
    display: none;
}

.verification-panel {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #d4af37;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.verification-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.verification-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.verification-text {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 0.8rem;
}

.verification-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1.5rem 0;
}

.verification-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-confirm,
.btn-reject {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-confirm {
    background: #d4af37;
    color: #1a1a1a;
}

.btn-confirm:hover {
    background: #f0c941;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-reject {
    background: #3a3a3a;
    color: #b8b8b8;
}

.btn-reject:hover {
    background: #2a2a2a;
}

/* Main Navigation */
.main-navigation {
    background: rgba(29, 29, 29, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #d4af37;
    letter-spacing: 1px;
}

.primary-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.primary-nav a {
    text-decoration: none;
    color: #b8b8b8;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.primary-nav a:hover,
.primary-nav a.active {
    background: #d4af37;
    color: #1a1a1a;
}

.mobile-nav-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: #d4af37;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
}

.mobile-nav-btn span {
    width: 28px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-nav-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-nav-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Site Banner */
.site-banner {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 6rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.banner-subtitle {
    font-size: 1.8rem;
    color: rgba(26, 26, 26, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

.banner-ornament {
    font-size: 2.5rem;
    color: rgba(26, 26, 26, 0.6);
}

/* Page Title Section */
.page-title-section {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.title-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.title-container p {
    font-size: 1.2rem;
    color: rgba(26, 26, 26, 0.8);
    font-style: italic;
}

/* Section Wrapper */
.section-wrapper {
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: rgba(45, 45, 45, 0.8);
    padding: 3.5rem;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.section-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 2rem;
    text-align: center;
}

.section-wrapper p {
    font-size: 1.15rem;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
}

.lead-text {
    font-size: 1.25rem;
    color: #e8e8e8;
    font-weight: 300;
}

/* Principles Display */
.principles-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.principle-item {
    background: rgba(212, 175, 55, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.principle-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.principle-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.principle-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.principle-item p {
    color: #d0d0d0;
}

/* Game Presentation */
.experience-description {
    text-align: center;
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.game-presentation {
    margin: 2.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid #d4af37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.game-presentation iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.experience-note {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #d4af37;
    margin-top: 2rem;
}

/* Features Collection */
.features-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: #d0d0d0;
}

/* Gameplay Area */
.game-information {
    margin-bottom: 2.5rem;
}

.technical-specifications {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.technical-specifications h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin-bottom: 1rem;
}

.technical-specifications ul {
    list-style: none;
    padding-left: 0;
}

.technical-specifications li {
    margin-bottom: 0.6rem;
    color: #d0d0d0;
}

.important-reminder {
    background: #d4af37;
    color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-weight: 600;
}

.game-display iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
    border: 4px solid #d4af37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

/* Legal Prose */
.legal-prose {
    max-width: 950px;
    margin: 0 auto;
}

.legal-prose h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #d4af37;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-prose h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #f0c941;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.legal-prose ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.legal-prose li {
    margin-bottom: 0.6rem;
    color: #d0d0d0;
}

.terms-acceptance,
.privacy-conclusion,
.notice-banner,
.final-acknowledgment {
    background: #d4af37;
    color: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.notice-banner h2,
.final-acknowledgment h3 {
    color: #1a1a1a;
    text-align: center;
    margin-top: 0;
}

.final-acknowledgment ul {
    color: #1a1a1a;
}

.final-acknowledgment li {
    color: #1a1a1a;
}

/* Footer */
.site-footer {
    background: rgba(26, 26, 26, 0.98);
    border-top: 3px solid #d4af37;
    padding: 3.5rem 2rem;
    margin-top: 3rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h5 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #a0a0a0;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #808080;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-nav-btn {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 100px;
        right: 2rem;
        background: rgba(29, 29, 29, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 8px;
        border: 2px solid #d4af37;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        transform: translateX(20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        gap: 0;
    }

    .primary-nav.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;
    }

    .primary-nav li {
        margin-bottom: 0.5rem;
    }

    .banner-title {
        font-size: 3rem;
    }

    .banner-subtitle {
        font-size: 1.3rem;
    }

    .title-container h1 {
        font-size: 2.5rem;
    }

    .section-wrapper {
        padding: 2rem;
    }

    .section-wrapper h2 {
        font-size: 2.2rem;
    }

    .game-presentation iframe {
        height: 450px;
    }

    .game-display iframe {
        height: 500px;
    }

    .principles-display,
    .features-collection {
        grid-template-columns: 1fr;
    }
}
