* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0b1a;
    color: #f0f0ff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

:root {
    --neon-cyan: #0ef;
    --neon-pink: #f0f;
    --neon-purple: #b45bff;
    --neon-yellow: #ffdd44;
    --bg-darker: #0a0715;
    --bg-card: #141026;
    --text-dim: #c0b0ff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1530;
}
::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 10px;
}

.header {
    background: rgba(13, 11, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-pink);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0,238,255,0.5);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    font-weight: 600;
    transition: 0.3s;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--neon-cyan);
}

.main {
    flex: 1;
    padding: 60px 0;
    background: var(--bg-darker);
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--neon-yellow);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(255,221,68,0.3);
}

.content-card h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--neon-yellow);
    text-shadow: 0 0 15px var(--neon-yellow);
}

.content-card h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: var(--neon-cyan);
}

.content-card p, .content-card li {
    color: var(--text-dim);
    margin-bottom: 15px;
}

.content-card ul, .content-card ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-card li {
    margin-bottom: 8px;
}

.content-card strong {
    color: #fff;
}

.content-card a {
    color: var(--neon-pink);
    text-decoration: underline;
}

.content-card a:hover {
    color: var(--neon-cyan);
}

.footer {
    background: #0a0818;
    border-top: 2px solid var(--neon-pink);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.age-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,0,0,0.2);
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid #ff4444;
    color: #ff8888;
}

.age-badge i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(13,11,26,0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        backdrop-filter: blur(10px);
        border-bottom: 2px solid var(--neon-pink);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0b1a;
    color: #f0f0ff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

:root {
    --neon-cyan: #0ef;
    --neon-pink: #f0f;
    --neon-purple: #b45bff;
    --neon-yellow: #ffdd44;
    --bg-darker: #0a0715;
    --bg-card: #141026;
    --text-dim: #c0b0ff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1530;
}
::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 10px;
}

/* Header */
.header {
    background: rgba(13, 11, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-pink);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0,238,255,0.5);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    font-weight: 600;
    transition: 0.3s;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--neon-cyan);
}

/* Main Content */
.main {
    flex: 1;
    padding: 60px 0;
    background: var(--bg-darker);
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--neon-purple);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(180,91,255,0.3);
}

.content-card h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--neon-purple);
    text-shadow: 0 0 15px var(--neon-purple);
}

.content-card h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: var(--neon-cyan);
}

.content-card p, .content-card li {
    color: var(--text-dim);
    margin-bottom: 15px;
}

.content-card ul, .content-card ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-card li {
    margin-bottom: 8px;
}

.content-card strong {
    color: #fff;
}

.content-card a {
    color: var(--neon-pink);
    text-decoration: underline;
}

.content-card a:hover {
    color: var(--neon-cyan);
}

/* Footer */
.footer {
    background: #0a0818;
    border-top: 2px solid var(--neon-pink);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-links a {
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.age-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,0,0,0.2);
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid #ff4444;
    color: #ff8888;
}

.age-badge i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(13,11,26,0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        backdrop-filter: blur(10px);
        border-bottom: 2px solid var(--neon-pink);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0b1a;
    color: #f0f0ff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* NEON ARCADE THEME */
:root {
    --neon-cyan: #0ef;
    --neon-pink: #f0f;
    --neon-purple: #b45bff;
    --neon-yellow: #ffdd44;
    --bg-darker: #0a0715;
    --bg-card: #141026;
    --text-dim: #c0b0ff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1530;
}
::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Header */
.header {
    background: rgba(13, 11, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-pink);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0,238,255,0.5);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--neon-cyan);
}

/* Hero Banner */
.hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 11, 26, 0.7);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0,238,255,0.5);
}

.hero p {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0,238,255,0.5);
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255,0,255,0.3);
}

.hero-btn:hover {
    background: var(--neon-pink);
    color: #0d0b1a;
    box-shadow: 0 0 40px var(--neon-pink);
}

/* Games Section */
.games {
    padding: 80px 0;
    background: var(--bg-darker);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.section-title span {
    color: var(--neon-purple);
    text-shadow: 0 0 20px var(--neon-purple);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0,238,255,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 50px var(--neon-cyan);
}

.game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--neon-pink);
}

.game-info p {
    color: var(--text-dim);
    margin-bottom: 15px;
}

.play-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.play-btn:hover {
    background: var(--neon-purple);
    color: #0d0b1a;
    box-shadow: 0 0 30px var(--neon-purple);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #100d1f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--neon-pink);
    transition: 0.3s;
}

.feature-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px var(--neon-cyan);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--neon-cyan);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    color: var(--text-dim);
}

/* Contact Form */
.contact {
    padding: 80px 0;
    background: var(--bg-darker);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 30px rgba(180,91,255,0.3);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: var(--neon-purple);
    text-shadow: 0 0 15px var(--neon-purple);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--neon-purple);
    color: var(--neon-purple);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--neon-purple);
    color: #0d0b1a;
    box-shadow: 0 0 40px var(--neon-purple);
}

/* Footer */
.footer {
    background: #0a0818;
    border-top: 2px solid var(--neon-pink);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-links a {
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.age-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,0,0,0.2);
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid #ff4444;
    color: #ff8888;
}

.age-badge i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(13,11,26,0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        backdrop-filter: blur(10px);
        border-bottom: 2px solid var(--neon-pink);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}