* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    background: #0f0a1e;
    color: #e6e0f5;
    line-height: 1.65;
    min-height: 100vh;
}

.verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 30, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(6px);
}

.verification-overlay.hidden {
    display: none;
}

.verification-box {
    background: linear-gradient(145deg, #1a1236, #0f0a1e);
    padding: 52px 48px;
    border-radius: 20px;
    max-width: 560px;
    text-align: center;
    border: 3px solid #a855f7;
    box-shadow: 0 24px 65px rgba(168, 85, 247, 0.45);
}

.verify-icon {
    font-size: 92px;
    margin-bottom: 26px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.verification-box h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #a855f7;
}

.verification-box p {
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.75;
    color: #c4b5e8;
}

.verify-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.verify-actions button {
    padding: 17px 42px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 0.3s ease;
}

.confirm-btn {
    background: #a855f7;
    color: #0f0a1e;
    border-color: #a855f7;
}

.confirm-btn:hover {
    background: #9333ea;
    border-color: #9333ea;
    transform: scale(1.07);
    box-shadow: 0 12px 38px rgba(168, 85, 247, 0.55);
}

.deny-btn {
    background: transparent;
    color: #ef4444;
    border-color: #ef4444;
}

.deny-btn:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.07);
}

.top-header {
    background: rgba(15, 10, 30, 0.96);
    border-bottom: 3px solid #a855f7;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.content-wrap {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 52px;
}

.top-header .content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 52px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 34px;
    font-weight: 700;
    color: #a855f7;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.06);
}

.logo-symbol {
    font-size: 44px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.toggle-line {
    width: 32px;
    height: 3px;
    background: #a855f7;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header-nav {
    display: flex;
    gap: 42px;
}

.header-nav a {
    color: #e6e0f5;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 7px 0;
    border-bottom: 3px solid transparent;
}

.header-nav a:hover {
    color: #a855f7;
    border-bottom-color: #a855f7;
}

.page-main {
    padding: 0;
}

.welcome-area {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, #0f0a1e 0%, #1a1236 50%, #0f0a1e 100%);
}

.welcome-area h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #a855f7;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.welcome-lead {
    font-size: 21px;
    max-width: 950px;
    margin: 0 auto 46px;
    color: #c4b5e8;
    line-height: 1.75;
}

.feature-pills {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.pill {
    background: rgba(168, 85, 247, 0.18);
    border: 2px solid #a855f7;
    padding: 15px 32px;
    border-radius: 35px;
    font-size: 17px;
    font-weight: 600;
}

.gaming-area {
    padding: 85px 0;
    background: #0f0a1e;
}

.gaming-area h2 {
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #a855f7;
}

.game-embed-wrap {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto 42px;
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid #a855f7;
    box-shadow: 0 16px 52px rgba(168, 85, 247, 0.35);
}

.game-embed-wrap iframe {
    width: 100%;
    height: 750px;
    display: block;
    border: none;
}

.main-action {
    display: inline-block;
    padding: 22px 56px;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: #0f0a1e;
    text-decoration: none;
    font-size: 23px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.45);
}

.main-action:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(168, 85, 247, 0.65);
}

.benefits-area {
    padding: 85px 0;
    background: linear-gradient(180deg, #0f0a1e 0%, #1a1236 100%);
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 38px;
}

.benefit-box {
    background: rgba(26, 18, 54, 0.7);
    padding: 48px;
    border-radius: 18px;
    border: 2px solid rgba(168, 85, 247, 0.35);
    transition: all 0.3s ease;
}

.benefit-box:hover {
    border-color: #a855f7;
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(168, 85, 247, 0.35);
}

.benefit-symbol {
    font-size: 76px;
    margin-bottom: 28px;
}

.benefit-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #a855f7;
}

.benefit-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #c4b5e8;
}

.notices-area {
    padding: 85px 0;
    background: #0f0a1e;
}

.notices-area h2 {
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #a855f7;
}

.notices-layout {
    display: grid;
    gap: 38px;
}

.notice-panel {
    background: rgba(26, 18, 54, 0.7);
    padding: 44px;
    border-radius: 18px;
    border-left: 7px solid #a855f7;
    box-shadow: 0 10px 38px rgba(0, 0, 0, 0.45);
}

.notice-panel h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #a855f7;
}

.notice-panel p {
    font-size: 16px;
    line-height: 1.8;
    color: #c4b5e8;
}

.statistics-area {
    padding: 85px 0;
    background: linear-gradient(180deg, #0f0a1e 0%, #1a1236 100%);
    text-align: center;
}

.statistics-area h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #a855f7;
}

.stats-description {
    font-size: 19px;
    max-width: 960px;
    margin: 0 auto 56px;
    color: #c4b5e8;
    line-height: 1.75;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 38px;
    max-width: 1250px;
    margin: 0 auto;
}

.stat-element {
    background: rgba(26, 18, 54, 0.7);
    padding: 50px;
    border-radius: 18px;
    border: 3px solid #a855f7;
}

.stat-figure {
    font-size: 56px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 14px;
}

.stat-name {
    font-size: 19px;
    color: #c4b5e8;
}

.bottom-footer {
    background: rgba(15, 10, 30, 0.96);
    border-top: 3px solid #a855f7;
    padding: 62px 52px 36px;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 44px;
    margin-bottom: 44px;
}

.footer-column h4 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #a855f7;
}

.footer-column p {
    margin-bottom: 22px;
    color: #c4b5e8;
    line-height: 1.75;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-list a {
    color: #a855f7;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: #9333ea;
    padding-left: 7px;
}

.footer-base {
    padding-top: 32px;
    border-top: 1px solid rgba(168, 85, 247, 0.35);
    text-align: center;
    color: #c4b5e8;
    font-size: 14px;
}

.play-welcome {
    padding: 85px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #0f0a1e 0%, #1a1236 100%);
}

.play-welcome h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #a855f7;
}

.play-welcome p {
    font-size: 21px;
    max-width: 820px;
    margin: 0 auto;
    color: #c4b5e8;
}

.game-info-area {
    padding: 85px 0;
    background: #0f0a1e;
}

.game-info-area h2 {
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #a855f7;
}

.info-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 38px;
}

.info-item {
    background: rgba(26, 18, 54, 0.7);
    padding: 48px;
    border-radius: 18px;
    border: 2px solid rgba(168, 85, 247, 0.35);
}

.info-symbol {
    font-size: 76px;
    margin-bottom: 28px;
}

.info-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #a855f7;
}

.info-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #c4b5e8;
}

.legal-intro {
    padding: 85px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #0f0a1e 0%, #1a1236 100%);
    border-bottom: 3px solid rgba(168, 85, 247, 0.35);
}

.legal-intro h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #a855f7;
}

.legal-timestamp {
    font-size: 16px;
    color: #c4b5e8;
    font-style: italic;
}

.legal-text {
    padding: 85px 0;
    background: #0f0a1e;
}

.legal-text .content-wrap {
    max-width: 1150px;
}

.legal-segment {
    margin-bottom: 52px;
    background: rgba(26, 18, 54, 0.7);
    padding: 48px;
    border-radius: 18px;
    border-left: 7px solid #a855f7;
}

.legal-segment h2 {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #a855f7;
}

.legal-segment p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #c4b5e8;
}

.legal-segment p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .content-wrap {
        padding: 0 30px;
    }

    .top-header .content-wrap {
        padding: 22px 30px;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 290px;
        height: calc(100vh - 90px);
        background: rgba(15, 10, 30, 0.98);
        flex-direction: column;
        padding: 42px 32px;
        gap: 26px;
        transition: right 0.3s ease;
        border-left: 3px solid #a855f7;
        box-shadow: -7px 0 30px rgba(0, 0, 0, 0.55);
    }

    .header-nav.active {
        right: 0;
    }

    .welcome-area h1 {
        font-size: 42px;
    }

    .welcome-lead {
        font-size: 18px;
    }

    .game-embed-wrap iframe {
        height: 540px;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }
}
