:root {
    /* Y3K / Cyberpunk Palette */
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.6);
    --neon-pink: #FF00FF;
    --neon-green: #ccff00;
    --neon-cyan: #00FFFF;
    --chrome: #E0E0E0;
    --silver-gradient: linear-gradient(135deg, #e0e0e0 0%, #999999 50%, #ffffff 100%);
    --holographic: linear-gradient(45deg, rgba(255,0,255,0.2), rgba(0,255,255,0.2));
    
    /* Fonts */
    --font-heading: 'Orbitron', 'Syncopate', sans-serif;
    --font-body: 'Rajdhani', 'Share Tech Mono', monospace;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&family=Share+Tech+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: crosshair; /* Futuristic cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--chrome);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        linear-gradient(0deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: var(--neon-pink);
    border-radius: 4px;
}

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

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

/* Glitch Effect Class */
.glitch {
    position: relative;
    color: var(--chrome);
}

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

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

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

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

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

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px var(--neon-cyan);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, transparent 30%, #000 90%);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.4;
    filter: hue-rotate(45deg) contrast(1.2);
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 3rem;
    font-family: var(--font-body);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cyber-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.cyber-btn:hover {
    background: var(--neon-pink);
    color: #000;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.cyber-btn.alt {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.cyber-btn.alt:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

/* Sections */
section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.section-title h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* Cards (Services) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.cyber-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--neon-cyan);
    transition: height 0.4s ease;
}

.cyber-card:hover::before {
    height: 100%;
}

.cyber-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.card-icon {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px var(--neon-pink);
}

.cyber-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cyber-card p {
    color: #aaa;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #000;
    padding: 5rem 0 2rem;
    border-top: 1px solid #333;
}

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

.footer-col h3 {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.footer-col p, .footer-col a {
    color: #888;
    margin-bottom: 0.8rem;
    display: block;
}

.footer-col a:hover {
    color: var(--neon-pink);
}

/* Contact Form */
.form-input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-body);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
    background: rgba(255,0,255,0.05);
}

/* Mobile Nav */
.hamburger {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        padding: 2rem;
        border-bottom: 1px solid var(--neon-pink);
    }
    .nav-links.active {
        display: flex;
    }
    .hero h1 {
        font-size: 3rem;
    }
}
