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

:root {
    --neon-blue: #00D4FF;
    --electric-purple: #8B5CF6;
    --dark-bg: #0D0D1A;
    --card-bg: #141428;
    --text-light: #E8E8F0;
    --text-muted: #9898B0;
    --accent-pink: #FF3CAC;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.75;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
}

.top-bar {
    background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
    padding: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 26, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--dark-bg);
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-blue), var(--text-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    gap: 3rem;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

.main-nav a:hover {
    color: var(--neon-blue);
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.main-nav a:hover::before {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid var(--neon-blue);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neon-blue);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    padding: 100px 2rem 2rem;
    z-index: 998;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

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

.mobile-menu a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    font-family: 'Orbitron', sans-serif;
}

.hero-banner {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        var(--dark-bg);
}

.hero-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-neon {
    padding: 1rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-neon-primary {
    background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.btn-neon-primary:hover {
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
}

.btn-neon-outline {
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    background: transparent;
}

.btn-neon-outline:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
}

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-icon {
    font-size: 1.5rem;
}

.game-showcase {
    margin-top: 3rem;
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.section-block {
    padding: 6rem 2rem;
}

.section-block.alt-bg {
    background: var(--card-bg);
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--text-light), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.feature-card {
    background: rgba(20, 20, 40, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s;
}

.feature-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.notice-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05), transparent);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

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

.notice-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.notice-card p {
    color: var(--text-muted);
}

.site-footer {
    background: var(--card-bg);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.responsible-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.responsible-links a {
    color: var(--electric-purple);
    text-decoration: none;
    font-size: 0.85rem;
}

.responsible-links a:hover {
    text-decoration: underline;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 26, 0.98);
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 2rem;
}

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

.age-gate-box {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 480px;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
}

.age-gate-box h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.age-gate-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.age-btn-confirm {
    background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
    color: var(--dark-bg);
}

.age-btn-deny {
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
}

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

.age-denied-msg {
    display: none;
    color: var(--accent-pink);
}

/* Page Specific */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
        var(--dark-bg);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.text-content {
    padding: 4rem 2rem;
}

.text-container {
    max-width: 900px;
    margin: 0 auto;
}

.text-container h2 {
    font-size: 1.6rem;
    color: var(--neon-blue);
    margin: 2.5rem 0 1rem;
}

.text-container h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.text-container p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.text-container ul {
    color: var(--text-muted);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.game-frame {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

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

.game-note {
    padding: 1.5rem 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.game-note h3 {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.game-note p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .game-showcase iframe {
        height: 380px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .game-frame iframe {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .section-block {
        padding: 4rem 1rem;
    }
    
    .age-gate-box {
        padding: 2rem 1.5rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
