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

body {
    font-family: 'Chakra Petch', sans-serif;
    background: linear-gradient(135deg, #1a0000 0%, #3d0000 50%, #1a0000 100%);
    color: #fef3c7;
    line-height: 1.6;
    min-height: 100vh;
}

.gate-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.95) 0%, rgba(26, 0, 0, 0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

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

.gate-box {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #b91c1c 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 25px 60px rgba(251, 191, 36, 0.4);
    border: 4px solid #fbbf24;
}

.gate-emblem {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gate-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gate-message {
    font-size: 1.3rem;
    color: #fef3c7;
    margin-bottom: 1rem;
}

.gate-disclaimer {
    font-size: 1.1rem;
    color: #fde68a;
    font-style: italic;
    margin-bottom: 2rem;
}

.gate-controls {
    display: flex;
    gap: 1.5rem;
}

.gate-action {
    flex: 1;
    padding: 1.3rem 2rem;
    font-size: 1.3rem;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gate-confirm {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    color: white;
}

.gate-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.5);
}

.gate-reject {
    background: linear-gradient(135deg, #7c2d12 0%, #c2410c 100%);
    color: white;
}

.gate-reject:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(194, 65, 12, 0.5);
}

.primary-header {
    background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
    padding: 1.5rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #fbbf24;
}

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

.header-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-emblem {
    width: 60px;
    height: 60px;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.trigger-line {
    display: block;
    width: 35px;
    height: 4px;
    background: #fbbf24;
    border-radius: 4px;
    transition: 0.3s;
}

.primary-nav {
    display: flex;
    gap: 1rem;
}

.nav-choice {
    color: #fef3c7;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 1.8rem;
    border-radius: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-choice:hover,
.nav-choice.selected {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.main-area {
    min-height: 100vh;
}

.hero-zone {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.9) 0%, rgba(153, 27, 27, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 500"><rect fill="%23991b1b" width="1200" height="500"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 10rem 2rem;
    text-align: center;
    border-bottom: 5px solid #fbbf24;
}

.hero-heading {
    font-size: 6rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 5px;
}

.hero-caption {
    font-size: 2rem;
    color: #fef3c7;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-action {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a0000;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 35px rgba(251, 191, 36, 0.5);
}

.hero-action:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(251, 191, 36, 0.7);
}

.container-standard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.welcome-block {
    padding: 6rem 0;
    background: rgba(61, 0, 0, 0.5);
}

.block-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.block-text {
    font-size: 1.4rem;
    text-align: center;
    color: #fef3c7;
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.9;
}

.pillars-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.3) 0%, rgba(153, 27, 27, 0.3) 100%);
}

.pillars-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.pillar-card {
    background: rgba(26, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #991b1b;
    transition: all 0.3s;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.4);
    border-color: #fbbf24;
}

.pillar-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-size: 2.3rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pillar-text {
    font-size: 1.2rem;
    color: #fef3c7;
    line-height: 1.8;
}

.showcase-area {
    padding: 6rem 0;
    background: rgba(26, 0, 0, 0.6);
}

.game-container {
    margin-top: 3rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    border: 4px solid #991b1b;
}

.game-viewer {
    width: 100%;
    height: 700px;
    border-radius: 15px;
}

.declaration-zone {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.4) 0%, rgba(153, 27, 27, 0.4) 100%);
}

.declaration-box {
    background: rgba(26, 0, 0, 0.8);
    padding: 3.5rem;
    border-radius: 20px;
    border-left: 10px solid;
}

.declaration-box.urgent {
    border-left-color: #fbbf24;
}

.declaration-heading {
    font-size: 2.8rem;
    color: #fbbf24;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.declaration-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.declaration-point {
    font-size: 1.3rem;
    color: #fef3c7;
    line-height: 1.9;
    padding: 1.5rem;
    background: rgba(153, 27, 27, 0.3);
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.declaration-point strong {
    color: #fbbf24;
    display: block;
    margin-bottom: 0.7rem;
    font-size: 1.5rem;
}

.advantages-display {
    padding: 6rem 0;
    background: rgba(61, 0, 0, 0.6);
}

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

.advantage-box {
    background: rgba(26, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(153, 27, 27, 0.5);
    transition: all 0.3s;
}

.advantage-box:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    background: rgba(127, 29, 29, 0.4);
}

.advantage-symbol {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.advantage-box h4 {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.advantage-box p {
    font-size: 1.2rem;
    color: #fef3c7;
    line-height: 1.7;
}

.primary-footer {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 4px solid #fbbf24;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-heading {
    font-size: 2.8rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-info {
    font-size: 1.4rem;
    color: #fef3c7;
    margin-bottom: 2.5rem;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.footer-resource {
    color: #fde68a;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-resource:hover {
    color: #fbbf24;
}

.footer-notice {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .nav-trigger {
        display: flex;
    }
    
    .primary-nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: #7f1d1d;
        flex-direction: column;
        padding: 1.5rem 0;
        transform: translateY(-200%);
        transition: transform 0.3s;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    }
    
    .primary-nav.active {
        transform: translateY(0);
    }
    
    .nav-choice {
        padding: 1.3rem 2rem;
        border-radius: 0;
    }
    
    .hero-heading {
        font-size: 3.5rem;
    }
    
    .hero-caption {
        font-size: 1.5rem;
    }
    
    .block-title {
        font-size: 2.5rem;
    }
    
    .game-viewer {
        height: 500px;
    }
    
    .gate-controls {
        flex-direction: column;
    }
    
    .footer-resources {
        flex-direction: column;
        gap: 1.5rem;
    }
}