@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Roboto:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 30%, rgba(0, 255, 255, 0.05) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 255, 0.05) 30%, rgba(255, 0, 255, 0.05) 70%, transparent 70%);
    background-size: 50px 50px;
    animation: bgMove 20s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0% { background-position: 0 0, 25px 25px; }
    100% { background-position: 50px 50px, 75px 75px; }
}

/* Header Navigation */
header {
    background: rgba(10, 14, 39, 0.95);
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    text-decoration: none;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    font-size: 2.5rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s;
}

nav a:hover {
    color: #00ffff;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background: #00ffff;
    transition: 0.3s;
    box-shadow: 0 0 5px #00ffff;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(0,255,255,0.1)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.3;
}

.hero h1 {
    font-size: 4rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero .tagline {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    position: relative;
    z-index: 1;
}

.cyber-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.cyber-button:hover::before {
    left: 100%;
}

.cyber-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.9);
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    border: 1px solid #00ffff;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.info-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.info-card:hover::before {
    opacity: 1;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.info-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    color: #00ffff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ffff;
}

.info-card p {
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Content Blocks */
.content-block {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #ff00ff;
    padding: 2.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.content-block h2 {
    font-size: 2.8rem;
    color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff;
    margin-bottom: 1.5rem;
}

.content-block h3 {
    font-size: 2rem;
    color: #00ffff;
    margin: 2rem 0 1rem;
    text-shadow: 0 0 10px #00ffff;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.content-block ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.content-block li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Game Container */
.game-wrapper {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ffff;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4), inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.game-wrapper h2 {
    text-align: center;
    color: #00ffff;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px #00ffff;
}

.game-wrapper iframe {
    width: 100%;
    height: 650px;
    border: 1px solid #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.98);
    border-top: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #00ffff;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    color: #888;
    font-size: 0.95rem;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, #0a0e27, #1a1e3f);
    border: 3px solid #00ffff;
    padding: 3rem;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.8), inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.age-content h2 {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 1.5rem;
}

.age-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-content .emphasis {
    color: #ff00ff;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 1.5rem 0;
    text-shadow: 0 0 10px #ff00ff;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.age-btn.accept {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

.age-btn.accept:hover {
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.9);
    transform: scale(1.05);
}

.age-btn.decline {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.age-btn.decline:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.9);
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 2rem;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    nav ul.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .content-block h2 {
        font-size: 2.2rem;
    }

    .game-wrapper iframe {
        height: 450px;
    }

    .age-content {
        margin: 0 1rem;
        padding: 2rem;
    }

    .age-actions {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
