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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(to bottom right, #001F3F, #003D5C, #004E89);
    color: #ffffff;
    line-height: 1.6;
}

/* Verification Gate */
.verification-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

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

.gate-container {
    background: linear-gradient(135deg, #004E89, #003D5C);
    padding: 50px;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    border: 4px solid #FF6B35;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
}

.gate-graphic {
    font-size: 70px;
    margin-bottom: 20px;
}

.gate-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FF6B35;
    font-weight: 700;
}

.gate-container p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.gate-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.gate-btn {
    padding: 16px 40px;
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gate-btn.accept {
    background: #FF6B35;
    color: #ffffff;
}

.gate-btn.accept:hover {
    background: #E55A2B;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.gate-btn.decline {
    background: #666;
    color: #fff;
}

.gate-btn.decline:hover {
    background: #555;
}

/* Site Wrapper */
.site-wrapper {
    min-height: 100vh;
}

/* Navbar */
.main-navbar {
    background: rgba(0, 31, 63, 0.95);
    padding: 20px 0;
    border-bottom: 3px solid #FF6B35;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text {
    font-size: 32px;
    font-weight: 700;
    color: #FF6B35;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #FF6B35;
}

.nav-link.active {
    background: rgba(255, 107, 53, 0.3);
    color: #FF6B35;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-menu span {
    width: 30px;
    height: 4px;
    background: #FF6B35;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.mobile-nav {
    display: none;
    background: rgba(0, 31, 63, 0.98);
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 9998;
    border-bottom: 3px solid #FF6B35;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 20px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(255, 107, 53, 0.3);
    color: #FF6B35;
}

/* Content Area */
.content-area {
    padding: 40px 20px;
}

/* Hero Block */
.hero-block {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(0, 78, 137, 0.4));
    border-radius: 25px;
    padding: 100px 40px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-inner h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FF6B35;
    text-shadow: 0 0 25px rgba(255, 107, 53, 0.5);
}

.tagline {
    font-size: 26px;
    margin-bottom: 40px;
    color: #ffffff;
}

.primary-button {
    display: inline-block;
    padding: 20px 50px;
    background: #FF6B35;
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.primary-button:hover {
    background: #E55A2B;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Cards Container */
.cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Card Styles */
.intro-card, .notices-card, .game-card, .features-card, .values-card, .guidelines-card,
.play-header-card, .instructions-card, .fullscreen-game-card, .play-notice-card {
    background: rgba(0, 78, 137, 0.3);
    border-radius: 20px;
    padding: 40px;
    border: 3px solid rgba(255, 107, 53, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.intro-card h2, .notices-card h2, .game-card h2, .features-card h2, .values-card h2, .guidelines-card h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #FF6B35;
    font-weight: 700;
}

/* Intro Card */
.intro-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-badges {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.badge {
    background: rgba(255, 107, 53, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #FF6B35;
}

.badge-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.badge-label {
    font-size: 20px;
    font-weight: 700;
    color: #FF6B35;
}

/* Notices Card */
.notice-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.notice-block {
    padding: 35px;
    border-radius: 15px;
    border: 3px solid;
}

.notice-block.danger {
    background: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
}

.notice-block.primary {
    background: rgba(0, 123, 255, 0.2);
    border-color: #007bff;
}

.notice-block.warning {
    background: rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
}

.block-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 20px;
}

.notice-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FF6B35;
    font-weight: 700;
}

.notice-block p {
    font-size: 16px;
    line-height: 1.8;
}

/* Game Card */
.game-intro {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.game-viewport {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #FF6B35;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
    margin-bottom: 25px;
}

.game-viewport iframe {
    width: 100%;
    height: 680px;
    display: block;
}

.game-tags {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tag {
    font-size: 18px;
    font-weight: 600;
    color: #FF6B35;
}

/* Features Card */
.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.feature-graphic {
    font-size: 52px;
    margin-bottom: 18px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FF6B35;
    font-weight: 700;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.7;
}

/* Values Card */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.value-box {
    background: rgba(255, 107, 53, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.value-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FF6B35;
    font-weight: 700;
}

.value-box p {
    font-size: 15px;
    line-height: 1.8;
}

/* Guidelines Card */
.guidelines-intro {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}

.guidelines-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guideline {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.guideline-number {
    font-size: 48px;
    font-weight: 700;
    color: #FF6B35;
    min-width: 80px;
    text-align: center;
}

.guideline-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #FF6B35;
    font-weight: 700;
}

.guideline-content p {
    font-size: 15px;
    line-height: 1.7;
}

/* Play Page */
.play-header-card h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #FF6B35;
    font-weight: 700;
}

.play-desc {
    font-size: 19px;
    color: #e0e0e0;
}

.instructions-card h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FF6B35;
    font-weight: 700;
}

.instruction-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.instruction-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.item-icon {
    font-size: 40px;
}

.item-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FF6B35;
    font-weight: 700;
}

.item-text p {
    font-size: 14px;
    line-height: 1.7;
}

.tech-note {
    background: rgba(255, 193, 7, 0.15);
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
}

.game-embed-full {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #FF6B35;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

.game-embed-full iframe {
    width: 100%;
    height: 780px;
    display: block;
}

.play-notice-card {
    background: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
}

.play-notice-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FF6B35;
    font-weight: 700;
}

.play-notice-card p {
    font-size: 17px;
    line-height: 1.8;
}

/* Legal Pages */
.legal-area {
    padding: 60px 20px;
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-wrapper h1 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 15px;
    color: #FF6B35;
    font-weight: 700;
}

.legal-date {
    text-align: center;
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 45px;
}

.legal-section {
    background: rgba(0, 78, 137, 0.3);
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 30px;
    border: 3px solid rgba(255, 107, 53, 0.5);
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FF6B35;
    font-weight: 700;
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.warning-box {
    background: rgba(220, 53, 69, 0.25);
    padding: 40px;
    border-radius: 18px;
    border: 4px solid #dc3545;
    margin-bottom: 45px;
    text-align: center;
}

.warning-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #FF6B35;
    font-weight: 700;
}

.warning-box p {
    font-size: 18px;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: rgba(0, 31, 63, 0.9);
    padding: 50px 0 25px;
    margin-top: 80px;
    border-top: 4px solid #FF6B35;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FF6B35;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #e0e0e0;
}

.footer-col a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 107, 53, 0.4);
}

.footer-bottom p {
    font-size: 15px;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-inner h1 {
        font-size: 38px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .intro-columns {
        grid-template-columns: 1fr;
    }
    
    .game-viewport iframe,
    .game-embed-full iframe {
        height: 500px;
    }
    
    .guideline {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gate-container {
        padding: 30px 20px;
    }
    
    .gate-actions {
        flex-direction: column;
    }
    
    .hero-inner h1 {
        font-size: 30px;
    }
    
    .game-viewport iframe,
    .game-embed-full iframe {
        height: 400px;
    }
    
    .game-tags {
        flex-direction: column;
        gap: 15px;
    }
}
