* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.8;
    color: #374151;
    background: #fafafa;
}

.age-check-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.97) 0%, rgba(168, 85, 247, 0.97) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    backdrop-filter: blur(12px);
}

.age-check-overlay.hidden {
    display: none;
}

.age-check-box {
    background: white;
    padding: 3.5rem 4rem;
    border-radius: 30px;
    max-width: 540px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(147, 51, 234, 0.5);
}

.age-check-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.age-check-heading {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 1rem;
}

.age-check-info {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.age-check-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 2rem 0;
}

.age-check-buttons {
    display: flex;
    gap: 1.2rem;
}

.age-check-buttons button {
    flex: 1;
    padding: 1.3rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
}

.age-btn-confirm {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    color: white;
}

.age-btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(147, 51, 234, 0.5);
}

.age-btn-decline {
    background: #f3f4f6;
    color: #9ca3af;
    border: 2px solid #e5e7eb;
}

.age-btn-decline:hover {
    background: #e5e7eb;
}

.page-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-header {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    box-shadow: 0 4px 25px rgba(147, 51, 234, 0.25);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.site-name {
    font-family: 'Lora', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-bar {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active .nav-bar:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-nav-toggle.active .nav-bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .nav-bar:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.site-navigation {
    display: flex;
    gap: 3rem;
}

.site-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.6rem 0;
    position: relative;
}

.site-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.site-nav-link:hover,
.site-nav-link.current-page {
    color: white;
}

.site-nav-link:hover::before,
.site-nav-link.current-page::before {
    width: 100%;
}

.content-area {
    flex: 1;
}

.hero-area {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    padding: 6rem 3rem;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-text {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-main-title {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badges-area {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    background: white;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    color: #9333ea;
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.2);
}

.highlights-section {
    padding: 7rem 3rem;
    background: white;
}

.highlights-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
}

.highlight-card {
    padding: 3.5rem;
    border-radius: 25px;
    transition: all 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-12px);
}

.purple-accent {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border: 3px solid #9333ea;
}

.pink-accent {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    border: 3px solid #d946ef;
}

.violet-accent {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 3px solid #7c3aed;
}

.highlight-icon-area {
    margin-bottom: 1.5rem;
}

.highlight-emoji {
    font-size: 4rem;
}

.highlight-title {
    font-family: 'Lora', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.2rem;
}

.highlight-description {
    color: #6b7280;
    line-height: 1.9;
}

.game-display-section {
    padding: 7rem 3rem;
    background: #f9fafb;
}

.game-display-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.game-intro-text {
    text-align: center;
    margin-bottom: 4rem;
}

.game-section-title {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 1.2rem;
}

.game-section-description {
    font-size: 1.3rem;
    color: #9ca3af;
}

.game-player-wrapper {
    width: 100%;
    height: 700px;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(147, 51, 234, 0.35);
    border: 4px solid #9333ea;
}

.game-player {
    width: 100%;
    height: 100%;
    border: none;
}

.details-section {
    padding: 7rem 3rem;
    background: white;
}

.details-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.detail-box {
    padding: 4rem;
    border-radius: 25px;
    color: white;
}

.purple-gradient {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.pink-gradient {
    background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
}

.violet-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.detail-heading {
    font-family: 'Lora', serif;
    font-size: 2rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.detail-text {
    line-height: 2;
    margin-bottom: 1.5rem;
}

.play-welcome {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    padding: 6rem 3rem;
    text-align: center;
}

.play-title {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
}

.play-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
}

.play-guidelines {
    padding: 5rem 3rem;
    background: #f9fafb;
}

.guidelines-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.guidelines-box {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    border-left: 6px solid #9333ea;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.guidelines-heading {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #9333ea;
    margin-bottom: 1.8rem;
}

.guidelines-list {
    list-style-position: inside;
    line-height: 2.5;
    color: #6b7280;
    font-size: 1.05rem;
}

.play-game-area {
    padding: 5rem 3rem 7rem 3rem;
    background: #f9fafb;
}

.document-section {
    padding: 7rem 3rem;
    background: #f9fafb;
}

.document-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.document-title {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 0.8rem;
}

.document-updated {
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 4rem;
    font-size: 1.05rem;
}

.document-entry {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #9333ea;
}

.entry-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.entry-content {
    color: #6b7280;
    line-height: 2;
    margin-bottom: 1.2rem;
}

.document-entry ul {
    margin-left: 2.5rem;
    margin-top: 1.2rem;
    color: #6b7280;
}

.document-entry ul li {
    margin-bottom: 1rem;
    line-height: 1.9;
}

.alert-entry {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
}

.alert-entry .entry-title,
.alert-entry .entry-content {
    color: #92400e;
}

.site-footer {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 6rem 3rem 2.5rem 3rem;
    border-top: 4px solid #9333ea;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-important-notice {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 3px solid #9333ea;
}

.notice-text {
    color: #6d28d9;
    line-height: 2;
    font-weight: 500;
}

.footer-resources-area {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-heading {
    font-family: 'Lora', serif;
    font-size: 1.7rem;
    color: #9333ea;
    margin-bottom: 2rem;
    font-weight: 700;
}

.resources-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
}

.resource-link:hover {
    color: #9333ea;
    background: #f3e8ff;
}

.footer-copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid #e5e7eb;
}

.copyright-notice {
    color: #9ca3af;
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .site-navigation {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
        padding: 2.5rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        box-shadow: 0 15px 45px rgba(147, 51, 234, 0.4);
    }

    .site-navigation.active {
        transform: translateX(0);
    }

    .hero-main-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .highlights-wrapper {
        grid-template-columns: 1fr;
    }

    .game-player-wrapper {
        height: 500px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .game-section-title {
        font-size: 2.5rem;
    }

    .play-title {
        font-size: 2.8rem;
    }

    .document-title {
        font-size: 2.8rem;
    }

    .resources-links {
        flex-direction: column;
        gap: 1.2rem;
    }
}
