/* Cysora Lab - Core Design System */
:root {
    --bg-dark: #02020a;
    --primary-cyan: #00f2ff;
    --plasma-purple: #8b5cf6;
    --deep-slate: #0f172a;
    --text-glow: rgba(0, 242, 255, 0.4);
    --glass-bg: rgba(2, 2, 10, 0.7);
    --glass-border: rgba(0, 242, 255, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;900&family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: default;
}

/* Background Layers */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #0a0a20 0%, #02020a 100%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    opacity: 0.3;
}

.flicker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 16, 16, 0.1);
    opacity: 0;
    z-index: 100;
    pointer-events: none;
    animation: flicker 0.15s infinite;
}

@keyframes flicker {
    0% { opacity: 0.1; }
    50% { opacity: 0.05; }
    100% { opacity: 0.12; }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
    animation: floatingOrbs 20s infinite alternate linear;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-cyan);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--plasma-purple);
    bottom: -150px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes floatingOrbs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.1); }
}

/* Glassmorphism Components */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8),
                0 0 15px rgba(0, 242, 255, 0.1);
    transition: var(--transition-smooth);
}

.glass-container:hover {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.9),
                0 0 25px rgba(0, 242, 255, 0.2);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.text-cyan { color: var(--primary-cyan); }
.text-purple { color: var(--plasma-purple); }

.cyber-btn {
    font-family: 'JetBrains Mono', monospace;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: var(--primary-cyan);
    transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.cyber-btn:hover {
    color: #000;
}

.cyber-btn:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) translateY(0);
}

.tech-detail {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}
