/* Google Ads Landing Page v2 - "Insane" VFX */

:root {
    --bg-color: #020205;
    /* Even darker blueish black */
    --text-color: #ffffff;
    --primary-neon: #8b5cf6;
    /* Violet */
    --secondary-neon: #06b6d4;
    /* Cyan */
    --glass-bg: rgba(255, 255, 255, 0.05);
    /* Increased slightly */
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    /* Tech font for headers */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    margin: 0;
}

/* Global Contrast Fix */
.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.lead.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Legibility glow */
}

/* ==================== MAX CONTRAST & ANIMATION ==================== */

/* Ambient Plasma Blobs */
.ambient-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    /* Behind canvas (-1) if we wanted, but canvas is -1. So this needs to be -2 */
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatBlob 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-neon) 0%, transparent 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary-neon) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Hero Spotlight */
.hero-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Electric Border Animation */
.card {
    position: relative;
    overflow: hidden;
    /* Needed for electric border */
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--primary-neon), transparent 30%);
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.card:hover::before {
    opacity: 1;
}

.card::after {
    /* Inner Mask to hide the center of the conic gradient */
    content: '';
    position: absolute;
    inset: 1px;
    /* Border width */
    background: rgba(10, 10, 15, 0.9);
    /* Match card bg */
    border-radius: inherit;
    z-index: 0;
}

/* Ensure content sits above the pseudo elements */
.card>* {
    position: relative;
    z-index: 1;
}

@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}

/* ==================== CONVERSION V6 ADDITIONS ==================== */

/* Mission Logs (Case Studies) */
.mission-folder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--secondary-neon);
    padding: 30px;
    position: relative;
    transition: transform 0.3s;
}

.mission-folder:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.mission-stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.8rem;
    transform: rotate(-10deg);
}

/* Engagement Protocols (Pricing) */
.protocol-card {
    background: linear-gradient(180deg, rgba(20, 20, 30, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.protocol-card:hover {
    /* Handled by electric border generally, but extra lift */
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.protocol-featured {
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.protocol-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.protocol-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
}

.protocol-btn {
    width: 100%;
    margin-top: 20px;
}

/* Launch Sequence Modal */
.launch-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.launch-modal.active {
    display: flex;
    /* Flex to center */
    opacity: 1;
}

.modal-interface {
    background: #0a0a0f;
    border: 1px solid var(--primary-neon);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.launch-modal.active .modal-interface {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--secondary-neon);
}

.launch-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px;
    width: 100%;
    margin-bottom: 15px;
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

.launch-input:focus {
    outline: none;
    border-color: var(--primary-neon);
    background: rgba(255, 255, 255, 0.08);
}

/* ==================== INSANE MODE ADDITIONS ==================== */

/* Cinematic Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.07;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="1"/%3E%3C/svg%3E');
}

/* Infinite Tech Stack Marquee */
.tech-marquee-wrap {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.tech-item {
    display: inline-block;
    padding: 0 40px;
    font-family: var(--font-display);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    font-weight: bold;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Terminal Section */
.terminal-window {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.terminal-header {
    background: #1a1a1a;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #333;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.terminal-body {
    padding: 20px;
    color: #e5e5e5;
    min-height: 300px;
}

.cursor-blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.terminal-input-area input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    width: 100%;
    outline: none;
}

/* ==================== EXISTING STYLES BELOW ==================== */

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Updated Typography for Tech Feel */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    /* Neon Glow */
}

/* Hacker Text Effect Container */
.glitch-text {
    position: relative;
    display: inline-block;
}

/* Transparent Cards for Background Visibility */
.card {
    background: rgba(10, 10, 15, 0.4);
    /* More transparent */
    backdrop-filter: blur(8px);
    /* Reduced blur to see particles */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-neon);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

/* Ensure Header/Footer have transparent backgrounds if needed */
.navbar-wrapper {
    background: transparent !important;
    /* Force override */
}

.section-footer {
    background: transparent !important;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Additional utility overrides for the inserted components */
.navbar {
    backdrop-filter: blur(15px) !important;
    background: rgba(5, 5, 10, 0.7) !important;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-neon), var(--primary-neon));
    z-index: 9999;
}

/* 3D Button Upgrade */
.btn-main {
    background: transparent;
    border: 1px solid var(--primary-neon);
    box-shadow: 0 0 10px var(--primary-neon), inset 0 0 10px var(--primary-neon);
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-display);
    transition: all 0.3s;
}

.btn-main:hover {
    background: var(--primary-neon);
    box-shadow: 0 0 40px var(--primary-neon);
    color: #000;
}

/* ==================== VISUAL OVERHAUL V7 ==================== */

/* Hex Grid Background */
.hex-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Holographic Comparison Table */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0 15px;
    /* Spacing between rows */
}

.comparison-table th {
    font-family: var(--font-display);
    padding: 20px;
    font-size: 1.1rem;
    color: var(--secondary-neon);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-row {
    background: rgba(0, 0, 0, 0.6);
    /* DARK BACKGROUND */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row:hover {
    transform: scale(1.02);
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid var(--primary-neon);
    /* Neon border on hover */
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.comparison-row td {
    padding: 25px;
    vertical-align: middle;
    color: #fff;
}

.comparison-row td:first-child {
    border-left: 2px solid transparent;
    /* Prepare for hover */
    border-radius: 10px 0 0 10px;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--secondary-neon);
}

.comparison-row:hover td:first-child {
    border-left: 2px solid var(--primary-neon);
}

.comparison-row td:last-child {
    border-radius: 0 10px 10px 0;
}

.check-icon {
    color: #10b981;
    font-size: 1.4rem;
    text-shadow: 0 0 10px #10b981;
    /* Glow */
}

.cross-icon {
    color: #ef4444;
    font-size: 1.4rem;
    opacity: 0.5;
}

/* Ensure standard row colors are nuked */
.table>:not(caption)>*>* {
    background-color: transparent !important;
    color: inherit;
    box-shadow: none !important;
}

/* Timeline Process */
.timeline-wrap {
    position: relative;
    padding: 50px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0%;
    /* JS will animate this */
    background: var(--primary-neon);
    box-shadow: 0 0 10px var(--primary-neon);
    transform: translateX(-50%);
    transition: height 0.1s linear;
}

.timeline-item {
    display: flex;
    justify-content: center;
    padding-bottom: 60px;
    position: relative;
}

.timeline-content {
    width: 45%;
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    position: relative;
}

/* Alternate Sides */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #000;
    border: 2px solid var(--primary-neon);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: background 0.3s;
}

.timeline-item.active .timeline-dot {
    background: var(--primary-neon);
    box-shadow: 0 0 15px var(--primary-neon);
}

/* FAQ Accordion */
.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: #fff;
    font-family: var(--font-display);
}

.accordion-button:not(.collapsed) {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-neon);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Detailed Service Stats */
.stat-box {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-neon);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
    }

    .timeline-line,
    .timeline-progress {
        left: 20px;
        transform: none;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: 85%;
        margin-left: 50px !important;
        text-align: left !important;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .tech-item {
        font-size: 1rem;
        padding: 0 20px;
    }

    .terminal-window {
        margin: 0 10px;
    }
}

/* === ULTRA-STYLED HERO (v11) === */

/* 1. Cinematic HUD Overlay */
.hud-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 100;
    padding: 20px;
}

.hud-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 255, 238, 0.4);
    transition: all 0.5s ease;
}

.hud-tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.hud-tr {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.hud-bl {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.hud-br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.hud-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 255, 238, 0.02) 51%, transparent 51%);
    background-size: 100% 4px;
    animation: scanlineScroll 60s linear infinite;
    pointer-events: none;
}

@keyframes scanlineScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 100vh;
    }
}

.hud-status {
    position: absolute;
    top: 30px;
    left: 80px;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--primary-neon);
    letter-spacing: 2px;
    animation: blink 2s infinite;
}

.hud-coords {
    position: absolute;
    bottom: 30px;
    right: 80px;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* 2. Refractive Hero Typography */
.refractive-text {
    font-size: 5rem;
    /* Massive Scale */
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.2) 50%, #fff 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(186, 73, 255, 0.5);
    position: relative;
    z-index: 10;
}

/* Enhance responsiveness */
@media (max-width: 768px) {
    .refractive-text {
        font-size: 3rem;
    }

    .hud-overlay {
        display: none;
    }

    /* Simplify for mobile */
}

.text-glow {
    text-shadow: 0 0 10px rgba(0, 255, 238, 0.3);
}

.hero-content-layer {
    position: relative;
    z-index: 10;
    /* Ensure text is above debris if we use z-index tricks, though Three.js is canvas */
    backdrop-filter: blur(2px);
    /* Subtle blur behind text to pop it from chaos */
}

/* === v13: HYPER-FORM STYLES === */

.hero-form-card {
    background: rgba(10, 10, 15, 0.85) !important;
    border: none !important;
    position: relative;
    /* Sci-Fi Shape */
    clip-path: polygon(20px 0, 100% 0,
            100% calc(100% - 20px), calc(100% - 20px) 100%,
            0 100%, 0 20px);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Animated Electric Border */
.hero-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-neon), transparent, var(--secondary-neon), transparent);
    background-size: 400% 400%;
    z-index: -1;
    animation: borderFlow 4s linear infinite;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-form-card input,
.hero-form-card select {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    padding: 12px 15px;
}

.hero-form-card input:focus,
.hero-form-card select:focus {
    background: rgba(0, 255, 238, 0.05) !important;
    border-bottom: 2px solid var(--primary-neon) !important;
    box-shadow: 0 10px 20px -10px var(--primary-neon);
    padding-left: 25px !important;
    /* Slide text */
    outline: none;
}

/* === v13: CYBER-STATIC MOBILE BACKGROUND === */
.mobile-cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -5;
    background-color: #050510;
    overflow: hidden;
}

.cyber-globe-static {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(0, 255, 238, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(0, 255, 238, 0.1);
    opacity: 0.6;
}

.cyber-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 238, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 238, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 1000px;
    transform: perspective(500px) rotateX(60deg) scale(2);
    transform-origin: center top;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 500px;
    }
}

.cyber-glitch-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 238, 0.05) 3px,
            rgba(0, 255, 238, 0.05) 3px);
    opacity: 0.3;
    animation: glitchStatic 4s infinite alternate-reverse;
}

@keyframes glitchStatic {
    0% {
        opacity: 0.3;
        transform: translateX(0);
    }

    10% {
        opacity: 0.4;
        transform: translateX(-2px);
    }

    20% {
        opacity: 0.3;
        transform: translateX(2px);
    }

    100% {
        opacity: 0.3;
        transform: translateX(0);
    }
}