* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #1a1a2e;
    color: #eaeaea;
    line-height: 1.7;
    min-height: 100vh;
}

.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    align-items: center;
    justify-content: center;
}

.age-gate.visible {
    display: flex;
}

.gate-box {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #FF6B35;
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.3);
}

.gate-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gate-icon {
    width: 70px;
    height: 70px;
}

.gate-logo h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #FF6B35;
    letter-spacing: 3px;
}

.gate-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00CED1;
}

.gate-box p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.gate-note {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.gate-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.gate-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gate-confirm {
    background: linear-gradient(135deg, #FF6B35 0%, #f44336 100%);
    color: white;
}

.gate-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.gate-deny {
    background: #2a2a3e;
    color: #eaeaea;
}

.gate-deny:hover {
    background: #3a3a4e;
}

.top-nav {
    background: linear-gradient(to right, #0f3460 0%, #16213e 100%);
    border-bottom: 3px solid #FF6B35;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-svg {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #FF6B35;
    letter-spacing: 2px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-line {
    width: 30px;
    height: 3px;
    background: #FF6B35;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-burger.open .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-burger.open .burger-line:nth-child(2) {
    opacity: 0;
}

.nav-burger.open .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #00CED1;
}

.banner-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #16213e 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 5px solid #FF6B35;
}

.banner-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.8rem;
    color: #FF6B35;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.banner-tagline {
    font-size: 1.5rem;
    color: #00CED1;
    margin-bottom: 2.5rem;
}

.banner-tags {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 107, 53, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 2px solid #FF6B35;
    font-weight: 700;
    font-size: 1.05rem;
}

.intro-block, .highlights-section, .alert-section, .game-section, .info-section, .action-section {
    padding: 4rem 2rem;
}

.block-container {
    max-width: 1300px;
    margin: 0 auto;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #00CED1;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

.intro-lead {
    font-size: 1.35rem;
    text-align: center;
    color: #00CED1;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.intro-text {
    max-width: 950px;
    margin: 0 auto;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.h-card {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #00CED1;
    transition: all 0.3s ease;
}

.h-card:hover {
    transform: translateY(-10px);
    border-color: #FF6B35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.h-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.alert-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(0, 206, 209, 0.15) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 3px solid #FF6B35;
}

.alert-banner h3 {
    text-align: center;
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 2rem;
}

.alert-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.alert-point {
    background: rgba(22, 33, 62, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid #00CED1;
}

.alert-point strong {
    display: block;
    color: #00CED1;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.section-desc {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
}

.game-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #FF6B35;
    background: #000;
    margin-bottom: 2rem;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-tips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.tip-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #00CED1;
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-box strong {
    color: #00CED1;
    font-size: 1.1rem;
}

.info-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.info-side {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #00CED1;
}

.action-card {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(0, 206, 209, 0.2) 100%);
    border-radius: 15px;
    border: 3px solid #FF6B35;
}

.action-card h2 {
    margin-bottom: 1.5rem;
}

.action-card p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.action-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #f44336 100%);
    color: white;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.action-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.5);
}

.site-footer {
    background: linear-gradient(to bottom, #0f3460 0%, #0a1929 100%);
    padding: 3rem 2rem;
    border-top: 3px solid #FF6B35;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-block h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #00CED1;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #FF6B35;
}

.footer-copy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, #0f3460 0%, #16213e 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        border-top: 3px solid #FF6B35;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-tagline {
        font-size: 1.2rem;
    }

    .banner-tags {
        flex-direction: column;
        align-items: center;
    }

    .highlight-cards {
        grid-template-columns: 1fr;
    }

    .info-split {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .gate-box {
        padding: 2rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }
}
