* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.68;
    color: #fef3c7;
    background: #1c0a00;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(217, 119, 6, 0.12), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.08), transparent 60%);
    min-height: 100vh;
}

.wrapper {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 26px;
}

.site-nav {
    background: rgba(68, 29, 0, 0.92);
    backdrop-filter: blur(9px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #F59E0B;
    padding: 1.22rem 0;
}

.site-nav .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-title {
    font-size: 1.68rem;
    font-weight: 900;
    color: #F59E0B;
    letter-spacing: 0.8px;
}

.nav-links {
    display: none;
    gap: 2.7rem;
}

.nav-links a {
    color: #fef3c7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.93rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FCD34D;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #FCD34D;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-btn span {
    width: 30px;
    height: 3px;
    background: #F59E0B;
    transition: all 0.3s;
    border-radius: 3px;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-drawer {
    display: none;
    flex-direction: column;
    background: rgba(68, 29, 0, 0.97);
    position: fixed;
    top: 83px;
    left: 0;
    right: 0;
    padding: 2.6rem;
    gap: 1.3rem;
    z-index: 999;
    border-bottom: 3px solid #F59E0B;
}

.mobile-drawer.active {
    display: flex;
}

.mobile-drawer a {
    color: #fef3c7;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 11px;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.mobile-drawer a:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: #F59E0B;
    color: #FCD34D;
}

.intro-section {
    padding: 92px 0;
    text-align: center;
}

.intro-section h1 {
    font-size: 2.95rem;
    color: #F59E0B;
    margin-bottom: 1.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.intro-desc {
    font-size: 1.16rem;
    max-width: 770px;
    margin: 0 auto 2.7rem;
    line-height: 1.8;
}

.action-link {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 11px;
    font-weight: 700;
    font-size: 1.16rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s;
    border: 3px solid #F59E0B;
    box-shadow: 0 7px 27px rgba(245, 158, 11, 0.36);
}

.action-link:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    transform: translateY(-4px);
    box-shadow: 0 11px 36px rgba(245, 158, 11, 0.52);
}

.features-section {
    padding: 73px 0;
}

.features-row {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.feature-box {
    background: rgba(68, 29, 0, 0.5);
    padding: 46px 36px;
    border-radius: 13px;
    border: 2px solid rgba(245, 158, 11, 0.35);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: #F59E0B;
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.27);
}

.feature-emoji {
    font-size: 3.7rem;
    margin-bottom: 1.65rem;
}

.feature-box h3 {
    color: #FCD34D;
    font-size: 1.63rem;
    margin-bottom: 1.15rem;
    font-weight: 700;
}

.gameplay-section {
    padding: 73px 0;
}

.gameplay-section h2 {
    text-align: center;
    font-size: 2.38rem;
    color: #F59E0B;
    margin-bottom: 1.15rem;
    font-weight: 900;
}

.gameplay-subtitle {
    text-align: center;
    margin-bottom: 3.1rem;
    font-size: 1.1rem;
}

.gameplay-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    background: rgba(68, 29, 0, 0.65);
    padding: 27px;
    border-radius: 13px;
    border: 3px solid #F59E0B;
}

.gameplay-frame {
    width: 100%;
    height: 665px;
    border: none;
    border-radius: 10px;
}

.notice-section {
    padding: 73px 0;
}

.notice-container {
    background: rgba(139, 0, 0, 0.17);
    border: 3px solid #d97706;
    border-radius: 13px;
    padding: 41px;
}

.notice-container h3 {
    color: #FCD34D;
    font-size: 1.73rem;
    margin-bottom: 2.1rem;
    font-weight: 700;
}

.notice-row {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.notice-block {
    background: rgba(68, 29, 0, 0.4);
    padding: 23px;
    border-radius: 10px;
    border-left: 5px solid #F59E0B;
}

.benefits-section {
    padding: 73px 0;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.38rem;
    color: #F59E0B;
    margin-bottom: 3.7rem;
    font-weight: 900;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.benefit-entry {
    background: rgba(68, 29, 0, 0.4);
    padding: 36px;
    border-radius: 13px;
    border-bottom: 5px solid #FCD34D;
}

.benefit-tag {
    font-size: 2.7rem;
    font-weight: 900;
    color: #F59E0B;
    display: block;
    margin-bottom: 1.45rem;
}

.benefit-entry h4 {
    color: #FCD34D;
    font-size: 1.46rem;
    margin-bottom: 0.95rem;
    font-weight: 700;
}

.description-section {
    padding: 73px 0;
}

.description-box {
    background: rgba(68, 29, 0, 0.5);
    padding: 56px;
    border-radius: 13px;
    border: 2px solid rgba(245, 158, 11, 0.35);
}

.description-box h2 {
    color: #F59E0B;
    font-size: 2.28rem;
    margin-bottom: 2.25rem;
    font-weight: 900;
}

.description-box p {
    margin-bottom: 1.85rem;
    font-size: 1.08rem;
    line-height: 1.8;
}

.site-footer {
    background: rgba(68, 29, 0, 0.95);
    padding: 56px 0 26px;
    margin-top: 73px;
    border-top: 3px solid #F59E0B;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-col h4 {
    color: #F59E0B;
    margin-bottom: 1.22rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.72rem;
}

.footer-col a {
    color: #fef3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #FCD34D;
}

.footer-end {
    text-align: center;
    padding-top: 36px;
    border-top: 1px solid rgba(245, 158, 11, 0.3);
}

.verify-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.verify-modal.hidden {
    display: none;
}

.verify-box {
    background: linear-gradient(135deg, #441d00 0%, #D97706 100%);
    padding: 46px;
    border-radius: 17px;
    max-width: 530px;
    text-align: center;
    border: 3px solid #F59E0B;
    box-shadow: 0 17px 63px rgba(245, 158, 11, 0.43);
    margin: 20px;
}

.verify-emoji {
    font-size: 4.7rem;
    margin-bottom: 1.65rem;
}

.verify-box h2 {
    color: #F59E0B;
    margin-bottom: 1.65rem;
    font-size: 2.08rem;
    font-weight: 900;
}

.verify-box p {
    margin-bottom: 2.7rem;
    line-height: 1.8;
}

.verify-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.verify-accept,
.verify-decline {
    padding: 16px 41px;
    border: none;
    border-radius: 11px;
    font-size: 1.06rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.verify-accept {
    background: #F59E0B;
    color: #ffffff;
    border: 3px solid #F59E0B;
}

.verify-accept:hover {
    background: #FBBF24;
    transform: scale(1.07);
}

.verify-decline {
    background: #7f1d1d;
    color: #fef3c7;
    border: 3px solid #7f1d1d;
}

.verify-decline:hover {
    background: #991b1b;
    transform: scale(1.07);
}

.play-intro {
    padding: 73px 0 36px;
    text-align: center;
}

.play-intro h1 {
    font-size: 2.95rem;
    color: #F59E0B;
    margin-bottom: 1.65rem;
    font-weight: 900;
}

.play-main {
    padding: 36px 0 73px;
}

.play-guide {
    background: rgba(68, 29, 0, 0.5);
    padding: 36px;
    border-radius: 13px;
    margin-bottom: 36px;
    border: 2px solid rgba(245, 158, 11, 0.35);
}

.play-guide h3 {
    color: #FCD34D;
    margin-bottom: 1.65rem;
    font-size: 1.56rem;
    font-weight: 700;
}

.guide-list {
    list-style: none;
    margin-left: 0;
}

.guide-list li {
    margin-bottom: 1.1rem;
    padding-left: 2.2rem;
    position: relative;
}

.guide-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-size: 1.33rem;
}

.play-container {
    max-width: 1210px;
    margin: 0 auto 36px;
    background: rgba(68, 29, 0, 0.65);
    padding: 27px;
    border-radius: 13px;
    border: 3px solid #F59E0B;
}

.play-frame {
    width: 100%;
    height: 765px;
    border: none;
    border-radius: 10px;
}

.play-alert {
    text-align: center;
    padding: 27px;
    background: rgba(139, 0, 0, 0.17);
    border: 2px solid #d97706;
    border-radius: 10px;
    max-width: 920px;
    margin: 0 auto;
}

.legal-page {
    padding: 73px 0;
}

.legal-page h1 {
    font-size: 2.95rem;
    color: #F59E0B;
    margin-bottom: 1.65rem;
    font-weight: 900;
}

.page-intro {
    font-size: 1.16rem;
    margin-bottom: 2.7rem;
}

.legal-text {
    background: rgba(68, 29, 0, 0.4);
    padding: 46px;
    border-radius: 13px;
    border: 2px solid rgba(245, 158, 11, 0.35);
}

.legal-text h2 {
    color: #F59E0B;
    font-size: 1.66rem;
    margin-top: 2.7rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: #FCD34D;
    font-size: 1.36rem;
    margin-top: 2.2rem;
    margin-bottom: 1.05rem;
    font-weight: 700;
}

.legal-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 1.25rem;
    margin-left: 2.7rem;
}

.legal-text li {
    margin-bottom: 0.72rem;
}

.summary-box {
    background: rgba(245, 158, 11, 0.15);
    padding: 32px;
    border-radius: 10px;
    margin-top: 2.7rem;
    border-left: 6px solid #F59E0B;
}

.warning-banner {
    background: rgba(217, 119, 6, 0.25);
    border: 3px solid #d97706;
    padding: 32px;
    border-radius: 10px;
    margin-bottom: 2.7rem;
}

.warning-banner h2 {
    margin-top: 0;
}

.final-message {
    background: rgba(245, 158, 11, 0.15);
    padding: 32px;
    border-radius: 10px;
    margin-top: 2.7rem;
    border: 3px solid #F59E0B;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .menu-btn {
        display: none;
    }
    
    .features-row {
        flex-direction: row;
    }
    
    .benefits-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notice-row {
        flex-direction: row;
    }
    
    .footer-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .intro-section h1 {
        font-size: 3.85rem;
    }
    
    .gameplay-frame {
        height: 765px;
    }
    
    .play-frame {
        height: 865px;
    }
}

@media (max-width: 767px) {
    .verify-buttons {
        flex-direction: column;
    }
    
    .verify-accept,
    .verify-decline {
        width: 100%;
    }
}
