/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #ff3333;
    --secondary-red: #cc2200;
    --accent-orange: #ff8800;
    --cyber-blue: #00f3ff;
    --neon-purple: #b942ff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-dim: #888888;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 51, 51, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 51, 51, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-red);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-orange);
    bottom: 20%;
    right: 10%;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary-red);
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(100px, -100px); }
    66% { transform: translate(-100px, 100px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 51, 51, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
}

.logo-icon {
    color: var(--primary-red);
    font-size: 30px;
}

.logo-text .omega {
    color: var(--accent-orange);
    margin-left: 5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.btn-download {
    background: var(--primary-red);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* User Profile Avatar */
.user-profile {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: white;
    border: 2px solid rgba(255, 51, 51, 0.5);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
    transition: all 0.3s ease;
    animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 51, 51, 0.6), 0 0 40px rgba(255, 136, 0, 0.4);
    }
}

.user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.6);
}

.user-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(20, 20, 30, 0.98);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 15px;
    padding: 15px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.user-profile:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info {
    padding: 10px;
    margin-bottom: 10px;
}

.user-name {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.user-email {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-family: 'Rajdhani', sans-serif;
}

.dropdown-item:hover {
    background: rgba(255, 51, 51, 0.1);
    color: var(--primary-red);
}

.dropdown-item span {
    font-size: 18px;
}

.logout-btn {
    color: #ff6666 !important;
}

.logout-btn:hover {
    background: rgba(255, 51, 51, 0.2) !important;
    color: #ff3333 !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 40px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.title-line {
    display: block;
}

.omega-text {
    color: var(--accent-orange);
    font-size: 60px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

.btn-secondary {
    background: transparent;
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui-mockup {
    position: relative;
    width: 500px;
    height: 400px;
}

.mockup-frame {
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.mockup-corners {
    position: absolute;
    inset: 0;
}

.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--accent-orange);
}

.corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.mockup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 30px;
}

.hex-indicator {
    width: 80px;
    height: 80px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hud-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--primary-red);
    letter-spacing: 4px;
}

.progress-segments {
    display: flex;
    gap: 5px;
}

.progress-segments span {
    width: 40px;
    height: 8px;
    background: var(--primary-red);
    animation: segmentPulse 1.5s ease-in-out infinite;
}

.progress-segments span:nth-child(1) { animation-delay: 0s; }
.progress-segments span:nth-child(2) { animation-delay: 0.1s; }
.progress-segments span:nth-child(3) { animation-delay: 0.2s; }
.progress-segments span:nth-child(4) { animation-delay: 0.3s; }
.progress-segments span:nth-child(5) { animation-delay: 0.4s; }
.progress-segments span:nth-child(6) { animation-delay: 0.5s; }
.progress-segments span:nth-child(7) { animation-delay: 0.6s; }
.progress-segments span:nth-child(8) { animation-delay: 0.7s; }
.progress-segments span:nth-child(9) { animation-delay: 0.8s; }
.progress-segments span:nth-child(10) { animation-delay: 0.9s; }

@keyframes segmentPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Sections */
section {
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-dim);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 51, 51, 0.05);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 10px;
    padding: 40px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.8;
}

/* Demo Section */
.demo-section {
    background: rgba(10, 10, 10, 0.5);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(255, 51, 51, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 51, 51, 0.05);
    border: 2px solid rgba(255, 51, 51, 0.2);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.pricing-card.featured {
    border-color: var(--primary-red);
    background: rgba(255, 51, 51, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    margin-top: 10px;
}

.amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
}

.price-description {
    color: var(--text-dim);
    font-size: 14px;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 51, 51, 0.1);
    color: var(--text-secondary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 51, 51, 0.05);
    border-left: 3px solid var(--primary-red);
    padding: 30px;
    border-radius: 5px;
}

.faq-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.faq-item p {
    color: var(--text-dim);
    line-height: 1.8;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(255, 136, 0, 0.1));
}

.download-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.download-box > p {
    font-size: 20px;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.download-note {
    color: var(--text-dim);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 51, 51, 0.2);
    padding: 60px 40px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 51, 51, 0.1);
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .omega-text {
        font-size: 40px;
    }
    
    .features-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
    }
}

/* Futuristic Enhancements */
@keyframes cyber-glow {
    0%, 100% { 
        box-shadow: 0 0 5px var(--primary-red), 
                    0 0 10px var(--primary-red),
                    0 0 20px rgba(255, 51, 51, 0.5);
    }
    50% { 
        box-shadow: 0 0 10px var(--primary-red), 
                    0 0 20px var(--primary-red),
                    0 0 40px rgba(255, 51, 51, 0.8),
                    0 0 60px rgba(255, 51, 51, 0.4);
    }
}

@keyframes holographic {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scan-line {
    0% { top: -100%; }
    100% { top: 100%; }
}

.btn-primary, .btn-download {
    position: relative;
    overflow: hidden;
    animation: cyber-glow 3s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-primary:hover, .btn-download:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px var(--primary-red), 
                0 0 40px rgba(255, 51, 51, 0.6),
                0 10px 30px rgba(255, 51, 51, 0.4);
}

.feature-card, .plan-card {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(30, 30, 45, 0.95));
    border: 1px solid rgba(255, 51, 51, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before, .plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--cyber-blue),
        var(--primary-red),
        var(--neon-purple),
        transparent
    );
    background-size: 200% 100%;
    animation: holographic 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before, .plan-card:hover::before {
    opacity: 1;
}

.feature-card:hover, .plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 60px rgba(255, 51, 51, 0.3),
                0 0 30px rgba(255, 51, 51, 0.2),
                inset 0 0 20px rgba(255, 51, 51, 0.05);
}

.feature-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    opacity: 0;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.5); }
}

h1, h2, h3 {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--text-primary),
        var(--cyber-blue),
        var(--primary-red),
        var(--neon-purple)
    );
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographic 5s ease infinite;
}

.hero-content h1 {
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.3));
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 51, 51, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation: float 20s ease-in-out infinite, colorShift 10s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyber-blue) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation: float 20s ease-in-out infinite 7s, colorShift 10s ease-in-out infinite 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation: float 20s ease-in-out infinite 14s, colorShift 10s ease-in-out infinite 3s;
}

@keyframes colorShift {
    0%, 100% { opacity: 0.3; filter: blur(100px) hue-rotate(0deg); }
    50% { opacity: 0.5; filter: blur(120px) hue-rotate(30deg); }
}

.navbar {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--cyber-blue),
        var(--primary-red),
        transparent
    );
    background-size: 200% 100%;
    animation: holographic 3s linear infinite;
}

/* Scan line effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 243, 255, 0.8),
        transparent
    );
    pointer-events: none;
    z-index: 9999;
    animation: scan-line 4s linear infinite;
    opacity: 0.3;
}

