* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Chakra Petch', sans-serif;
    background: #050810;
    color: #e5e5e5;
    line-height: 1.65;
}

.header {
    background: linear-gradient(135deg, #0c1220 0%, #1a1f35 100%);
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, #F59E0B 0%, #EF4444 100%) 1;
    position: sticky;
    top: 0;
    z-index: 800;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.header-container {
    max-width: 100%;
    padding: 22px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-area svg {
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.navigation {
    display: flex;
    gap: 32px;
}

.navigation a {
    color: #d5d5d5;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F59E0B 0%, #EF4444 100%);
    transition: width 0.3s;
}

.navigation a:hover::after {
    width: 100%;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-burger span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B 0%, #EF4444 100%);
    border-radius: 2px;
    transition: all 0.3s;
}

.main-content {
    width: 100%;
}

.hero-area {
    padding: 90px 35px;
    background: linear-gradient(180deg, #0c1220 0%, #050810 100%);
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 26px;
    color: #b8b8b8;
    margin-bottom: 45px;
}

.hero-features {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.mini-feature {
    background: rgba(245, 158, 11, 0.08);
    border: 2px solid rgba(245, 158, 11, 0.3);
    padding: 16px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.mini-feature:hover {
    border-color: #F59E0B;
    transform: translateY(-3px);
}

.mini-icon {
    font-size: 24px;
}

.game-section {
    padding: 85px 35px;
}

.game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.game-header {
    text-align: center;
    margin-bottom: 55px;
}

.game-header h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-header p {
    font-size: 20px;
    color: #b8b8b8;
}

.game-frame-container {
    background: #0c1220;
    padding: 28px;
    border-radius: 15px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%) 1;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.game-frame {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 10px;
}

.game-note {
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: center;
}

.game-note p {
    font-size: 19px;
    color: #b8b8b8;
    line-height: 1.8;
}

.advantages {
    padding: 85px 35px;
    background: #0c1220;
}

.advantages-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.advantages-title {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.advantages-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.advantage-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: rgba(245, 158, 11, 0.04);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid transparent;
    transition: all 0.4s;
}

.advantage-item.left {
    border-left-color: #F59E0B;
}

.advantage-item.right {
    border-left-color: #EF4444;
    flex-direction: row-reverse;
    text-align: right;
}

.advantage-item:hover {
    background: rgba(245, 158, 11, 0.08);
    transform: translateX(8px);
}

.advantage-item.right:hover {
    transform: translateX(-8px);
}

.advantage-icon {
    font-size: 56px;
    min-width: 80px;
}

.advantage-text h3 {
    font-size: 28px;
    margin-bottom: 14px;
    color: #fff;
}

.advantage-text p {
    font-size: 17px;
    color: #b8b8b8;
    line-height: 1.8;
}

.info-block {
    padding: 85px 35px;
}

.info-container {
    max-width: 1300px;
    margin: 0 auto;
}

.critical-info {
    background: rgba(245, 158, 11, 0.06);
    border: 3px solid;
    border-image: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%) 1;
    border-radius: 12px;
    padding: 50px;
}

.critical-info h3 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #F59E0B;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.info-point h4 {
    font-size: 22px;
    color: #EF4444;
    margin-bottom: 12px;
}

.info-point p {
    font-size: 17px;
    color: #b8b8b8;
    line-height: 1.8;
}

.mission {
    padding: 85px 35px;
    background: #0c1220;
}

.mission-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.mission h2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-content p {
    font-size: 18px;
    color: #b8b8b8;
    margin-bottom: 28px;
    line-height: 1.9;
}

.stats {
    padding: 85px 35px;
}

.stats-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-box {
    background: #0c1220;
    padding: 45px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: #F59E0B;
    transform: scale(1.05);
}

.stat-value {
    display: block;
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-hero {
    padding: 85px 35px 55px;
    background: linear-gradient(180deg, #0c1220 0%, #050810 100%);
    text-align: center;
}

.play-hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

.play-hero-content p {
    font-size: 24px;
    color: #b8b8b8;
}

.play-area {
    padding: 65px 35px 85px;
}

.play-container {
    max-width: 1500px;
    margin: 0 auto;
}

.player-box {
    background: #0c1220;
    padding: 28px;
    border-radius: 15px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%) 1;
}

.player-frame {
    width: 100%;
    height: 780px;
    border: none;
    border-radius: 10px;
}

.guides {
    padding: 85px 35px;
    background: #0c1220;
}

.guides-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.guide-box {
    background: rgba(245, 158, 11, 0.04);
    padding: 55px;
    border-radius: 12px;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.guide-box h2 {
    font-size: 38px;
    margin-bottom: 45px;
    color: #F59E0B;
    text-align: center;
}

.guide-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}

.guide-section h4 {
    font-size: 21px;
    color: #EF4444;
    margin-bottom: 12px;
}

.guide-section p {
    font-size: 16px;
    color: #b8b8b8;
    line-height: 1.8;
}

.play-notice {
    padding: 55px 35px 85px;
}

.notice-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.notice-content {
    background: rgba(245, 158, 11, 0.1);
    border: 3px solid #F59E0B;
    border-radius: 12px;
    padding: 45px;
    text-align: center;
}

.notice-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
}

.notice-content p {
    font-size: 19px;
    color: #b8b8b8;
    line-height: 1.8;
}

.legal-hero {
    padding: 85px 35px 55px;
    background: #0c1220;
    text-align: center;
}

.legal-hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    font-size: 16px;
    color: #888;
}

.legal-section {
    padding: 65px 35px 85px;
}

.legal-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.legal-text {
    background: #0c1220;
    padding: 60px;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.legal-text h3 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 22px;
    color: #F59E0B;
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text h4 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #d5d5d5;
}

.legal-text p {
    margin-bottom: 20px;
    color: #a8a8a8;
    line-height: 1.85;
    font-size: 17px;
}

.legal-text ul {
    margin: 20px 0 20px 38px;
    color: #a8a8a8;
}

.legal-text li {
    margin-bottom: 13px;
    line-height: 1.8;
}

.warning-panel {
    background: rgba(239, 68, 68, 0.1);
    border: 3px solid #EF4444;
    border-radius: 10px;
    padding: 38px;
    margin-bottom: 50px;
}

.warning-panel h3 {
    margin-top: 0 !important;
    margin-bottom: 16px;
}

.summary-panel {
    background: rgba(245, 158, 11, 0.12);
    border-left: 5px solid #F59E0B;
    padding: 28px;
    margin-top: 50px;
    border-radius: 6px;
}

.summary-panel p {
    margin-bottom: 0;
    font-weight: 600;
    color: #fff;
    font-size: 19px;
}

.footer {
    background: #0c1220;
    padding: 65px 0 32px;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #F59E0B 0%, #EF4444 100%) 1;
}

.footer-container {
    max-width: 100%;
    padding: 0 35px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto 42px;
}

.footer-column h4 {
    color: #F59E0B;
    margin-bottom: 20px;
    font-size: 21px;
}

.footer-column p {
    color: #b8b8b8;
    line-height: 1.75;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #F59E0B;
}

.footer-bar {
    text-align: center;
    padding-top: 38px;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    color: #888;
    font-size: 15px;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: linear-gradient(135deg, #0c1220 0%, #1a1f35 100%);
    padding: 58px;
    border-radius: 20px;
    text-align: center;
    max-width: 560px;
    border: 4px solid;
    border-image: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%) 1;
    box-shadow: 0 0 70px rgba(245, 158, 11, 0.4);
}

.age-symbol {
    font-size: 76px;
    margin-bottom: 28px;
}

.age-box h2 {
    color: #fff;
    margin-bottom: 22px;
    font-size: 34px;
}

.age-box p {
    color: #b8b8b8;
    margin-bottom: 18px;
    font-size: 19px;
}

.age-info {
    color: #F59E0B;
    font-weight: 600;
    font-size: 20px !important;
}

.age-note {
    font-size: 17px;
    margin-bottom: 38px !important;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 18px 38px;
    border: none;
    border-radius: 12px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-accept {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    color: #fff;
}

.btn-accept:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

.btn-reject {
    background: rgba(255, 255, 255, 0.06);
    color: #b8b8b8;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: #0c1220;
        flex-direction: column;
        padding: 28px 35px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 4px solid #F59E0B;
    }

    .navigation.active {
        transform: translateX(0);
    }

    .navigation a {
        padding: 20px 0;
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    }

    .navigation a::after {
        display: none;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-lead {
        font-size: 22px;
    }

    .hero-features {
        flex-direction: column;
    }

    .advantage-item {
        flex-direction: column !important;
        text-align: left !important;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-frame {
        height: 520px;
    }

    .player-frame {
        height: 580px;
    }

    .guide-sections {
        grid-template-columns: 1fr;
    }

    .legal-text {
        padding: 38px 28px;
    }

    .age-box {
        margin: 22px;
        padding: 38px 28px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 30px;
    }

    .hero-lead {
        font-size: 19px;
    }

    .game-header h2,
    .advantages-title {
        font-size: 34px;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 470px;
    }

    .player-frame {
        height: 520px;
    }
}