* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.age-check {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-check.visible {
    display: flex;
}

.age-check-container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.age-check-content {
    background: white;
    padding: 3.5rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.age-icon {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 2rem;
}

.age-check-content h2 {
    color: #8b5cf6;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.age-check-content p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.confirm-text {
    font-weight: 600;
    color: #1f2937;
    margin-top: 2rem;
}

.age-check-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.age-btn.confirm {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.age-btn.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.age-btn.deny {
    background: #6b7280;
    color: white;
}

.age-btn.deny:hover {
    background: #4b5563;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topnav {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid #8b5cf6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-trigger span {
    width: 30px;
    height: 3px;
    background: #8b5cf6;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-items {
    display: flex;
    gap: 1rem;
}

.nav-item {
    color: #9ca3af;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-item:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.nav-item.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.masthead {
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #4c1d95 100%);
    padding: 6rem 0;
    text-align: center;
}

.masthead-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.masthead-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.primary-btn {
    display: inline-block;
    background: white;
    color: #6d28d9;
    padding: 1.3rem 3.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-grid {
    flex: 1;
}

.alert-section {
    background: #111827;
    padding: 4rem 0;
    border-bottom: 2px solid #8b5cf6;
}

.alert-card {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid #8b5cf6;
}

.alert-card h2 {
    color: #c084fc;
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 800;
}

.alert-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.alert-col h3 {
    color: #a78bfa;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.alert-col p {
    color: #d1d5db;
    line-height: 1.8;
}

.intro-section {
    background: #0a0a0a;
    padding: 5rem 0;
}

.section-title {
    color: #c084fc;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
}

.text-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.text-col p {
    font-size: 1.15rem;
    line-height: 2;
    color: #d1d5db;
}

.game-section {
    background: #111827;
    padding: 5rem 0;
}

.game-container {
    max-width: 1100px;
    margin: 0 auto;
    border: 3px solid #8b5cf6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.game-info {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1.15rem;
    color: #9ca3af;
}

.feature-section {
    background: #0a0a0a;
    padding: 5rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-tile {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.feature-tile:hover {
    border-color: #8b5cf6;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.tile-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-tile h3 {
    color: #c084fc;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-tile p {
    color: #d1d5db;
    line-height: 1.8;
}

.commitment-section {
    background: #111827;
    padding: 5rem 0;
}

.commitment-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #d1d5db;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.metric-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.metric-box {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    display: block;
    font-size: 1.2rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.site-footer {
    background: #000000;
    border-top: 2px solid #8b5cf6;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-block h4 {
    color: #c084fc;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-block p {
    margin-bottom: 1rem;
    color: #9ca3af;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c084fc;
}

.footer-copy {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.page-header {
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.play-section {
    background: #111827;
    padding: 4rem 0;
}

.play-container {
    max-width: 1200px;
    margin: 0 auto;
    border: 3px solid #8b5cf6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.play-container iframe {
    width: 100%;
    height: 800px;
    border: none;
}

.info-section {
    background: #0a0a0a;
    padding: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.info-tile {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.info-tile:hover {
    border-color: #8b5cf6;
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-tile h3 {
    color: #c084fc;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-tile p {
    color: #d1d5db;
    line-height: 1.8;
}

.note-section {
    background: #111827;
    padding: 4rem 0;
}

.note-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 3px solid #f59e0b;
}

.note-box h3 {
    color: #92400e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.note-box p {
    color: #78350f;
    font-size: 1.15rem;
    line-height: 1.8;
}

.legal-doc {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid #8b5cf6;
    margin: 3rem 0;
}

.doc-section {
    margin-bottom: 3rem;
}

.doc-section h2 {
    color: #c084fc;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.doc-section p {
    color: #d1d5db;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.doc-section ul {
    margin-left: 2.5rem;
    margin-bottom: 1rem;
}

.doc-section li {
    color: #d1d5db;
    line-height: 1.9;
    margin-bottom: 0.7rem;
}

.doc-section.important {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid #f59e0b;
}

.doc-section.important h2 {
    color: #92400e;
}

.doc-section.important p {
    color: #78350f;
}

@media (max-width: 768px) {
    .menu-trigger {
        display: flex;
    }

    .nav-items {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        border-bottom: 2px solid #8b5cf6;
    }

    .nav-items.open {
        max-height: 500px;
    }

    .nav-item {
        padding: 1.2rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid #374151;
    }

    .masthead-content h1 {
        font-size: 2.5rem;
    }

    .masthead-subtitle {
        font-size: 1.2rem;
    }

    .text-columns {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: 450px;
    }

    .play-container iframe {
        height: 500px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .legal-doc {
        padding: 1.5rem;
    }
}
