@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Bebas+Neue&display=swap');

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

:root {
    --orange: #FF6B35;
    --amber: #F7931E;
    --dark: #1A1A2E;
    --darker: #12121F;
    --card: #242438;
    --white: #FFFFFF;
    --light-gray: #B8B8C7;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker);
    color: var(--white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--amber);
}

/* Navigation */
.navbar {
    background: rgba(26,26,46,0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,107,53,0.15);
}

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

.brand-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    color: var(--orange);
    letter-spacing: 4px;
}

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

.nav-links a {
    color: var(--light-gray);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--white);
}

.mobile-trigger {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-trigger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    margin: 6px 0;
    transition: all 0.3s;
}

.slide-nav {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1rem;
    flex-direction: column;
}

.slide-nav.open {
    display: flex;
}

.slide-nav a {
    color: var(--white);
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,107,53,0.1);
}

/* Main */
main {
    padding-top: 65px;
}

/* Banner */
.hero-banner {
    min-height: calc(100vh - 65px);
    display: grid;
    place-items: center;
    padding: 5rem 2rem;
    background: var(--darker);
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255,107,53,0.1), transparent 60%);
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    background: linear-gradient(135deg, var(--orange), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.banner-content p {
    font-size: 1.15rem;
    color: var(--light-gray);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-fire {
    background: linear-gradient(135deg, var(--orange), var(--amber));
    color: var(--dark);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255,107,53,0.35);
}

.btn-fire:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.5);
    color: var(--dark);
}

.btn-ghost {
    background: transparent;
    color: var(--orange);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: 2px solid var(--orange);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-ghost:hover {
    background: var(--orange);
    color: var(--dark);
}

/* Feature Row */
.feature-row {
    display: flex;
    flex-wrap: wrap;
    background: var(--dark);
}

.feature-item {
    flex: 1;
    min-width: 300px;
    padding: 4rem 3rem;
    text-align: center;
    border-right: 1px solid rgba(255,107,53,0.1);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.8rem;
    color: var(--amber);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--light-gray);
}

/* Game Area */
.game-area {
    padding: 5rem 2rem;
    background: var(--darker);
}

.area-header {
    text-align: center;
    margin-bottom: 3rem;
}

.area-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.area-header p {
    color: var(--light-gray);
}

.game-frame {
    max-width: 1250px;
    margin: 0 auto;
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255,107,53,0.25);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

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

/* About */
.about-zone {
    padding: 5rem 2rem;
    background: var(--dark);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 2rem;
    text-align: center;
}

.about-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Footer */
.site-footer {
    background: var(--darker);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255,107,53,0.1);
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--orange);
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-menu a {
    color: var(--light-gray);
}

.footer-menu a:hover {
    color: var(--orange);
}

.help-links {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,107,53,0.1);
}

.help-links h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.help-links-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-links-row a {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-copy {
    margin-top: 2rem;
    color: var(--light-gray);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Age Check */
.age-check {
    position: fixed;
    inset: 0;
    background: rgba(18,18,31,0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 2rem;
}

.age-check.dismissed {
    display: none;
}

.age-dialog {
    background: var(--card);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 480px;
    border: 2px solid var(--orange);
    box-shadow: 0 0 50px rgba(255,107,53,0.2);
}

.age-dialog h2 {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.age-dialog p {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-yes {
    background: linear-gradient(135deg, var(--orange), var(--amber));
    color: var(--dark);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-yes:hover {
    transform: scale(1.05);
}

.age-no {
    background: transparent;
    color: var(--light-gray);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-no:hover {
    border-color: var(--white);
    color: var(--white);
}

/* Page Styles */
.page-hero {
    padding: 9rem 2rem 4rem;
    text-align: center;
    background: var(--dark);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--light-gray);
}

.page-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    color: var(--orange);
    margin: 2.5rem 0 1rem;
}

.page-content h3 {
    font-size: 1.4rem;
    color: var(--amber);
    margin: 2rem 0 0.8rem;
}

.page-content p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.page-content ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    color: var(--light-gray);
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
}

.page-content li::before {
    content: '▸';
    color: var(--orange);
    position: absolute;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-trigger {
        display: block;
    }
    
    .hero-banner {
        padding: 3rem 1.5rem;
    }
    
    .feature-row {
        flex-direction: column;
    }
    
    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,107,53,0.1);
    }
    
    .game-frame iframe {
        height: 500px;
    }
    
    .age-dialog {
        padding: 2rem;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .help-links-row {
        flex-direction: column;
        gap: 0.5rem;
    }
}
