* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Age Verification Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    padding: 60px 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #7b2cbf;
    box-shadow: 0 0 50px rgba(123, 44, 191, 0.5);
}

.skull-icon {
    font-size: 100px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(123, 44, 191, 0.6));
}

.age-gate-box h2 {
    color: #9d4edd;
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.age-gate-box p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #c9c9c9;
}

.age-gate-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 100%);
    color: #fff;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(123, 44, 191, 0.5);
}

.btn-deny {
    background: #333;
    color: #fff;
}

.btn-deny:hover {
    background: #555;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    box-shadow: 0 2px 20px rgba(123, 44, 191, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: #9d4edd;
}

.brand-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(123, 44, 191, 0.6));
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #9d4edd;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu li a:hover {
    background: rgba(157, 78, 221, 0.2);
    color: #9d4edd;
}

.nav-menu li a.active {
    background: rgba(157, 78, 221, 0.3);
    color: #9d4edd;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #240046 0%, #3c096c 50%, #5a189a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.8);
}

.hero-subtitle {
    font-size: 24px;
    color: #e0e0e0;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 100%);
    color: #fff;
    padding: 16px 50px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Section Titles */
.section-title {
    font-size: 42px;
    color: #9d4edd;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Introduction Section */
.intro-section {
    margin-bottom: 70px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Notices Section */
.notices-section {
    margin-bottom: 70px;
}

.notices-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.notice-box {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #7b2cbf;
    transition: all 0.3s ease;
}

.notice-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(123, 44, 191, 0.4);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.notice-symbol {
    font-size: 40px;
}

.notice-header h3 {
    color: #9d4edd;
    font-size: 22px;
    font-weight: 600;
}

.notice-box p {
    font-size: 16px;
    line-height: 1.7;
}

/* Game Showcase */
.game-showcase {
    margin-bottom: 70px;
}

.showcase-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 35px;
    color: #c9c9c9;
}

.game-embed {
    background: #000;
    padding: 25px;
    border-radius: 15px;
    border: 3px solid #7b2cbf;
    box-shadow: 0 0 40px rgba(123, 44, 191, 0.3);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 70px;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #5a189a;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #9d4edd;
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: #9d4edd;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* Responsibility Area */
.responsibility-area {
    background: linear-gradient(135deg, #240046 0%, #3c096c 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #7b2cbf;
}

.responsibility-text {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.support-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.support-link {
    background: rgba(157, 78, 221, 0.2);
    color: #9d4edd;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #9d4edd;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-link:hover {
    background: #9d4edd;
    color: #fff;
}

/* Page Hero (for other pages) */
.page-hero {
    background: linear-gradient(135deg, #240046 0%, #3c096c 100%);
    padding: 80px 30px;
    text-align: center;
    border-bottom: 3px solid #7b2cbf;
}

.page-hero h1 {
    font-size: 52px;
    color: #9d4edd;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: #c9c9c9;
}

/* Play Page Styles */
.play-guide {
    margin-bottom: 50px;
}

.guide-content {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #7b2cbf;
}

.guide-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.technical-info h3 {
    color: #9d4edd;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
    font-size: 16px;
}

.info-list li:last-child {
    border-bottom: none;
}

.play-game-section {
    margin-bottom: 50px;
}

.game-embed-large {
    background: #000;
    padding: 25px;
    border-radius: 15px;
    border: 3px solid #7b2cbf;
}

.game-iframe-large {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
}

.play-reminders {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #7b2cbf;
}

.reminders-title {
    color: #9d4edd;
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.reminder-grid {
    display: grid;
    gap: 25px;
}

.reminder-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reminder-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.reminder-content h4 {
    color: #9d4edd;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.reminder-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* Legal Document */
.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #5a189a;
}

.legal-block h2 {
    color: #9d4edd;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-block h3 {
    color: #9d4edd;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-block p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-block ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-block li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.disclaimer-emphasis {
    border: 3px solid #9d4edd;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    padding: 50px 30px;
    border-top: 3px solid #7b2cbf;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: #9d4edd;
    margin-bottom: 20px;
}

.footer-icon {
    font-size: 32px;
}

.footer-copyright {
    color: #c9c9c9;
    margin-bottom: 25px;
}

.footer-nav {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #9d4edd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #c77dff;
}

.footer-resources {
    padding-top: 25px;
    border-top: 1px solid rgba(157, 78, 221, 0.3);
}

.resources-label {
    color: #9d4edd;
    font-weight: 600;
    margin-bottom: 15px;
}

.resources-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.resources-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resources-links a:hover {
    color: #9d4edd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 15px;
        border-radius: 6px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .notices-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 400px;
    }

    .game-iframe-large {
        height: 500px;
    }

    .age-gate-box {
        margin: 20px;
        padding: 40px 30px;
    }

    .skull-icon {
        font-size: 70px;
    }

    .age-gate-box h2 {
        font-size: 28px;
    }

    .age-gate-actions {
        flex-direction: column;
    }

    .support-links {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .resources-links {
        flex-direction: column;
    }

    .container {
        padding: 40px 20px;
    }

    .page-hero {
        padding: 60px 20px;
    }

    .page-hero h1 {
        font-size: 38px;
    }
}
