@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000000;
    color: #00ff88;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.digital-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.digital-lines::before,
.digital-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    height: 2px;
    width: 100%;
    animation: scan 8s linear infinite;
}

.digital-lines::after {
    animation-delay: 4s;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.top-bar {
    background: linear-gradient(90deg, #000000, #0a0a0a, #000000);
    border-bottom: 2px solid #00ff88;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.nav-grid {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-symbol {
    font-size: 3rem;
    color: #00ff88;
    font-weight: 900;
    text-shadow: 0 0 20px #00ff88;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.site-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 15px #00ff88;
}

.site-tagline {
    font-size: 0.7rem;
    color: #00cc66;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -0.3rem;
}

.primary-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 0.3rem;
}

.primary-nav a {
    color: #00ff88;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border: 2px solid #00ff88;
    background: rgba(0, 255, 136, 0.05);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.primary-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    transition: left 0.5s;
}

.primary-nav a:hover::before {
    left: 100%;
}

.primary-nav a:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    color: #ffffff;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
}

.burger-menu span {
    width: 35px;
    height: 4px;
    background: #00ff88;
    border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 0 10px #00ff88;
}

.page-content {
    position: relative;
    z-index: 1;
}

.intro-panel {
    padding: 6rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 204, 102, 0.05));
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
}

.intro-panel h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 30px #00ff88;
    margin-bottom: 2rem;
}

.intro-panel p {
    font-size: 1.2rem;
    color: #00cc66;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
}

.info-matrix {
    max-width: 1800px;
    margin: 0 auto;
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.data-block {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.03), rgba(0, 0, 0, 0.5));
    border: 2px solid #00ff88;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.data-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, #00cc66, #00ff88);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.data-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.4);
}

.data-block:hover::before {
    opacity: 0.3;
}

.block-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px #00ff88);
}

.data-block h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.data-block p {
    color: #00cc66;
    line-height: 1.8;
    font-weight: 300;
}

.gaming-zone {
    background: rgba(0, 0, 0, 0.8);
    padding: 6rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 136, 0.3);
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
}

.gaming-zone h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 30px #00ff88;
}

.gaming-zone iframe {
    border: 3px solid #00ff88;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
    max-width: 100%;
}

.text-zone {
    max-width: 1600px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.info-block {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.02), rgba(0, 0, 0, 0.7));
    border-left: 4px solid #00ff88;
    padding: 4rem;
    margin: 3rem 0;
}

.info-block h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    color: #00ff88;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.info-block h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    color: #00cc66;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.info-block p {
    color: #00cc66;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.info-block ul {
    list-style-position: inside;
    color: #00cc66;
    line-height: 1.9;
    margin-left: 2rem;
    font-weight: 300;
}

.info-block li {
    margin-bottom: 1rem;
}

.bottom-bar {
    background: linear-gradient(90deg, #000000, #0a0a0a, #000000);
    padding: 4rem 3rem;
    border-top: 2px solid #00ff88;
    margin-top: 6rem;
}

.footer-grid {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}

.footer-grid h3 {
    font-family: 'Rajdhani', sans-serif;
    color: #00ff88;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.resource-links a {
    color: #00ff88;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border: 2px solid #00ff88;
    background: rgba(0, 255, 136, 0.05);
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.resource-links a:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    color: #ffffff;
}

.footer-grid p {
    color: #006644;
    margin-top: 2rem;
}

/* Age Check Modal */
.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 5000;
    justify-content: center;
    align-items: center;
}

.age-check.active {
    display: flex;
}

.check-panel {
    background: linear-gradient(135deg, #0a0a0a, #000000);
    padding: 5rem;
    border: 3px solid #00ff88;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.7);
}

.check-panel h2 {
    font-family: 'Rajdhani', sans-serif;
    color: #00ff88;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 30px #00ff88;
}

.check-panel p {
    color: #00cc66;
    margin-bottom: 3rem;
    line-height: 1.9;
    font-size: 1.2rem;
    font-weight: 300;
}

.check-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.check-btn {
    padding: 1.5rem 4rem;
    border: 3px solid #00ff88;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.check-btn.proceed {
    background: #00ff88;
    color: #000000;
}

.check-btn.proceed:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
}

.check-btn.exit {
    background: transparent;
    color: #00ff88;
}

.check-btn.exit:hover {
    background: rgba(0, 255, 136, 0.1);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-grid {
        grid-template-columns: 1fr auto;
    }
    
    .primary-nav ul {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s;
        border-top: 2px solid #00ff88;
    }
    
    .primary-nav ul.show {
        left: 0;
    }
    
    .intro-panel h1 {
        font-size: 3rem;
    }
    
    .info-matrix {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
    
    .info-block {
        padding: 2.5rem;
    }
}
