* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f0a15;
    color: #ececec;
    line-height: 1.75;
}

.main-header {
    background: linear-gradient(135deg, #1a0f24 0%, #0f0a15 100%);
    border-bottom: 2px solid #D946EF;
    position: sticky;
    top: 0;
    z-index: 850;
    box-shadow: 0 4px 20px rgba(217, 70, 239, 0.2);
}

.header-wrap {
    max-width: 100%;
    padding: 26px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2.5px;
    background: linear-gradient(135deg, #D946EF 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-mark svg {
    filter: drop-shadow(0 0 12px rgba(217, 70, 239, 0.6));
}

.primary-nav {
    display: flex;
    gap: 38px;
}

.primary-nav a {
    color: #d8d8d8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.primary-nav a:hover {
    color: #D946EF;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, #D946EF 0%, #EC4899 100%);
    transition: all 0.3s;
}

.page-content {
    width: 100%;
}

.hero-section {
    padding: 100px 45px;
    background: linear-gradient(180deg, #1a0f24 0%, #0f0a15 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-container h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 26px;
    color: #fff;
    line-height: 1.2;
}

.hero-text {
    font-size: 22px;
    color: #c0c0c0;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(217, 70, 239, 0.08);
    border: 2px solid rgba(217, 70, 239, 0.4);
    padding: 18px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.badge-item:hover {
    border-color: #D946EF;
    background: rgba(217, 70, 239, 0.12);
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 17px;
    font-weight: 600;
}

.game-section {
    padding: 90px 45px;
}

.game-section-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #D946EF 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 20px;
    color: #c0c0c0;
}

.game-embed-box {
    background: #1a0f24;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid rgba(217, 70, 239, 0.3);
    box-shadow: 0 10px 40px rgba(217, 70, 239, 0.15);
}

.game-embed-frame {
    width: 100%;
    height: 720px;
    border: none;
    border-radius: 12px;
}

.game-caption {
    max-width: 1000px;
    margin: 45px auto 0;
    text-align: center;
}

.game-caption p {
    font-size: 19px;
    color: #c0c0c0;
    line-height: 1.8;
}

.values-section {
    padding: 90px 45px;
    background: #1a0f24;
}

.values-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.values-heading {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 65px;
    color: #fff;
}

.values-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 38px;
}

.value-card {
    background: rgba(217, 70, 239, 0.04);
    padding: 42px;
    border-radius: 14px;
    border: 1px solid rgba(217, 70, 239, 0.2);
    transition: all 0.4s;
}

.value-card:hover {
    border-color: #D946EF;
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(217, 70, 239, 0.2);
}

.value-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #D946EF 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #fff;
}

.value-card p {
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 17px;
}

.disclosure-section {
    padding: 90px 45px;
}

.disclosure-wrap {
    max-width: 1300px;
    margin: 0 auto;
}

.disclosure-box {
    background: rgba(217, 70, 239, 0.06);
    border: 2px solid #D946EF;
    border-radius: 14px;
    padding: 52px;
}

.disclosure-box h3 {
    font-size: 38px;
    margin-bottom: 42px;
    color: #D946EF;
    text-align: center;
}

.disclosure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
}

.disclosure-point h4 {
    font-size: 22px;
    color: #EC4899;
    margin-bottom: 14px;
}

.disclosure-point p {
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 17px;
}

.philosophy-section {
    padding: 90px 45px;
    background: #1a0f24;
}

.philosophy-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-wrap h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #D946EF 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-content p {
    font-size: 18px;
    color: #c0c0c0;
    margin-bottom: 30px;
    line-height: 1.9;
}

.stats-section {
    padding: 90px 45px;
}

.stats-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 32px;
}

.stat-panel {
    background: #1a0f24;
    padding: 50px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(217, 70, 239, 0.2);
    transition: all 0.3s;
}

.stat-panel:hover {
    border-color: #D946EF;
    transform: scale(1.06);
}

.stat-figure {
    font-size: 58px;
    font-weight: 800;
    background: linear-gradient(135deg, #D946EF 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.stat-caption {
    font-size: 16px;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.play-header {
    padding: 90px 45px 60px;
    background: linear-gradient(180deg, #1a0f24 0%, #0f0a15 100%);
    text-align: center;
}

.play-header-content h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
}

.play-header-content p {
    font-size: 24px;
    color: #c0c0c0;
}

.play-section {
    padding: 70px 45px 90px;
}

.play-section-wrap {
    max-width: 1500px;
    margin: 0 auto;
}

.gameplay-box {
    background: #1a0f24;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid rgba(217, 70, 239, 0.3);
}

.gameplay-frame {
    width: 100%;
    height: 820px;
    border: none;
    border-radius: 12px;
}

.guide-section {
    padding: 90px 45px;
    background: #1a0f24;
}

.guide-wrap {
    max-width: 1300px;
    margin: 0 auto;
}

.guide-container {
    background: rgba(217, 70, 239, 0.04);
    padding: 58px;
    border-radius: 14px;
    border: 1px solid rgba(217, 70, 239, 0.2);
}

.guide-container h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #D946EF;
    text-align: center;
}

.guide-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.guide-article h4 {
    font-size: 22px;
    color: #EC4899;
    margin-bottom: 12px;
}

.guide-article p {
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 16px;
}

.play-reminder {
    padding: 60px 45px 90px;
}

.play-reminder-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.reminder-content {
    background: rgba(217, 70, 239, 0.1);
    border: 2px solid #D946EF;
    border-radius: 14px;
    padding: 48px;
    text-align: center;
}

.reminder-content h3 {
    font-size: 32px;
    margin-bottom: 22px;
    color: #fff;
}

.reminder-content p {
    font-size: 19px;
    color: #c0c0c0;
    line-height: 1.8;
}

.document-header {
    padding: 90px 45px 60px;
    background: #1a0f24;
    text-align: center;
}

.document-header-content h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #D946EF 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.document-date {
    font-size: 16px;
    color: #888;
}

.document-section {
    padding: 70px 45px 90px;
}

.document-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.document-content {
    background: #1a0f24;
    padding: 62px;
    border-radius: 14px;
    border: 1px solid rgba(217, 70, 239, 0.2);
}

.document-content h3 {
    font-size: 32px;
    margin-top: 52px;
    margin-bottom: 24px;
    color: #D946EF;
}

.document-content h3:first-child {
    margin-top: 0;
}

.document-content h4 {
    font-size: 26px;
    margin-top: 34px;
    margin-bottom: 18px;
    color: #d8d8d8;
}

.document-content p {
    margin-bottom: 22px;
    color: #b0b0b0;
    line-height: 1.85;
    font-size: 17px;
}

.document-content ul {
    margin: 22px 0 22px 40px;
    color: #b0b0b0;
}

.document-content li {
    margin-bottom: 14px;
    line-height: 1.8;
}

.warning-box {
    background: rgba(236, 72, 153, 0.1);
    border: 2px solid #EC4899;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 52px;
}

.warning-box h3 {
    margin-top: 0 !important;
    margin-bottom: 18px;
}

.conclusion-box {
    background: rgba(217, 70, 239, 0.12);
    border-left: 5px solid #D946EF;
    padding: 30px;
    margin-top: 52px;
    border-radius: 6px;
}

.conclusion-box p {
    margin-bottom: 0;
    font-weight: 600;
    color: #fff;
    font-size: 19px;
}

.main-footer {
    background: #1a0f24;
    padding: 70px 0 38px;
    border-top: 2px solid #D946EF;
}

.footer-wrap {
    max-width: 100%;
    padding: 0 45px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 48px;
}

.footer-column h4 {
    color: #D946EF;
    margin-bottom: 22px;
    font-size: 22px;
}

.footer-column p {
    color: #c0c0c0;
    line-height: 1.75;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #D946EF;
}

.footer-bottom {
    text-align: center;
    padding-top: 42px;
    border-top: 1px solid rgba(217, 70, 239, 0.2);
    color: #888;
    font-size: 15px;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate.hidden {
    display: none;
}

.age-gate-inner {
    background: linear-gradient(135deg, #1a0f24 0%, #0f0a15 100%);
    padding: 62px;
    border-radius: 20px;
    text-align: center;
    max-width: 580px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #D946EF 0%, #EC4899 100%) 1;
    box-shadow: 0 0 70px rgba(217, 70, 239, 0.4);
}

.age-gate-symbol {
    font-size: 78px;
    margin-bottom: 30px;
}

.age-gate-inner h2 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 38px;
}

.age-gate-inner p {
    color: #c0c0c0;
    margin-bottom: 20px;
    font-size: 20px;
}

.age-requirement {
    color: #D946EF;
    font-weight: 600;
    font-size: 22px !important;
}

.age-info {
    font-size: 18px;
    margin-bottom: 40px !important;
}

.age-choice {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.confirm-btn,
.decline-btn {
    padding: 20px 42px;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.confirm-btn {
    background: linear-gradient(135deg, #D946EF 0%, #EC4899 100%);
    color: #fff;
}

.confirm-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(217, 70, 239, 0.5);
}

.decline-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #c0c0c0;
}

.decline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: #1a0f24;
        flex-direction: column;
        padding: 32px 45px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 2px solid #D946EF;
    }

    .primary-nav.active {
        transform: translateX(0);
    }

    .primary-nav a {
        padding: 22px 0;
        border-bottom: 1px solid rgba(217, 70, 239, 0.2);
    }

    .hero-container h1 {
        font-size: 40px;
    }

    .hero-text {
        font-size: 20px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .values-layout {
        grid-template-columns: 1fr;
    }

    .disclosure-grid {
        grid-template-columns: 1fr;
    }

    .stats-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-embed-frame {
        height: 560px;
    }

    .gameplay-frame {
        height: 620px;
    }

    .guide-articles {
        grid-template-columns: 1fr;
    }

    .document-content {
        padding: 42px 32px;
    }

    .age-gate-inner {
        margin: 24px;
        padding: 42px 32px;
    }
}

@media (max-width: 480px) {
    .hero-container h1 {
        font-size: 32px;
    }

    .hero-text {
        font-size: 18px;
    }

    .section-header h2,
    .values-heading {
        font-size: 38px;
    }

    .value-card {
        padding: 32px;
    }

    .stats-wrap {
        grid-template-columns: 1fr;
    }

    .game-embed-frame {
        height: 510px;
    }

    .gameplay-frame {
        height: 560px;
    }
}