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

:root {
    --cyber-teal: #00BFA6;
    --electric-cyan: #00E5FF;
    --steel-dark: #0D1B2A;
    --deep-navy: #1B263B;
    --slate-blue: #415A77;
    --pure-white: #FFFFFF;
    --soft-gray: #778DA9;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--steel-dark);
    color: var(--pure-white);
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.top-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 191, 166, 0.2);
}

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

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-hex {
    width: 46px;
    height: 46px;
    background: var(--cyber-teal);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: grid;
    place-items: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--steel-dark);
}

.logo-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-bar {
    display: flex;
    gap: 2rem;
}

.nav-bar a {
    color: var(--soft-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-bar a:hover {
    color: var(--cyber-teal);
}

.burger-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.burger-toggle span {
    width: 28px;
    height: 3px;
    background: var(--cyber-teal);
    transition: 0.3s;
}

.burger-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.burger-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.slide-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--deep-navy);
    padding: 6rem 2rem;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.slide-menu.open {
    transform: translateX(0);
}

.slide-menu a {
    display: block;
    color: var(--pure-white);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 191, 166, 0.2);
}

.hero-panel {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--steel-dark) 0%, var(--deep-navy) 100%);
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.hero-text h1 span {
    color: var(--cyber-teal);
}

.hero-text > p {
    font-size: 1.1rem;
    color: var(--soft-gray);
    margin-bottom: 2rem;
    max-width: 480px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-tech {
    padding: 1rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.cta-tech-fill {
    background: var(--cyber-teal);
    color: var(--steel-dark);
}

.cta-tech-fill:hover {
    background: var(--electric-cyan);
    transform: translateY(-3px);
}

.cta-tech-line {
    border: 2px solid var(--cyber-teal);
    color: var(--cyber-teal);
    background: transparent;
}

.cta-tech-line:hover {
    background: var(--cyber-teal);
    color: var(--steel-dark);
}

.quick-info {
    display: flex;
    gap: 2rem;
}

.info-bit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--soft-gray);
}

.info-icon {
    font-size: 1.3rem;
}

.game-panel {
    background: var(--deep-navy);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 191, 166, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

.main-section {
    padding: 5rem 2rem;
}

.main-section.alt {
    background: var(--deep-navy);
}

.section-box {
    max-width: 1200px;
    margin: 0 auto;
}

.section-top {
    text-align: center;
    margin-bottom: 3rem;
}

.section-top h2 {
    font-size: 2.5rem;
    color: var(--cyber-teal);
    margin-bottom: 0.5rem;
}

.section-top p {
    color: var(--soft-gray);
    max-width: 500px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tech-card {
    background: rgba(27, 38, 59, 0.8);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 191, 166, 0.15);
    transition: 0.3s;
}

.tech-card:hover {
    border-color: var(--cyber-teal);
    transform: translateY(-5px);
}

.tech-emoji {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.tech-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--soft-gray);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.notice-tile {
    background: rgba(13, 27, 42, 0.6);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--cyber-teal);
}

.notice-tile h3 {
    font-size: 1.2rem;
    color: var(--cyber-teal);
    margin-bottom: 0.75rem;
}

.notice-tile p {
    color: var(--soft-gray);
    font-size: 0.95rem;
}

.footer-bar {
    background: var(--deep-navy);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(0, 191, 166, 0.2);
}

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

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

.footer-menu a {
    color: var(--soft-gray);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.resource-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 191, 166, 0.1);
    border-bottom: 1px solid rgba(0, 191, 166, 0.1);
    margin-bottom: 1.5rem;
}

.resource-row a {
    color: var(--cyber-teal);
    text-decoration: none;
    font-size: 0.85rem;
}

.resource-row a:hover {
    text-decoration: underline;
}

.footer-copy {
    color: var(--soft-gray);
    font-size: 0.85rem;
}

/* Age Verify */
.age-verify {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.98);
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.age-verify.off {
    display: none;
}

.verify-card {
    background: var(--deep-navy);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    max-width: 450px;
    border: 1px solid var(--cyber-teal);
}

.verify-card h2 {
    font-size: 1.8rem;
    color: var(--cyber-teal);
    margin-bottom: 1rem;
}

.verify-card p {
    color: var(--soft-gray);
    margin-bottom: 2rem;
}

.verify-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.verify-yes {
    background: var(--cyber-teal);
    color: var(--steel-dark);
}

.verify-no {
    background: var(--slate-blue);
    color: var(--pure-white);
}

.verify-btn:hover {
    transform: scale(1.05);
}

.blocked-info {
    display: none;
    color: #ff6b6b;
}

/* Inner Pages */
.page-top {
    padding: 10rem 2rem 4rem;
    background: var(--deep-navy);
    text-align: center;
}

.page-top h1 {
    font-size: 2.8rem;
    color: var(--cyber-teal);
    margin-bottom: 0.75rem;
}

.page-top p {
    color: var(--soft-gray);
    max-width: 500px;
    margin: 0 auto;
}

.page-body {
    padding: 4rem 2rem;
}

.body-text {
    max-width: 850px;
    margin: 0 auto;
}

.body-text h2 {
    font-size: 1.6rem;
    color: var(--cyber-teal);
    margin: 2rem 0 1rem;
}

.body-text h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
}

.body-text p {
    color: var(--soft-gray);
    margin-bottom: 1rem;
}

.body-text ul {
    color: var(--soft-gray);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.body-text li {
    margin-bottom: 0.5rem;
}

.play-zone {
    max-width: 1000px;
    margin: 0 auto;
}

.play-box {
    background: var(--deep-navy);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 191, 166, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.play-box iframe {
    width: 100%;
    height: 580px;
    border: none;
    display: block;
}

.play-tips {
    padding: 1.5rem 2rem;
    background: rgba(0, 191, 166, 0.1);
}

.play-tips h3 {
    font-size: 1rem;
    color: var(--cyber-teal);
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.play-tips p {
    font-size: 0.95rem;
    color: var(--soft-gray);
}

@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text > p {
        margin: 0 auto 2rem;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .quick-info {
        justify-content: center;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-bar {
        display: none;
    }
    
    .burger-toggle {
        display: flex;
    }
    
    .slide-menu {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .game-panel iframe {
        height: 380px;
    }
    
    .quick-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-top h1 {
        font-size: 2.2rem;
    }
    
    .play-box iframe {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .header-box {
        padding: 1rem;
    }
    
    .logo-title {
        font-size: 1.3rem;
    }
    
    .hero-panel {
        padding: 7rem 1rem 3rem;
    }
    
    .main-section {
        padding: 3rem 1rem;
    }
    
    .verify-card {
        padding: 2rem 1.5rem;
    }
    
    .verify-btns {
        flex-direction: column;
    }
}
