/* Base Variables */
:root {
    --primary: #00f0ff;
    --primary-dark: #00a2ff;
    --secondary: #ff00e6;
    --accent: #7d00ff;
    --dark: #050510;
    --darker: #020208;
    --light: #ffffff;
    --glow: 0 0 15px rgba(0, 240, 255, 0.7);
    --glow-strong: 0 0 25px rgba(0, 240, 255, 0.9);
    --glow-purple: 0 0 15px rgba(125, 0, 255, 0.7);
    --glow-pink: 0 0 15px rgba(255, 0, 230, 0.7);
    --grid-color: rgba(0, 240, 255, 0.1);
    --grid-size: 50px;
    --font-main: 'Orbitron', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-main);
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Elements */
.space-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000, #050520);
    z-index: -10;
    overflow: hidden;
}

.space-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(2px 2px at 40px 60px, rgba(0, 240, 255, 0.5), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 20px 50px, rgba(125, 0, 255, 0.5), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 30px 100px, rgba(255, 0, 230, 0.5), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 60px, rgba(0, 240, 255, 0.5), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 110px 90px, rgba(125, 0, 255, 0.5), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 190px 150px, rgba(255, 0, 230, 0.5), rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: stars-animation 100s linear infinite;
    opacity: 0.5;
}

@keyframes stars-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    z-index: -9;
    opacity: 0.3;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
    animation: grid-animation 20s linear infinite;
}

@keyframes grid-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 var(--grid-size);
    }
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -8;
    overflow: hidden;
}

.floating-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 20%, rgba(125, 0, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 230, 0.1) 0%, transparent 20%);
    filter: blur(10px);
    animation: float-particles 15s ease-in-out infinite alternate;
}

@keyframes float-particles {
    0% {
        transform: translate(-5%, -5%) scale(1);
    }
    50% {
        transform: translate(5%, 5%) scale(1.1);
    }
    100% {
        transform: translate(-5%, -5%) scale(1);
    }
}

.holographic-sphere {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.01) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -7;
    opacity: 0.5;
    animation: pulse-sphere 10s ease-in-out infinite;
}

@keyframes pulse-sphere {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Neural Interface Animation */
.neural-interface {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -6;
    pointer-events: none;
}

.neural-node {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: var(--glow);
    opacity: 0.7;
}

.neural-node.n1 { top: 20%; left: 10%; animation: float-node 8s ease-in-out infinite; }
.neural-node.n2 { top: 30%; left: 80%; animation: float-node 12s ease-in-out infinite; }
.neural-node.n3 { top: 70%; left: 30%; animation: float-node 9s ease-in-out infinite; }
.neural-node.n4 { top: 60%; left: 70%; animation: float-node 11s ease-in-out infinite; }
.neural-node.n5 { top: 40%; left: 40%; animation: float-node 10s ease-in-out infinite; }
.neural-node.n6 { top: 80%; left: 20%; animation: float-node 13s ease-in-out infinite; }

@keyframes float-node {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

.neural-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0.3;
    transform-origin: left center;
}

.neural-connection.c1 {
    top: calc(20% + 2.5px);
    left: calc(10% + 2.5px);
    width: 70%;
    animation: pulse-connection 4s ease-in-out infinite;
}

.neural-connection.c2 {
    top: calc(30% + 2.5px);
    left: calc(80% + 2.5px);
    width: 40%;
    transform: rotate(210deg);
    animation: pulse-connection 6s ease-in-out infinite;
}

.neural-connection.c3 {
    top: calc(70% + 2.5px);
    left: calc(30% + 2.5px);
    width: 50%;
    transform: rotate(30deg);
    animation: pulse-connection 5s ease-in-out infinite;
}

.neural-connection.c4 {
    top: calc(60% + 2.5px);
    left: calc(70% + 2.5px);
    width: 30%;
    transform: rotate(150deg);
    animation: pulse-connection 7s ease-in-out infinite;
}

.neural-connection.c5 {
    top: calc(40% + 2.5px);
    left: calc(40% + 2.5px);
    width: 60%;
    transform: rotate(300deg);
    animation: pulse-connection 8s ease-in-out infinite;
}

@keyframes pulse-connection {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

/* Quantum Scanner Effect */
.quantum-scanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    pointer-events: none;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 240, 255, 0.5) 20%, 
        rgba(0, 240, 255, 0.8) 50%,
        rgba(0, 240, 255, 0.5) 80%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    animation: scan-animation 8s linear infinite;
    opacity: 0.7;
}

@keyframes scan-animation {
    0% {
        top: -5px;
    }
    100% {
        top: 100%;
    }
}

/* Main Container */
.neo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* Header Styles */
.neo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    z-index: 100;
    background: rgba(2, 2, 8, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 30px;
    min-width: 180px;
    flex-shrink: 0;
    position: relative;
    z-index: 50;
}

.logo-hologram {
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
}

.logo-inner {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--light);
    text-transform: uppercase;
    position: relative;
}

.logo-inner span {
    color: var(--primary);
}

.logo-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
    animation: logo-scan 3s linear infinite;
    z-index: 1;
}

@keyframes logo-scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.logo-reflection {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to bottom, rgba(0, 240, 255, 0.3), transparent);
    transform: scaleY(-1);
    filter: blur(2px);
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-top: 3px;
    font-family: var(--font-secondary);
    opacity: 0.8;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    flex-shrink: 0;
}

.system-status {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(0, 150, 255, 0.08));
    padding: 10px 16px;
    border-radius: 30px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
}

.system-status:hover {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(0, 150, 255, 0.12));
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.15);
    transform: translateY(-2px);
}

.status-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-indicator {
    position: relative;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, var(--primary), rgba(0, 240, 255, 0.6));
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.6), 0 0 15px rgba(0, 240, 255, 0.3);
    animation: pulse-status 3s ease-in-out infinite;
}

.status-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    opacity: 0.6;
    animation: ripple-status 3s ease-out infinite;
}

@keyframes pulse-status {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes ripple-status {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.status-text {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: rgba(0, 240, 255, 0.95);
    font-family: var(--font-secondary);
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.time-display {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-secondary);
    margin-left: 12px;
    border-left: 1px solid rgba(0, 240, 255, 0.3);
    padding-left: 12px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    backdrop-filter: blur(10px);
}

.language-option {
    color: var(--light);
    font-size: 0.55rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1px 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.language-option:hover {
    color: var(--primary);
    background: rgba(0, 240, 255, 0.05);
}

.language-option.active {
    color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.neo-nav {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.nav-hologram {
    position: absolute;
    width: 100%;
    height: calc(100% + 30px);
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    filter: blur(5px);
    z-index: -1;
    pointer-events: none;
}

.neo-nav ul {
    display: flex;
    list-style: none;
    gap: 18px;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.neo-nav ul li {
    position: relative;
    z-index: 1;
}

.neo-nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 7px 15px;
    display: block;
    text-align: center;
    white-space: nowrap;
    z-index: 1;
    cursor: pointer;
}

.neo-nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.neo-nav ul li a:hover {
    color: var(--primary);
}

.neo-nav ul li a:hover::before,
.neo-nav ul li a.active::before {
    width: 100%;
}

.neo-nav ul li a.active {
    color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    border-radius: 4px;
}

.product-icon-small {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -2px;
    opacity: 0.9;
}

.apple-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" fill="rgb(0, 240, 255)"><path d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"/></svg>');
}

.xiaomi-icon-small {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="rgb(0, 240, 255)"><path d="M368 128h-47.9c.1.7 .1 1.3 .1 2v79.7H320c0-42.4-34.3-76.7-76.7-76.7s-76.7 34.3-76.7 76.7H167c.1-.7 .1-1.3 .1-2V130c0-1.3-.1-2.7-.3-4H48c-8.8 0-16 7.2-16 16V364c0 8.8 7.2 16 16 16H80V188h32V380h64V188h64V380h64V188h48v192h16c8.8 0 16-7.2 16-16V144c0-8.8-7.2-16-16-16z"/></svg>');
}

.dual-icon-small {
    background-image: url('dual/logo.png');
    background-size: contain;
}

.neo-nav ul li a.active .product-icon-small,
.neo-nav ul li a:hover .product-icon-small {
    opacity: 1;
    filter: drop-shadow(0 0 2px rgba(0, 240, 255, 0.8));
}

/* Hero Section */
.neo-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 100px;
    position: relative;
    z-index: 5;
}

@media (min-width: 768px) {
    .neo-hero {
        flex-direction: row;
        justify-content: space-between;
        padding: 150px 0 100px;
    }
}

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

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
        flex: 1;
    }
}

.glitch-text {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

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

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--secondary);
    clip: rect(0, 450px, 60px, 0);
    animation: glitch-anim-2 4s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(10px, 9999px, 96px, 0);
    }
    5% {
        clip: rect(82px, 9999px, 34px, 0);
    }
    10% {
        clip: rect(58px, 9999px, 13px, 0);
    }
    15% {
        clip: rect(65px, 9999px, 43px, 0);
    }
    20% {
        clip: rect(75px, 9999px, 12px, 0);
    }
    25% {
        clip: rect(45px, 9999px, 55px, 0);
    }
    30% {
        clip: rect(23px, 9999px, 71px, 0);
    }
    35% {
        clip: rect(64px, 9999px, 39px, 0);
    }
    40% {
        clip: rect(32px, 9999px, 86px, 0);
    }
    45% {
        clip: rect(92px, 9999px, 25px, 0);
    }
    50% {
        clip: rect(12px, 9999px, 46px, 0);
    }
    55% {
        clip: rect(75px, 9999px, 33px, 0);
    }
    60% {
        clip: rect(42px, 9999px, 78px, 0);
    }
    65% {
        clip: rect(22px, 9999px, 91px, 0);
    }
    70% {
        clip: rect(84px, 9999px, 29px, 0);
    }
    75% {
        clip: rect(33px, 9999px, 66px, 0);
    }
    80% {
        clip: rect(51px, 9999px, 84px, 0);
    }
    85% {
        clip: rect(11px, 9999px, 59px, 0);
    }
    90% {
        clip: rect(44px, 9999px, 70px, 0);
    }
    95% {
        clip: rect(38px, 9999px, 63px, 0);
    }
    100% {
        clip: rect(53px, 9999px, 47px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(97px, 9999px, 37px, 0);
    }
    5% {
        clip: rect(9px, 9999px, 28px, 0);
    }
    10% {
        clip: rect(70px, 9999px, 64px, 0);
    }
    15% {
        clip: rect(55px, 9999px, 41px, 0);
    }
    20% {
        clip: rect(36px, 9999px, 97px, 0);
    }
    25% {
        clip: rect(52px, 9999px, 18px, 0);
    }
    30% {
        clip: rect(19px, 9999px, 89px, 0);
    }
    35% {
        clip: rect(81px, 9999px, 47px, 0);
    }
    40% {
        clip: rect(15px, 9999px, 75px, 0);
    }
    45% {
        clip: rect(63px, 9999px, 31px, 0);
    }
    50% {
        clip: rect(48px, 9999px, 60px, 0);
    }
    55% {
        clip: rect(37px, 9999px, 82px, 0);
    }
    60% {
        clip: rect(29px, 9999px, 73px, 0);
    }
    65% {
        clip: rect(69px, 9999px, 25px, 0);
    }
    70% {
        clip: rect(54px, 9999px, 40px, 0);
    }
    75% {
        clip: rect(45px, 9999px, 68px, 0);
    }
    80% {
        clip: rect(17px, 9999px, 93px, 0);
    }
    85% {
        clip: rect(71px, 9999px, 22px, 0);
    }
    90% {
        clip: rect(83px, 9999px, 38px, 0);
    }
    95% {
        clip: rect(50px, 9999px, 56px, 0);
    }
    100% {
        clip: rect(26px, 9999px, 79px, 0);
    }
}

.subtitle-container {
    position: relative;
    margin-bottom: 30px;
}

.neo-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 5px;
}

.subtitle-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    position: relative;
}

.subtitle-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    filter: blur(3px);
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-secondary);
    line-height: 1.8;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

@media (min-width: 480px) {
    .cta-container {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .cta-container {
        justify-content: flex-start;
    }
}

.neo-button {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--light);
    font-weight: 700;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    overflow: hidden;
    z-index: 1;
}

.neo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.neo-button:hover::before {
    left: 100%;
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.button-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.neo-button.primary {
    background: var(--primary);
    color: var(--darker);
    box-shadow: var(--glow);
}

.neo-button.primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: none;
}

.neo-button.primary:hover .button-glow {
    opacity: 0.1;
}

.neo-button.secondary {
    border-color: var(--primary);
    color: var(--primary);
}

.neo-button.secondary:hover {
    background: var(--primary);
    color: var(--darker);
    box-shadow: var(--glow);
}

.hero-visual {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-visual {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }
}

.hologram-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    z-index: 5;
}

.hologram-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    border-radius: 50%;
    filter: blur(5px);
}

.hologram-projection {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: calc(100% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hologram-object {
    width: 100px;
    height: 100px;
    background: rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    position: relative;
    animation: float-hologram 6s ease-in-out infinite;
}

.hologram-object::before,
.hologram-object::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(0, 240, 255, 0.2);
    animation: rotate-hologram 10s linear infinite;
}

.hologram-object::before {
    transform-origin: center;
    animation-direction: normal;
}

.hologram-object::after {
    transform-origin: center;
    animation-direction: reverse;
}

@keyframes float-hologram {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate-hologram {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.hologram-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.holo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: 0.5;
}

.holo-ring.r1 {
    width: 150px;
    height: 150px;
    animation: rotate-ring 10s linear infinite;
}

.holo-ring.r2 {
    width: 200px;
    height: 200px;
    animation: rotate-ring 15s linear infinite reverse;
}

.holo-ring.r3 {
    width: 250px;
    height: 250px;
    animation: rotate-ring 20s linear infinite;
}

@keyframes rotate-ring {
    0% {
        transform: rotateX(60deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(60deg) rotateY(360deg);
    }
}

.data-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, var(--primary) 50%, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 40px 70px, var(--primary) 50%, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 50px 160px, var(--primary) 50%, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 90px 40px, var(--primary) 50%, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 130px 80px, var(--primary) 50%, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 160px 120px, var(--primary) 50%, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 180px 180px;
    animation: float-particles 10s linear infinite;
}

.hologram-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    opacity: 0.3;
    filter: blur(5px);
    transform: scaleY(-1);
}

/* Products Section */
.neo-products {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
}

.neo-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
}

.neo-heading span {
    color: var(--primary) !important;
}

.header-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: rgba(5, 5, 15, 0.7);
    border-radius: 5px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.3);
}

.card-hologram {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: var(--primary);
    opacity: 0.1;
    filter: blur(10px);
    animation: pulse-icon 3s infinite alternate;
}

@keyframes pulse-icon {
    0% {
        opacity: 0.1;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

.hyper-icon::after {
    content: '';
}

.hyper-icon[style*="background-image"]::after {
    content: '';
}

.xiaomi-icon::after {
    content: '';
}

.xiaomi-icon[style*="background-image"]::after {
    content: '';
}

.root-icon::after {
    content: 'R';
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}

.root-icon[style*="background-image"]::after {
    content: '';
}

.tor-icon::after {
    content: 'D';
    font-size: 2.5rem;
    font-weight: 900;
    color: #0096ff;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light);
    letter-spacing: 1px;
}

.product-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

.product-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.product-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
}

/* About Section */
.neo-about {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

@media (min-width: 768px) {
    .neo-about {
        flex-direction: row;
        justify-content: space-between;
    }
}

.about-content {
    text-align: center;
    max-width: 600px;
    z-index: 1;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .about-content {
        text-align: left;
        flex: 1;
    }
}

.about-description {
    margin-bottom: 40px;
}

.about-description p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-family: var(--font-secondary);
}

.tech-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    z-index: 5;
}

@media (min-width: 768px) {
    .tech-specs {
        justify-content: flex-start;
    }
}

.spec {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 15px;
    border-radius: 5px;
    min-width: 150px;
    text-align: center;
    z-index: 10;
}

.spec-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.tech-visual {
    margin-top: 50px;
    position: relative;
    width: 300px;
    height: 300px;
    z-index: 1;
}

@media (min-width: 768px) {
    .tech-visual {
        margin-top: 0;
    }
}

.quantum-sphere {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.q-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, var(--primary), rgba(0, 0, 0, 0.5));
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    animation: pulse 4s infinite alternate;
}

.q-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: 
        radial-gradient(2px 2px at 40px 60px, var(--primary) 50%, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 20px 50px, var(--primary) 50%, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 30px 100px, var(--primary) 50%, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 80px 120px, var(--primary) 50%, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 110px 90px, var(--primary) 50%, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 160px 150px, var(--primary) 50%, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: rotate-particles 20s linear infinite;
}

@keyframes rotate-particles {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.q-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid var(--primary);
    transform: translate(-50%, -50%);
}

.q-ring.q1 {
    width: 150px;
    height: 150px;
    animation: rotate3D-1 10s linear infinite;
}

.q-ring.q2 {
    width: 200px;
    height: 200px;
    border-color: var(--secondary);
    animation: rotate3D-2 15s linear infinite;
}

.q-ring.q3 {
    width: 250px;
    height: 250px;
    border-color: var(--accent);
    animation: rotate3D-3 20s linear infinite;
}

@keyframes rotate3D-1 {
    from {
        transform: translate(-50%, -50%) rotateX(60deg) rotateY(0);
    }
    to {
        transform: translate(-50%, -50%) rotateX(60deg) rotateY(360deg);
    }
}

@keyframes rotate3D-2 {
    from {
        transform: translate(-50%, -50%) rotateX(30deg) rotateY(0);
    }
    to {
        transform: translate(-50%, -50%) rotateX(30deg) rotateY(-360deg);
    }
}

@keyframes rotate3D-3 {
    from {
        transform: translate(-50%, -50%) rotateX(75deg) rotateY(0);
    }
    to {
        transform: translate(-50%, -50%) rotateX(75deg) rotateY(360deg);
    }
}

.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.data-stream::before {
    content: '01010111010001010100110001000011010011110100110101000101';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
    opacity: 0.5;
    animation: data-flow 5s linear infinite;
    white-space: nowrap;
}

@keyframes data-flow {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Footer */
.neo-footer {
    padding: 50px 20px;
    background: rgba(2, 2, 8, 0.9);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--light);
    text-transform: uppercase;
    margin-bottom: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 0;
        width: auto;
    }
}

.footer-logo span {
    color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .footer-links {
        flex-direction: row;
        gap: 30px;
    }
}

@media (min-width: 768px) {
    .footer-links {
        margin-bottom: 0;
    }
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .footer-info {
        align-items: flex-end;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.quantum-signature {
    color: var(--primary);
    font-size: 0.7rem;
    font-family: monospace;
    letter-spacing: 1px;
}

/* Distributor Grid */
.distributors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .distributors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .distributors-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }
}

.distributor-card {
    background: rgba(0, 10, 30, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.distributor-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.distributor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.distributor-icon,
.distributor-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.distributor-icon::after {
    content: '';
    display: none; /* Do not display the default icon */
}

.distributor-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--light);
}

.distributor-card p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-secondary);
    line-height: 1.5;
}

.distributor-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
    font-size: 0.8rem;
}

.distributor-details {
    width: 100%;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 5px 0;
    justify-content: center;
}

.detail-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
}

.phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.web-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E");
}

/* Media queries for responsive header */
@media (max-width: 1200px) {
    .neo-header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .header-right {
        order: 3;
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
        gap: 10px;
    }

    .system-status {
        border-radius: 25px;
        padding: 8px 12px;
    }

    .menu-toggle {
        display: flex;
        order: 2;
        z-index: 1001;
    }

    .language-selector {
        gap: 4px;
        padding: 5px 6px;
    }

    .neo-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 16, 0.98);
        backdrop-filter: blur(20px);
        border-right: 1px solid rgba(0, 240, 255, 0.3);
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding-top: 80px;
    }

    .neo-nav.active {
        left: 0;
    }

    .neo-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .neo-nav ul li {
        width: 100%;
        margin-bottom: 15px;
    }

    .neo-nav ul li a {
        padding: 15px 20px;
        border-radius: 8px;
        background: rgba(0, 240, 255, 0.05);
        border: 1px solid rgba(0, 240, 255, 0.2);
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .neo-nav ul li a:hover,
    .neo-nav ul li a:active {
        background: rgba(0, 240, 255, 0.15);
        border-color: rgba(0, 240, 255, 0.5);
        transform: translateX(5px);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .header-right {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .system-status .time-display {
        display: none;
    }
    
    .system-status {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .status-info {
        gap: 8px;
    }
    
    .status-indicator {
        width: 8px;
        height: 8px;
    }
    
    .status-text {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    
    .language-selector {
        gap: 3px;
        padding: 4px 6px;
        flex: 1 1 auto;
        justify-content: center;
    }
    
    .language-option {
        padding: 4px 6px;
        font-size: 9px;
        min-width: 28px;
    }
    
    .distributor-details {
        margin: 10px 0;
    }
    
    .detail-item {
        font-size: 0.8rem;
    }
}

.product-hero h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-hero h1 .product-icon-small {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .product-hero h1 {
        font-size: 24px;
        flex-direction: column;
        gap: 8px;
    }

    .product-hero h1 .product-icon-small {
        width: 20px;
        height: 20px;
    }
}

/* Additional mobile fixes for animations and layout */
@media (max-width: 767px) {
    /* Reduce intensity of background effects on mobile */
    .floating-particles::before {
        opacity: 0.3;
    }
    
    .holographic-sphere {
        opacity: 0.3;
        width: 600px;
        height: 600px;
    }
    
    /* Fix neural interface positioning */
    .neural-interface {
        opacity: 0.3;
        pointer-events: none;
        z-index: -1;
    }
    
    /* Prevent content overlap by ensuring proper z-index stacking */
    .neo-container {
        position: relative;
        z-index: 1;
    }
    
    .neo-header,
    .neo-hero,
    .neo-products {
        position: relative;
        z-index: 2;
        background-color: rgba(7, 7, 32, 0.8);
        backdrop-filter: blur(5px);
    }
    
    .neo-about {
        position: relative;
        z-index: 2;
        background: transparent;
    }
    
    /* Make text more readable on mobile */
    .hero-description,
    .neo-subtitle,
    .product-card p,
    .distributor-card p {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    }
    
    /* Download card fixes */
    .download-card.premium {
        margin: 0 auto;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .neo-container {
        padding: 0 10px;
    }

    .neo-header {
        padding: 10px;
    }

    .logo-inner {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .glitch-text {
        font-size: 24px;
    }

    .neo-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 13px;
    }

    .neo-button {
        padding: 12px 20px;
        font-size: 13px;
    }

    .product-card,
    .distributor-card {
        padding: 20px 15px;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .neo-heading {
        font-size: 20px;
    }

    .language-selector {
        flex-wrap: wrap;
        gap: 3px;
    }

    .language-option {
        padding: 5px 8px;
        font-size: 11px;
        min-width: 30px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .neo-button,
    .product-btn,
    .distributor-btn,
    .language-option,
    .neo-nav ul li a {
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .neo-button:active,
    .product-btn:active,
    .distributor-btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .language-option:active {
        transform: scale(0.95);
    }

    /* Remove hover effects on touch devices */
    .product-card:hover,
    .distributor-card:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3);
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .neo-hero {
        padding: 60px 0 30px;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .glitch-text {
        font-size: 32px;
    }

    .cta-container {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .neo-button {
        width: auto;
        min-width: 180px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-icon,
    .distributor-icon,
    .distributor-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility improvements for mobile */
@media (prefers-reduced-motion: reduce) {
    .floating-particles::before,
    .holographic-sphere,
    .neural-interface,
    .grid-overlay {
        animation: none;
    }

    .space-bg::before {
        animation: none;
    }

    .glitch-text::before,
    .glitch-text::after {
        animation: none;
    }
    
    .status-indicator,
    .status-indicator::before {
        animation: none;
    }
    
    .system-status:hover {
        transform: none;
    }
}

/* Dark mode support for mobile browsers */
@media (prefers-color-scheme: dark) {
    .neo-nav {
        background: rgba(2, 2, 8, 0.98);
    }

    .menu-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .neo-container {
        min-height: -webkit-fill-available;
    }

    .neo-button,
    .product-btn,
    .distributor-btn {
        -webkit-appearance: none;
        border-radius: 8px;
    }

    input, button, select, textarea {
        -webkit-appearance: none;
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .neo-nav {
        -webkit-overflow-scrolling: touch;
    }
}

/* Menu toggle improvements */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

/* Menu overlay */
.menu-overlay {
    display: none;
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    .space-bg::before {
        will-change: transform;
        transform: translateZ(0);
    }

    .floating-particles::before {
        will-change: transform;
        transform: translateZ(0);
    }

    .holographic-sphere {
        will-change: transform;
        transform: translateZ(0);
    }
}

/* Additional mobile-specific product page improvements */
@media (max-width: 768px) {
    .download-card.premium {
        margin-bottom: 20px;
        padding: 20px;
    }

    .premium-badge {
        font-size: 11px;
        padding: 4px 8px;
    }

    .download-features {
        font-size: 13px;
        margin: 15px 0;
    }

    .download-features li {
        padding: 5px 0;
    }

    .tech-specs {
        padding: 30px 0;
    }

    .specs-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .spec-group h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .spec-list li {
        font-size: 13px;
        padding: 8px 0;
    }

    .features {
        padding: 30px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
        text-align: center;
    }

    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 13px;
        line-height: 1.5;
    }
}