:root {
    /* "Void Glass" Palette */
    --bg-void: #05000a;
    --bg-glass: rgba(20, 10, 30, 0.6);
    --neon-purple: #ff6d00;
    --neon-blue: #00eaff;
    --neon-green: #00ffcc;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;

    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    background-color: var(--bg-void);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    /* Animated Cyber Grid Background */
    background-image:
        linear-gradient(rgba(217, 0, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 234, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* UTILS */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-magenta {
    color: var(--neon-purple);
    text-shadow: 0 0 15px rgba(217, 0, 255, 0.5);
}

.text-cyan {
    color: var(--neon-blue);
}

.text-yellow {
    color: #ffcc00;
}

.text-green {
    color: var(--neon-green);
}

.text-center {
    text-align: center;
}

.glow {
    animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px var(--neon-green);
    }

    to {
        text-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green);
    }
}

/* --- HEADER (Floating Glass) --- */
.neon-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 0, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(217, 0, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- HERO SECTION --- */
.hero-electric {
    padding: 80px 0;
    text-align: center;
}

.hero-box h1 {
    font-family: var(--font-head);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Warning Box (Tech Style) */
.warning-box {
    background: rgba(255, 204, 0, 0.05);
    border: 1px solid var(--neon-purple);
    border-left: 5px solid var(--neon-purple);
    padding: 15px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.warning-text {
    font-size: 0.9rem;
    color: #ddd;
}

/* Buttons (Angled Cyber Shape) */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cyan,
.btn-outline {
    padding: 15px 30px;
    font-family: var(--font-head);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: 0.3s;
    border: none;
}

.btn-cyan {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}

.btn-cyan:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 234, 255, 0.8);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    background: rgba(217, 0, 255, 0.1);
}

/* --- GAME ZONE (Showcase Card) --- */
.game-section {
    padding: 60px 0;
}

.section-title {
    font-family: var(--font-head);
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 4px;
}

.game-showcase-card {
    background: linear-gradient(145deg, rgba(20, 10, 30, 0.9), rgba(5, 0, 10, 0.9));
    border: 1px solid rgba(217, 0, 255, 0.3);
    padding: 60px 40px;
    text-align: center;
    border-radius: 20px;
    /* Smooth corners */
    box-shadow: 0 0 50px rgba(217, 0, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Neon Glow Effect behind card */
.game-showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 0, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px var(--neon-purple);
}

.game-showcase-card h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.game-showcase-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.btn-magenta-glow {
    background: linear-gradient(90deg, var(--neon-purple), #9900cc);
    color: #fff;
    font-family: var(--font-head);
    font-weight: bold;
    padding: 18px 50px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    /* Pill Shape */
    box-shadow: 0 0 20px rgba(217, 0, 255, 0.5);
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.btn-magenta-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(217, 0, 255, 0.8);
}

/* --- FEATURES GRID --- */
.features-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    text-align: left;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-blue);
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-family: var(--font-head);
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    font-size: 0.9rem;
    color: #888;
}

/* --- INFO & SUPPORT --- */
.info-section {
    padding: 40px 0;
}

.info-box {
    border-left: 3px solid var(--neon-green);
    background: linear-gradient(90deg, rgba(0, 255, 157, 0.05), transparent);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 0 10px 10px 0;
}

.info-box h3 {
    font-family: var(--font-head);
    color: var(--neon-green);
    margin-bottom: 10px;
}

.support-section {
    text-align: center;
    padding: 60px 0;
}

.support-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.support-card {
    background: #0a0510;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    width: 200px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.support-card:hover {
    border-color: var(--neon-purple);
    transform: translateY(-5px);
}

.support-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.8;
}

.support-card h4 {
    font-size: 0.9rem;
    font-family: var(--font-head);
}

/* --- FOOTER --- */
.neon-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    background: #020005;
    font-size: 0.85rem;
    color: #666;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.f-col h4 {
    color: var(--text-main);
    font-family: var(--font-head);
    margin-bottom: 20px;
}

.f-col a {
    display: block;
    margin-bottom: 10px;
    color: #888;
}

.f-col a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-box h1 {
        font-size: 2rem;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- LEGAL PAGES SPECIFIC STYLES --- */
.legal-content {
    padding: 80px 0;
    line-height: 1.8;
}

.legal-content h1 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
    text-transform: uppercase;
}

.legal-content h3 {
    font-family: var(--font-head);
    color: var(--neon-purple);
    margin: 40px 0 15px;
    letter-spacing: 1px;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content ul li {
    color: var(--text-muted);
    margin-bottom: 10px;
    position: relative;
}

.legal-content ul li::before {
    content: '>';
    color: var(--neon-green);
    position: absolute;
    left: -20px;
    font-family: var(--font-head);
}

.pink-border {
    border-left: 3px solid var(--neon-purple);
    background: linear-gradient(90deg, rgba(217, 0, 255, 0.05), transparent);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 10px 10px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.support-item {
    background: var(--bg-glass);
    border: 1px solid rgba(0, 234, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.support-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.2);
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    margin: 0 10px;
    font-weight: bold;
    font-family: var(--font-head);
    font-size: 0.75rem;
}