* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #faf5ff;
    color: #27272a;
    line-height: 1.6;
}

.age-modal {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.97), rgba(55, 48, 163, 0.97));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    backdrop-filter: blur(12px);
}

.age-modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 4rem 4rem;
    border-radius: 28px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    border: 4px solid #7c3aed;
}

.modal-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
}

.modal-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.6rem;
    color: #5b21b6;
    font-weight: 900;
}

.modal-content p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #52525b;
    font-weight: 500;
}

.modal-disclaimer {
    font-size: 1rem;
    font-style: italic;
    color: #71717a;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 3rem;
}

.modal-actions button {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.btn-verify {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: white;
}

.btn-verify:hover {
    transform: scale(1.06);
    box-shadow: 0 18px 36px rgba(124, 58, 237, 0.4);
}

.btn-cancel {
    background: white;
    color: #5b21b6;
    border: 3px solid #5b21b6;
}

.btn-cancel:hover {
    background: #faf5ff;
}

.navbar {
    background: white;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 99999;
    border-bottom: 4px solid #7c3aed;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.6rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    width: 30px;
    height: 4px;
    background: #7c3aed;
    border-radius: 4px;
    transition: 0.3s;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-list a {
    text-decoration: none;
    color: #27272a;
    font-weight: 700;
    font-size: 1.08rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #5b21b6);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: #7c3aed;
}

.masthead {
    position: relative;
    background: linear-gradient(135deg, #5b21b6 0%, #4c1d95 50%, #3730a3 100%);
    padding: 9rem 3rem;
    text-align: center;
    overflow: hidden;
}

.masthead-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.15) 0%, transparent 50%);
}

.masthead-text {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
    color: white;
}

.masthead-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.masthead-text .lead {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.masthead-text .description {
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.9;
}

.cta-link {
    display: inline-block;
    padding: 1.6rem 4.5rem;
    background: white;
    color: #5b21b6;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 900;
    font-size: 1.35rem;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-link:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 3rem;
}

.introduction {
    padding: 8rem 0;
    background: white;
}

.introduction h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 2.5rem;
    color: #5b21b6;
    font-weight: 900;
}

.section-intro {
    text-align: center;
    font-size: 1.4rem;
    max-width: 1000px;
    margin: 0 auto 5.5rem;
    color: #52525b;
    line-height: 1.9;
    font-weight: 500;
}

.trio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3.5rem;
}

.trio-item {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid #d8b4fe;
}

.trio-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.3);
    border-color: #7c3aed;
}

.trio-emoji {
    font-size: 6rem;
    margin-bottom: 2rem;
}

.trio-item h3 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    color: #5b21b6;
    font-weight: 900;
}

.trio-item p {
    color: #52525b;
    font-size: 1.18rem;
    line-height: 1.8;
    font-weight: 500;
}

.disclosure {
    padding: 7rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.disclosure-card {
    background: white;
    padding: 5rem;
    border-radius: 26px;
    border: 6px solid #f59e0b;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.disclosure-card h3 {
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: #d97706;
    font-weight: 900;
    text-align: center;
}

.disclosure-items {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.disclosure-item {
    padding: 2.2rem;
    background: #fffbeb;
    border-radius: 16px;
    border-left: 8px solid #fbbf24;
    font-size: 1.2rem;
    color: #78350f;
    font-weight: 500;
}

.disclosure-item strong {
    color: #92400e;
    font-weight: 900;
}

.gaming-area {
    padding: 8rem 0;
    background: white;
}

.gaming-area h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 2.5rem;
    color: #5b21b6;
    font-weight: 900;
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
    border: 6px solid #7c3aed;
}

.game-wrapper iframe {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.distinctions {
    padding: 8rem 0;
    background: #fafafa;
}

.distinctions h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 5.5rem;
    color: #5b21b6;
    font-weight: 900;
}

.distinctions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.distinction {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.distinction:hover {
    transform: translateY(-14px);
    box-shadow: 0 28px 56px rgba(124, 58, 237, 0.25);
    border-color: #7c3aed;
}

.distinction-mark {
    display: inline-block;
    font-size: 4.5rem;
    font-weight: 900;
    color: #7c3aed;
    margin-bottom: 2rem;
    font-style: italic;
}

.distinction h4 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #27272a;
    font-weight: 900;
}

.distinction p {
    color: #71717a;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 500;
}

.commitment {
    padding: 8rem 0;
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
    color: white;
}

.commitment-text {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.commitment-text h2 {
    font-size: 4rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

.commitment-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 500;
}

.footer {
    background: #18181b;
    color: white;
    padding: 6rem 0 3rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 5rem;
    margin-bottom: 4.5rem;
}

.footer-section h4 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #a78bfa;
    font-weight: 900;
}

.footer-section p {
    color: #d4d4d8;
    line-height: 1.9;
    font-size: 1.15rem;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1.2rem;
}

.footer-section ul li a {
    color: #d4d4d8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.15rem;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: #a78bfa;
}

.footer-copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 3px solid #3f3f46;
    color: #a1a1aa;
    font-size: 1.15rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 3.5rem 0;
        gap: 0;
    }

    .nav-list.open {
        left: 0;
    }

    .nav-list li {
        padding: 1.8rem 0;
    }

    .masthead-text h1 {
        font-size: 3.2rem;
    }

    .masthead-text .lead {
        font-size: 1.5rem;
    }

    .masthead-text .description {
        font-size: 1.2rem;
    }

    .introduction h2,
    .gaming-area h2,
    .distinctions h2,
    .commitment-text h2 {
        font-size: 3rem;
    }

    .section-intro {
        font-size: 1.25rem;
    }

    .game-wrapper iframe {
        height: 550px;
    }

    .modal-content {
        padding: 3.5rem 3rem;
        margin: 2.5rem;
    }

    .modal-content h2 {
        font-size: 2.2rem;
    }

    .distinctions-grid {
        grid-template-columns: 1fr;
    }

    .trio-grid {
        grid-template-columns: 1fr;
    }
}
