* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    color: #e0e7ff;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
}

.wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.wrap-small {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification */
.verify-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.verify-overlay.hidden {
    display: none;
}

.verify-card {
    background: linear-gradient(135deg, #312e81 0%, #1e3a8a 100%);
    padding: 45px 35px;
    border-radius: 18px;
    max-width: 520px;
    text-align: center;
    border: 3px solid #dc2626;
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.3);
}

.verify-icon {
    font-size: 75px;
    margin-bottom: 20px;
}

.verify-card h2 {
    font-size: 38px;
    color: #dc2626;
    margin-bottom: 15px;
    font-weight: 700;
}

.verify-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #c7d2fe;
}

.verify-text {
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-top: 25px !important;
    margin-bottom: 30px !important;
}

.verify-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.verify-actions button {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.verify-yes {
    background: #dc2626;
    color: white;
}

.verify-yes:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.verify-no {
    background: #374151;
    color: white;
}

.verify-no:hover {
    background: #1f2937;
}

/* Top Header */
.top-header {
    background: rgba(31, 41, 55, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #dc2626;
    backdrop-filter: blur(10px);
}

.top-header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #dc2626;
    letter-spacing: 3px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #c7d2fe;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Banner Zone */
.banner-zone {
    padding: 80px 0 70px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(220, 38, 38, 0.15) 0%, transparent 100%);
}

.banner-zone h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #dc2626 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.banner-text {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: #c7d2fe;
}

.badge-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 25px;
    border: 2px solid;
    font-weight: 700;
}

.info-badge.red {
    background: rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
}

.info-badge.blue {
    background: rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.info-badge.dark {
    background: rgba(55, 65, 81, 0.3);
    border-color: #6b7280;
}

.badge-symbol {
    font-size: 22px;
}

.badge-label {
    font-size: 15px;
    color: #e0e7ff;
}

/* Info Zone */
.info-zone {
    padding: 60px 0;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: rgba(31, 41, 55, 0.5);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #374151;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.box-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.box-icon {
    font-size: 42px;
}

.info-box h3 {
    font-size: 22px;
    color: #dc2626;
    font-weight: 700;
}

.info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #c7d2fe;
}

/* Game Zone */
.game-zone {
    padding: 70px 0;
    background: rgba(31, 41, 55, 0.3);
}

.game-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px;
}

.game-intro h2 {
    font-size: 46px;
    color: #dc2626;
    margin-bottom: 20px;
}

.game-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #c7d2fe;
}

.game-display {
    max-width: 1200px;
    margin: 0 auto 30px;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid #2563eb;
}

.game-display iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-tip {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(37, 99, 235, 0.15);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #2563eb;
    text-align: center;
}

.game-tip p {
    font-size: 16px;
    color: #c7d2fe;
}

/* Features Zone */
.features-zone {
    padding: 70px 0;
}

.zone-title {
    font-size: 46px;
    color: #2563eb;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(31, 41, 55, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #374151;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
}

.feature-num {
    font-size: 48px;
    font-weight: 700;
    color: #dc2626;
    opacity: 0.4;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 22px;
    color: #e0e7ff;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #c7d2fe;
}

/* About Zone */
.about-zone {
    padding: 70px 0;
    background: rgba(31, 41, 55, 0.3);
}

.about-zone h2 {
    font-size: 42px;
    color: #dc2626;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #c7d2fe;
    margin-bottom: 20px;
}

/* Play Page */
.play-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.play-head {
    text-align: center;
    margin-bottom: 40px;
}

.play-head h1 {
    font-size: 52px;
    color: #dc2626;
    margin-bottom: 20px;
}

.play-desc {
    font-size: 19px;
    max-width: 850px;
    margin: 0 auto;
    color: #c7d2fe;
    line-height: 1.7;
}

.play-guide {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: rgba(31, 41, 55, 0.5);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #374151;
}

.play-guide h3 {
    font-size: 26px;
    color: #2563eb;
    margin-bottom: 25px;
}

.guide-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.guide-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.point-icon {
    font-size: 38px;
}

.guide-point p {
    font-size: 15px;
    color: #c7d2fe;
}

.browser-info {
    font-size: 15px;
    color: #a5b4fc;
    text-align: center;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 10px;
}

.legal-date {
    font-size: 15px;
    color: #818cf8;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-block {
    margin-bottom: 35px;
}

.legal-block h2 {
    font-size: 26px;
    color: #2563eb;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #c7d2fe;
    margin-bottom: 15px;
}

.notice-box {
    padding: 30px;
    border-radius: 12px;
    border: 3px solid;
    margin: 35px 0;
}

.notice-box.red {
    background: rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
}

.notice-box.blue {
    background: rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.notice-box.dark {
    background: rgba(55, 65, 81, 0.2);
    border-color: #6b7280;
}

.notice-box h2 {
    margin-top: 0;
    font-size: 28px;
}

/* Footer */
.bottom-footer {
    background: rgba(31, 41, 55, 0.95);
    padding: 55px 0 20px;
    border-top: 3px solid #dc2626;
    margin-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-area h4 {
    font-size: 22px;
    color: #dc2626;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-area p {
    font-size: 15px;
    color: #c7d2fe;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: #a5b4fc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #2563eb;
}

.footer-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4b5563;
    color: #818cf8;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(31, 41, 55, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        border-left: 3px solid #dc2626;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #374151;
    }

    .banner-zone h1 {
        font-size: 40px;
    }

    .banner-text {
        font-size: 17px;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .game-intro h2,
    .zone-title {
        font-size: 36px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .play-head h1 {
        font-size: 38px;
    }

    .guide-points {
        grid-template-columns: 1fr 1fr;
    }

    .legal-page h1 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
