:root {
    --color-bg: #020612;
    --color-card: #081528;
    --color-neon-blue: #00E5FF;
    --color-neon-purple: #B026FF;
    --color-neon-green: #00FF66;
    --color-neon-yellow: #FFD500;
    --color-neon-red: #FF0D42;
    --color-text-main: #FFFFFF;
    --color-text-muted: #8692A6;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Grid Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        linear-gradient(rgba(11, 12, 16, 0.95), rgba(11, 12, 16, 0.95)),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
}

a {
    color: var(--color-neon-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-neon-red);
    text-shadow: 0 0 8px var(--color-neon-red);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: transparent;
    backdrop-filter: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-main);
    text-shadow: 0 0 10px var(--color-neon-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--color-neon-blue);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

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

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.glitch-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-target {
    margin-bottom: 20px;
    opacity: 0.8;
}

.glitch-text {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 0 0 20px var(--color-neon-red);
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--color-neon-blue);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--color-neon-green);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 80px, 0); }
    20% { clip: rect(40px, 9999px, 10px, 0); }
    40% { clip: rect(90px, 9999px, 50px, 0); }
    60% { clip: rect(30px, 9999px, 90px, 0); }
    80% { clip: rect(80px, 9999px, 20px, 0); }
    100% { clip: rect(50px, 9999px, 60px, 0); }
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Buttons */
.btn-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: transparent;
    position: relative;
    color: var(--color-text-main);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--color-neon-blue);
    transform: skewX(-15deg);
    z-index: -1;
    transition: all 0.3s;
}

.btn:hover::before {
    background: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 15px var(--color-neon-blue);
}

.btn-primary {
    color: var(--color-neon-blue);
}

.btn-secondary::before {
    border-color: var(--color-neon-purple);
    background: rgba(176, 38, 255, 0.1);
}

.btn-secondary {
    color: var(--color-neon-purple);
}

.btn-secondary:hover::before {
    background: rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 15px var(--color-neon-purple);
}

/* Content Sections */
.section-container {
    padding: 80px 2%;
    max-width: 1800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-neon-blue);
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

.section-title.center {
    display: table;
    margin: 0 auto 40px auto;
}

.modes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: var(--color-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    transition: all 0.3s ease;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.card h3 {
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.card p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Card Hover Effects */
.card-ghost:hover {
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}
.card-ghost:hover h3, .card-ghost:hover .card-icon {
    color: var(--color-neon-blue);
}

.card-breach:hover {
    border-color: rgba(176, 38, 255, 0.8);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
}
.card-breach:hover h3, .card-breach:hover .card-icon {
    color: var(--color-neon-purple);
}

.card-defrag:hover {
    border-color: rgba(0, 255, 102, 0.8);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.2);
}
.card-defrag:hover h3, .card-defrag:hover .card-icon {
    color: var(--color-neon-green);
}

.card-survival:hover {
    border-color: rgba(255, 213, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 213, 0, 0.2);
}
.card-survival:hover h3, .card-survival:hover .card-icon {
    color: var(--color-neon-yellow);
}

.card-override:hover {
    border-color: rgba(255, 13, 66, 0.8);
    box-shadow: 0 0 20px rgba(255, 13, 66, 0.2);
}
.card-override:hover h3, .card-override:hover .card-icon {
    color: var(--color-neon-red);
}

.nav-logo {
    height: 30px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 60px;
    width: auto;
}

/* Footer */
footer {
    background: transparent;
    padding: 15px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .glitch-text {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        gap: 15px;
    }
    .footer-links {
        width: 100%;
        justify-content: center;
    }
}

/* Lang Switch */
.lang-switch {
    display: inline-flex;
    gap: 8px;
    margin-left: 20px;
}
.lang-switch a {
    color: var(--color-text-muted);
}
.lang-switch a.active-lang {
    color: var(--color-neon-blue);
    text-shadow: 0 0 5px var(--color-neon-blue);
    font-weight: bold;
}

/* Support Form */
.support-content {
    margin: 0 auto;
    max-width: 600px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-family: var(--font-heading);
    color: var(--color-neon-blue);
    font-size: 14px;
    letter-spacing: 1px;
    text-align: left;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(11, 12, 16, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 12px 15px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 16px;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-neon-blue);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.form-group select {
    appearance: none;
    cursor: pointer;
}
