* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, #450a0a 0%, #7c2d12 50%, #450a0a 100%);
    color: #fef3c7;
    min-height: 100vh;
    line-height: 1.6;
}

.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background: linear-gradient(to right, #dc2626 0%, #ea580c 50%, #f59e0b 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-svg {
    width: 55px;
    height: 55px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fef3c7;
    letter-spacing: 3px;
}

.header-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: rgba(254, 243, 199, 0.95);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.is-active::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fef3c7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-area {
    flex: 1;
}

.hero-zone {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.4) 0%, rgba(234, 88, 12, 0.4) 100%);
    border-bottom: 4px solid #f59e0b;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(251, 191, 36, 0.4);
    margin-bottom: 2rem;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #fed7aa;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-label {
    font-weight: 700;
    color: #fef3c7;
    font-size: 1.1rem;
}

.welcome-zone,
.core-values-zone,
.game-zone,
.advantages-zone,
.currency-zone,
.responsibility-zone,
.instructions-zone,
.tech-specs-zone,
.important-reminders-zone,
.legal-zone {
    padding: 4rem 0;
}

.zone-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.zone-wrapper h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

.zone-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #fed7aa;
    margin-bottom: 3rem;
}

.zone-wrapper > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #fed7aa;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.value-box {
    background: rgba(220, 38, 38, 0.25);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.value-box.value-danger {
    border-color: #dc2626;
}

.value-box.value-success {
    border-color: #16a34a;
}

.value-box.value-warning {
    border-color: #f59e0b;
}

.value-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.value-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-box p {
    line-height: 1.7;
    color: #fef3c7;
}

.game-display {
    max-width: 1000px;
    margin: 0 auto 2rem;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
    border: 4px solid #f59e0b;
}

.game-display iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.game-notice {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.15);
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.game-notice p {
    color: #fed7aa;
    line-height: 1.7;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage {
    background: rgba(220, 38, 38, 0.2);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.adv-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(251, 191, 36, 0.3);
    margin-bottom: 1rem;
}

.advantage h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
}

.advantage p {
    color: #fed7aa;
    line-height: 1.7;
}

.currency-zone {
    background: rgba(245, 158, 11, 0.1);
}

.currency-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(220, 38, 38, 0.2);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.currency-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

.currency-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #fef3c7;
    margin-bottom: 1.5rem;
}

.responsibility-content {
    max-width: 900px;
    margin: 0 auto;
}

.responsibility-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

.responsibility-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #fed7aa;
    margin-bottom: 1.5rem;
}

.responsibility-items {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.responsibility-items li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #fef3c7;
    line-height: 1.7;
}

.responsibility-items li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
    font-size: 1.3rem;
}

.page-intro {
    padding: 4rem 0;
    background: rgba(220, 38, 38, 0.3);
    border-bottom: 4px solid #f59e0b;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.intro-content p {
    font-size: 1.2rem;
    color: #fed7aa;
}

.instructions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.inst-card {
    background: rgba(220, 38, 38, 0.2);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    text-align: center;
}

.inst-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.inst-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
}

.inst-card p {
    color: #fed7aa;
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tech-item {
    background: rgba(220, 38, 38, 0.2);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    text-align: center;
}

.tech-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tech-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tech-item p {
    color: #fed7aa;
    line-height: 1.6;
}

.reminders-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(245, 158, 11, 0.2);
    padding: 2.5rem;
    border-radius: 12px;
    border: 3px solid #f59e0b;
}

.reminders-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
}

.reminders-card ul {
    list-style: none;
    padding: 0;
}

.reminders-card li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #fef3c7;
    line-height: 1.7;
}

.reminders-card li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #f59e0b;
    font-size: 1.5rem;
}

.legal-text {
    background: rgba(220, 38, 38, 0.15);
    padding: 3rem;
    border-radius: 15px;
}

.legal-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #fbbf24;
    margin: 2.5rem 0 1rem 0;
    font-weight: 700;
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text p {
    line-height: 1.8;
    color: #fed7aa;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    color: #fed7aa;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.notice-box {
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.notice-box.critical {
    background: rgba(220, 38, 38, 0.25);
    border: 3px solid #dc2626;
}

.notice-box.confirm {
    background: rgba(245, 158, 11, 0.2);
    border: 3px solid #f59e0b;
}

.notice-box h3 {
    margin-top: 0 !important;
}

.site-footer {
    background: linear-gradient(to right, #dc2626 0%, #ea580c 50%, #f59e0b 100%);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #fef3c7;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(254, 243, 199, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    margin-bottom: 0.75rem;
}

.support-list a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.support-list a:hover {
    color: #fef3c7;
}

.age-gate-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-screen.hidden {
    display: none;
}

.gate-box {
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(245, 158, 11, 0.5);
    border: 4px solid #fbbf24;
}

.gate-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.gate-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #fef3c7;
    margin-bottom: 1rem;
    font-weight: 800;
}

.gate-box p {
    color: rgba(254, 243, 199, 0.95);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.gate-btn {
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gate-accept {
    background: #16a34a;
    color: white;
}

.gate-accept:hover {
    background: #15803d;
    transform: scale(1.05);
}

.gate-reject {
    background: #7f1d1d;
    color: white;
}

.gate-reject:hover {
    background: #450a0a;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 95px;
        left: -100%;
        width: 100%;
        background: linear-gradient(to right, #dc2626 0%, #ea580c 50%, #f59e0b 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    }
    
    .header-nav.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .zone-wrapper h3,
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .game-display iframe {
        height: 400px;
    }
    
    .gate-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .gate-buttons {
        flex-direction: column;
    }
}
