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

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0066cc;
    --dark-bg: #0a0e27;
    --darker-bg: #050811;
    --card-bg: #151932;
    --text-primary: #ffffff;
    --text-secondary: #b0b8d0;
    --text-muted: #6b7280;
    --border-color: #1f2937;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}


@keyframes scanBeam {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-5px);
    }
}

@keyframes dataStream {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes hologramOverlay {
    0% {
        transform: translateX(-100%);
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%);
        opacity: 0.1;
    }
}

@keyframes statusBlink {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--darker-bg);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--darker-bg);
}

/* Progress Bar on Right Side */
.loading-progress-right {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.progress-bar-wrapper-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: row-reverse;
}

.progress-bar-track-right {
    width: 8px;
    height: 400px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        inset 0 0 20px rgba(0, 212, 255, 0.1),
        0 0 30px rgba(0, 212, 255, 0.2),
        0 0 60px rgba(0, 212, 255, 0.1);
}

.progress-matrix-bg-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 19px,
            rgba(0, 212, 255, 0.05) 19px,
            rgba(0, 212, 255, 0.05) 20px
        );
    animation: matrixMoveVertical 3s linear infinite;
    opacity: 0.5;
}

.progress-grid-lines-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.progress-energy-waves-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 212, 255, 0.2) 25%,
        rgba(0, 212, 255, 0.4) 50%,
        rgba(0, 212, 255, 0.2) 75%,
        transparent 100%);
    animation: energyWaveVertical 2s ease-in-out infinite;
    filter: blur(2px);
}

.progress-bar-fill-right {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg,
        rgba(0, 102, 204, 1) 0%,
        rgba(0, 102, 204, 0.95) 20%,
        rgba(0, 212, 255, 0.95) 80%,
        rgba(0, 212, 255, 1) 100%);
    border-radius: 4px;
    transition: height 0.1s linear;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.8),
        0 0 40px rgba(0, 212, 255, 0.6),
        0 0 60px rgba(0, 212, 255, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 212, 255, 0.3);
    overflow: visible;
    filter: brightness(1.3);
}

.progress-core-glow-right {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(0, 212, 255, 1) 0%, rgba(0, 212, 255, 0.5) 50%, transparent 70%);
    animation: coreGlowPulseVertical 1s ease-in-out infinite;
    filter: blur(5px);
    z-index: 10;
}

.progress-particles-flow-right {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 50% 60%, rgba(0, 212, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 100% 100%;
    animation: particlesFlowVertical 3s linear infinite;
    opacity: 0.7;
}

.progress-energy-bursts-right {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 1) 0%, transparent 70%);
    border-radius: 50%;
    animation: energyBurstVertical 0.8s ease-out infinite;
    z-index: 8;
    box-shadow: 0 0 15px rgba(0, 212, 255, 1);
}

.progress-scan-beam-right {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(180deg,
        rgba(0, 212, 255, 0.8) 0%,
        transparent 100%);
    box-shadow: 0 0 15px rgba(0, 212, 255, 1);
    animation: scanBeamVertical 2s ease-in-out infinite;
    z-index: 9;
}

.progress-data-stream-right {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 212, 255, 0.8) 50%,
        transparent 100%);
    animation: dataStreamVertical 1.5s linear infinite;
    z-index: 7;
}

.progress-hologram-overlay-right {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 20%,
        rgba(0, 212, 255, 0.2) 50%,
        transparent 80%,
        rgba(255, 255, 255, 0.1) 100%);
    animation: hologramOverlayVertical 2s linear infinite;
    z-index: 6;
    filter: blur(0.5px);
}

.progress-side-energy-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 212, 255, 0.2) 0%,
        transparent 100%);
    z-index: 5;
    filter: blur(3px);
}

.progress-corner-markers-right {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(0, 212, 255, 0.8);
    border-left: none;
    border-bottom: none;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.progress-corner-markers-right::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(0, 212, 255, 0.8);
    border-right: none;
    border-top: none;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.progress-info-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    min-width: 100px;
}

.loading-percent-right {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.4),
        0 0 30px rgba(0, 212, 255, 0.2);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.progress-status-right {
    font-size: 0.75rem;
    color: rgba(0, 212, 255, 0.7);
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    animation: statusBlink 2s ease-in-out infinite;
    font-family: 'Courier New', monospace;
}

@keyframes matrixMoveVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}

@keyframes energyWaveVertical {
    0%, 100% {
        transform: translateY(-100%);
        opacity: 0.2;
    }
    50% {
        transform: translateY(100%);
        opacity: 0.4;
    }
}

@keyframes coreGlowPulseVertical {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.3);
    }
}

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

@keyframes energyBurstVertical {
    0% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 15px rgba(0, 212, 255, 1);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1.8);
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 15px rgba(0, 212, 255, 1);
    }
}

@keyframes scanBeamVertical {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(5px);
    }
}

@keyframes dataStreamVertical {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes hologramOverlayVertical {
    0% {
        transform: translateY(-100%);
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100%);
        opacity: 0.1;
    }
}

.loading-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.water-ripple-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg,
        rgba(0, 212, 255, 0.2) 0%,
        rgba(0, 212, 255, 0.15) 20%,
        rgba(0, 212, 255, 0.1) 40%,
        rgba(0, 102, 204, 0.08) 60%,
        rgba(0, 102, 204, 0.12) 80%,
        rgba(0, 102, 204, 0.15) 100%);
    transition: height 0.1s linear;
    z-index: 2;
    overflow: hidden;
    backdrop-filter: blur(1px) brightness(1.1);
    -webkit-backdrop-filter: blur(1px) brightness(1.1);
    mask-image: 
        radial-gradient(ellipse 80% 60% at center bottom, 
            rgba(0, 0, 0, 0.4) 0%, 
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.8) 60%,
            rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: 
        radial-gradient(ellipse 80% 60% at center bottom, 
            rgba(0, 0, 0, 0.4) 0%, 
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.8) 60%,
            rgba(0, 0, 0, 1) 100%);
    animation: waterRippleWave 4s ease-in-out infinite;
    box-shadow: inset 0 -10px 30px rgba(0, 212, 255, 0.2);
}

.water-ripple-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: waterSurface 2s linear infinite;
    opacity: 0.5;
}

.water-ripple-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(
        ellipse at center bottom,
        rgba(0, 212, 255, 0.1) 0%,
        transparent 50%
    );
    animation: waterRippleExpand 3s ease-out infinite;
}

@keyframes waterRippleWave {
    0%, 100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-3px) scaleY(1.01);
        opacity: 1;
    }
}

@keyframes waterSurface {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(20px);
    }
}

@keyframes waterRippleExpand {
    0% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0;
    }
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.2) 0%, rgba(10, 14, 39, 0.4) 50%, rgba(10, 14, 39, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.loading-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-logo {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 2rem;
}

.loading-progress-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5%;
}

.loading-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.loading-progress-bar {
    width: 4px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: visible;
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.2),
        inset 0 0 10px rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin: 0 10px;
}

.progress-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 9px,
            rgba(0, 212, 255, 0.1) 9px,
            rgba(0, 212, 255, 0.1) 10px
        );
    pointer-events: none;
}

.loading-progress-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, 
        rgba(0, 212, 255, 1) 0%, 
        rgba(0, 212, 255, 0.9) 30%,
        rgba(0, 102, 204, 0.9) 70%,
        rgba(0, 102, 204, 1) 100%);
    border-radius: 2px;
    transition: height 0.1s linear;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.8),
        0 0 40px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.2);
    overflow: visible;
    filter: brightness(1.2);
}

.progress-glow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 1) 0%, rgba(0, 212, 255, 0.5) 50%, transparent 70%);
    animation: glowPulse 1.5s ease-in-out infinite;
    filter: blur(4px);
    z-index: 10;
}

.progress-energy-lines {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 212, 255, 0.3) 20%,
        rgba(0, 212, 255, 0.6) 50%,
        rgba(0, 212, 255, 0.3) 80%,
        transparent 100%);
    animation: energyFlow 2s linear infinite;
    z-index: 1;
}

.progress-scan-line {
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 8px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 212, 255, 0.8) 50%,
        transparent 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 1);
    animation: scanUp 10s linear infinite;
    z-index: 15;
}

.progress-energy-pulse {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(0, 212, 255, 1) 0%, transparent 70%);
    border-radius: 50%;
    animation: energyPulse 1s ease-in-out infinite;
    z-index: 12;
}

.progress-hologram-effect {
    position: absolute;
    top: 0;
    left: -1px;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 20%,
        rgba(0, 212, 255, 0.2) 50%,
        transparent 80%,
        rgba(255, 255, 255, 0.1) 100%);
    animation: hologramScan 3s linear infinite;
    z-index: 5;
    filter: blur(1px);
}

.progress-side-glow {
    position: absolute;
    left: -8px;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(0, 212, 255, 0.1) 0%,
        transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.progress-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 100% 30px;
    animation: particlesMove 2s linear infinite;
    opacity: 0.6;
}

/* Progress Bar at Bottom */
.loading-progress-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    padding: 2rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.8) 50%, rgba(10, 14, 39, 0.95) 100%);
}

.progress-container-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.progress-bar-track {
    flex: 1;
    height: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        inset 0 0 20px rgba(0, 212, 255, 0.1),
        0 0 30px rgba(0, 212, 255, 0.2),
        0 0 60px rgba(0, 212, 255, 0.1);
}

.progress-matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 19px,
            rgba(0, 212, 255, 0.05) 19px,
            rgba(0, 212, 255, 0.05) 20px
        );
    animation: matrixMove 3s linear infinite;
    opacity: 0.5;
}

.progress-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.progress-energy-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 212, 255, 0.2) 25%,
        rgba(0, 212, 255, 0.4) 50%,
        rgba(0, 212, 255, 0.2) 75%,
        transparent 100%);
    animation: energyWave 2s ease-in-out infinite;
    filter: blur(2px);
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
        rgba(0, 212, 255, 1) 0%,
        rgba(0, 212, 255, 0.95) 20%,
        rgba(0, 102, 204, 0.95) 80%,
        rgba(0, 102, 204, 1) 100%);
    border-radius: 6px;
    transition: width 0.1s linear;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.8),
        0 0 40px rgba(0, 212, 255, 0.6),
        0 0 60px rgba(0, 212, 255, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 212, 255, 0.3);
    overflow: visible;
    filter: brightness(1.3);
}

.progress-core-glow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(0, 212, 255, 1) 0%, rgba(0, 212, 255, 0.5) 50%, transparent 70%);
    animation: coreGlowPulse 1s ease-in-out infinite;
    filter: blur(5px);
    z-index: 10;
}

.progress-particles-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 60% 50%, rgba(0, 212, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 100% 100%;
    animation: particlesFlow 3s linear infinite;
    opacity: 0.7;
}

.progress-energy-bursts {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 1) 0%, transparent 70%);
    border-radius: 50%;
    animation: energyBurst 0.8s ease-out infinite;
    z-index: 8;
    box-shadow: 0 0 15px rgba(0, 212, 255, 1);
}

.progress-scan-beam {
    position: absolute;
    right: -5px;
    top: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(0, 212, 255, 0.8) 0%,
        transparent 100%);
    box-shadow: 0 0 15px rgba(0, 212, 255, 1);
    animation: scanBeam 2s ease-in-out infinite;
    z-index: 9;
}

.progress-data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 212, 255, 0.8) 50%,
        transparent 100%);
    animation: dataStream 1.5s linear infinite;
    z-index: 7;
}

.progress-hologram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 20%,
        rgba(0, 212, 255, 0.2) 50%,
        transparent 80%,
        rgba(255, 255, 255, 0.1) 100%);
    animation: hologramOverlay 2s linear infinite;
    z-index: 6;
    filter: blur(0.5px);
}

.progress-side-energy {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(0, 212, 255, 0.2) 0%,
        transparent 100%);
    z-index: 5;
    filter: blur(3px);
}

.progress-corner-markers {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(0, 212, 255, 0.8);
    border-right: none;
    border-bottom: none;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.progress-corner-markers::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(0, 212, 255, 0.8);
    border-left: none;
    border-top: none;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.progress-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 120px;
}

.loading-percent-bottom {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.4),
        0 0 30px rgba(0, 212, 255, 0.2);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.progress-status {
    font-size: 0.75rem;
    color: rgba(0, 212, 255, 0.7);
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    animation: statusBlink 2s ease-in-out infinite;
    font-family: 'Courier New', monospace;
}

@keyframes matrixMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(20px);
    }
}

@keyframes energyWave {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0.2;
    }
    50% {
        transform: translateX(100%);
        opacity: 0.4;
    }
}

@keyframes coreGlowPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.3);
    }
}

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

@keyframes energyBurst {
    0% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 15px rgba(0, 212, 255, 1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.8);
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 15px rgba(0, 212, 255, 1);
    }
}

@keyframes scanBeam {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-5px);
    }
}

@keyframes dataStream {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes hologramOverlay {
    0% {
        transform: translateX(-100%);
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%);
        opacity: 0.1;
    }
}

@keyframes statusBlink {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.loading-percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.4);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    min-width: 80px;
}


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

/* Main Content */
.main-content {
    transition: opacity 0.8s ease;
    position: relative;
    z-index: 1;
}

.main-content.visible {
    opacity: 1 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 50%, #0a1a3a 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-image-container-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-left: 5%;
}

.hero-image-main {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
    opacity: 0.5;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    filter: brightness(0.95) contrast(1.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content .container {
    max-width: 600px;
    margin-left: 50%;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 5%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Vision Section */
.vision-section {
    background-color: var(--darker-bg);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.vision-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.vision-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.solution-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: var(--darker-bg);
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-2);
    border: none;
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.contact-email {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links a,
.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-decline {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--gradient-2);
    color: var(--text-primary);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.btn-decline {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-decline:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-image-container-main {
        width: 100%;
        height: 50%;
        top: 0;
        padding-left: 0;
        justify-content: center;
    }

    .hero-image-main {
        max-width: 80%;
        max-height: 100%;
        opacity: 0.3;
    }

    .hero-content .container {
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .vision-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-accept,
    .btn-decline {
        flex: 1;
    }

    .loading-progress-right {
        right: 3%;
    }

    .progress-bar-track-right {
        width: 6px;
        height: 300px;
    }

    .loading-percent-right {
        font-size: 1.5rem;
    }

    .progress-status-right {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

