/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0e17;
    font-family: 'Exo 2', sans-serif;
    color: #e0f7ff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* === ANIMATED BACKGROUND === */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 100, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 234, 255, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, rgba(10, 14, 23, 0.9) 0%, rgba(5, 10, 20, 0.95) 100%);
    z-index: -2;
}

.grid-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 234, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 234, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: -1;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* === NAVIGATION === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 234, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 20px 20px;
    margin: 0 2rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(90deg, #00eaff, #0088ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
}

.logo-version {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #00eaff;
    background: rgba(0, 234, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 234, 255, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    color: #a0c8ff;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-link:hover {
    color: #00eaff;
    background: rgba(0, 234, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #00eaff;
    background: rgba(0, 234, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.3);
}

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #00eaff;
    border-radius: 2px;
    box-shadow: 0 0 10px #00eaff;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 100, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 100, 0.3);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulseStatus 1.5s infinite;
    margin-left: 15px;
    background : #00ff55;
}

.status-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: #00ff64;
    font-weight: 700;
}

@keyframes pulseStatus {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === MAIN CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* === HERO SECTION === */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding: 3rem 0;
}

/* LEFT SIDE: TEXT CONTENT */
.hero-left {
    padding-right: 2rem;
}

.title-wrapper {
    margin-bottom: 2rem;
}

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.title-glow {
    background: linear-gradient(90deg, #00eaff, #0088ff, #00eaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 234, 255, 0.5);
}

.title-version {
    font-size: 1.5rem;
    color: #00eaff;
    background: rgba(0, 234, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 234, 255, 0.3);
}

.title-line {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, #00eaff, transparent);
    border-radius: 3px;
    margin-top: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #b0d0ff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight {
    color: #00eaff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

.creator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    max-width: fit-content;
}

.creator-icon {
    color: #ffd700;
    font-size: 1.5rem;
}

.creator-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 700;
}

.description {
    background: rgba(0, 30, 60, 0.4);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 100, 255, 0.2);
    backdrop-filter: blur(5px);
}

.desc-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.desc-line:hover {
    background: #00eaff1a;
    transform: translateX(10px);
}

.desc-icon {
    color: #00eaff;
    font-size: 1.2rem;
    min-width: 30px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(135deg, #00aaff, #0088ff);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.4);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 136, 255, 0.6);
}

.primary-btn:active {
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.primary-btn:hover .btn-glow {
    left: 100%;
}

.secondary-btn {
    background: transparent;
    color: #00eaff;
    border: 2px solid rgba(0, 234, 255, 0.5);
}

.secondary-btn:hover {
    background: rgba(0, 234, 255, 0.1);
    transform: translateY(-5px);
    border-color: #00eaff;
}


/* Container for all stats */
.stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  background: rgba(0, 100, 255, 0.2); /* semi-transparent dark bg */
  padding: 20px 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px); /* glassmorphism effect */
  font-family: 'Orbitron', sans-serif; /* tech/Jarvis style font */
}

/* Standard stat items */
.stat-item, .stat-item2 {
  text-align: center;
  padding: 15px 25px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, background 0.3s;
  cursor: default;
}

.stat-item:hover, .stat-item2:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
}

/* Values */
.stat-value, .stat-value2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #00ffff; /* neon cyan glow */
  text-shadow: 0 0 8px #00ffff, 0 0 20px #00ffff;
  margin-bottom: 5px;
}

/* Labels */
.stat-label, .stat-label2 {
  font-size: 1rem;
  color: #ffffffaa; /* semi-transparent white */
  letter-spacing: 1px;
}

/* Make satellite tracking stand out */
.stat-item2 {
  border: 2px solid #00ffff;
  box-shadow: 0 0 15px #00ffff60;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    gap: 20px;
  }
  .stat-value, .stat-value2 {
    font-size: 1.8rem;
  }
}

/* === STATS SECTION STYLES === */

.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-left: 0rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 30, 60, 0.5);
    border-radius: 15px;
    min-width: 140px;
    min-height: 100px;
    border: 1px solid rgba(0, 100, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #00eaff;
    box-shadow: 0 10px 20px rgba(0, 234, 255, 0.2);
}

/* Top label */
.stat-label {
    font-size: 0.9rem;
    color: #a0c8ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

/* Center value */
.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00eaff;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
    position: relative;
    z-index: 2;
    margin: 0.5rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional icon/unit below value */
.stat-unit {
    font-size: 0.8rem;
    color: #00eaff;
    opacity: 0.7;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

/* Add decorative line between label and value */
.stat-item:before {
    content: '';
    position: absolute;
    top: 40px; /* Adjust based on label height */
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 234, 255, 0.3), transparent);
}

/* Glow effect on hover */
.stat-item:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.stat-item:hover:after {
    width: 150px;
    height: 150px;
}

/* Corner accents */
.stat-item .corner {
    position: absolute;
    width: 15px;
    height: 15px;
}

.stat-item .corner-tl {
    top: 10px;
    left: 10px;
    border-top: 2px solid rgba(0, 234, 255, 0.5);
    border-left: 2px solid rgba(0, 234, 255, 0.5);
    border-top-left-radius: 5px;
}

.stat-item .corner-tr {
    top: 10px;
    right: 10px;
    border-top: 2px solid rgba(0, 234, 255, 0.5);
    border-right: 2px solid rgba(0, 234, 255, 0.5);
    border-top-right-radius: 5px;
}

.stat-item .corner-bl {
    bottom: 10px;
    left: 10px;
    border-bottom: 2px solid rgba(0, 234, 255, 0.5);
    border-left: 2px solid rgba(0, 234, 255, 0.5);
    border-bottom-left-radius: 5px;
}

.stat-item .corner-br {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid rgba(0, 234, 255, 0.5);
    border-right: 2px solid rgba(0, 234, 255, 0.5);
    border-bottom-right-radius: 5px;
}

/* RIGHT SIDE: JARVIS CIRCLE */
.hero-right {
    position: relative;
}

.jarvis-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glow Layers */
.glow-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    z-index: 1;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.3) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.glow-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.2) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite reverse;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 0, 255, 0.15) 0%, transparent 70%);
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Circle Wrapper */
.circle-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 2;
}

.circle-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px; /* Corner radius */
    overflow: hidden;
    background: rgba(0, 20, 40, 0.7);
    border: 2px solid rgba(0, 234, 255, 0.3);
    box-shadow: 
        0 0 50px rgba(0, 234, 255, 0.3),
        inset 0 0 50px rgba(0, 234, 255, 0.1);
}

/* Animated Border */
.circle-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 32px;
    background: linear-gradient(45deg, #00eaff, #0088ff, #00eaff);
    background-size: 200% 200%;
    animation: borderFlow 3s linear infinite;
    z-index: 1;
    opacity: 0.8;
}

.circle-border:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(5, 10, 20, 0.9);
    border-radius: 30px;
    z-index: 1;
}

.border-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00eaff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00eaff;
}

.border-particle:nth-child(1) { top: 10px; left: 10px; animation: particleMove 4s linear infinite; }
.border-particle:nth-child(2) { top: 10px; right: 10px; animation: particleMove 4s linear infinite 1s; }
.border-particle:nth-child(3) { bottom: 10px; left: 10px; animation: particleMove 4s linear infinite 2s; }
.border-particle:nth-child(4) { bottom: 10px; right: 10px; animation: particleMove 4s linear infinite 3s; }

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleMove {
    0% { transform: translate(0, 0); opacity: 1; }
    25% { transform: translate(20px, 0); opacity: 0.5; }
    50% { transform: translate(0, 20px); opacity: 1; }
    75% { transform: translate(-20px, 0); opacity: 0.5; }
    100% { transform: translate(0, 0); opacity: 1; }
}

/* JARVIS Circle Image */
.jarvis-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 20px; /* Corner radius */
    object-fit: cover;
    z-index: 2;
    transition: transform 0.1s ease-out;
    cursor: pointer;
    box-shadow: 
        0 0 40px rgba(0, 234, 255, 0.5),
        inset 0 0 40px rgba(0, 234, 255, 0.2);
    border: 2px solid rgba(0, 234, 255, 0.4);
}

/* Inner Glow */
.inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    border-radius: 22px;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.2) 0%, transparent 70%);
    filter: blur(15px);
    z-index: 1;
    animation: innerGlow 3s ease-in-out infinite;
}

@keyframes innerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Scanning Line */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00eaff, transparent);
    box-shadow: 0 0 10px #00eaff;
    z-index: 3;
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Floating Dots */
.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00eaff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00eaff;
}

.dot-1 {
    top: 20px;
    left: 20px;
    animation: floatDot 6s ease-in-out infinite;
}

.dot-2 {
    top: 20px;
    right: 20px;
    animation: floatDot 6s ease-in-out infinite 1.5s;
}

.dot-3 {
    bottom: 20px;
    left: 20px;
    animation: floatDot 6s ease-in-out infinite 3s;
}

.dot-4 {
    bottom: 20px;
    right: 20px;
    animation: floatDot 6s ease-in-out infinite 4.5s;
}

@keyframes floatDot {
    0%, 100% { transform: translate(0, 0); opacity: 1; }
    25% { transform: translate(10px, -10px); opacity: 0.5; }
    50% { transform: translate(0, 0); opacity: 1; }
    75% { transform: translate(-10px, 10px); opacity: 0.5; }
}

/* Interface Elements */
.interface-elements {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    z-index: 2;
}

.interface-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 30, 60, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 234, 255, 0.3);
    transition: all 0.3s ease;
}

.interface-item:hover {
    background: rgba(0, 234, 255, 0.1);
    transform: translateY(-5px);
    border-color: #00eaff;
}

.interface-icon {
    color: #00eaff;
    font-size: 1.2rem;
}

.interface-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #a0c8ff;
}

/* FOOTER */
.footer {
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;
    background: rgba(5, 10, 20, 0.8);
    border-radius: 20px 20px 0 0;
    border-top: 1px solid rgba(0, 234, 255, 0.2);
    margin: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #00eaff;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

.footer-text {
    color: #a0c8ff;
    font-size: 0.9rem;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    color: #00ff64;
    font-size: 0.8rem;
    animation: pulseStatus 2s infinite;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
    }
    
    .creator, .description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons, .stats {
        justify-content: center;
    }
    
    .jarvis-container {
        margin-top: 2rem;
    }
}
/* Add this first - Base Mobile Fix */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Navigation fix */
    nav {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem;
        margin: 0;
        width: 100%;
        height: 170px;
        box-sizing: border-box;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        min-height: 70%;
        width: 100%;
        margin-top: 10px;
    }

    .cursor-control {
visibility: hidden;
    }

    .nav-status {
        visibility: hidden;
    }

    .cta-btn {
        font-size: 1.2rem;
        justify-content: center;
    }

    .stats {
        margin-left: 0;
        min-height: 200%;
    }

    .stat-item {
        min-width: 100%;
        padding: 1rem;
    }
 
    .jarvis-circle {
        min-width: 300px;
        min-height: 300px;
    }

    .circle-wrapper {
        min-width: 300px;
        min-height: 300px;
    }

    .interface-elements {
        justify-content: center;
        min-width: 100%;
        padding: 0.2rem 0;
    }

    .interface-item {
        justify-content: center;
    }
    
    /* Title scaling */
    .main-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        justify-content: left;
        align-items: left;
        gap: 0.5rem;
        text-align: left;
        padding: 0 1rem;
    }

    .subtitle {
        text-align: left;
    }
    
    /* Circle elements scaling */
    .circle-wrapper {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
        margin: 0 auto;
    }
    
    .jarvis-circle {
        width: min(260px, 70vw);
        height: min(260px, 70vw);
    }
    
    .inner-glow {
        width: min(270px, 72vw);
        height: min(270px, 72vw);
    }
    
    /* Glow effects scaling */
    .glow-1 { 
        width: min(400px, 100vw); 
        height: min(400px, 100vw); 
    }
    .glow-2 { 
        width: min(350px, 90vw); 
        height: min(350px, 90vw); 
    }
    .glow-3 { 
        width: min(300px, 80vw); 
        height: min(300px, 80vw); 
    }
    
    /* Layout fixes */
    .interface-elements {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .footer {
        margin: 1rem;
        padding: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }
    
    /* Container fix */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    /* Hero section fix */
    .hero {
        padding: 1rem;
        gap: 2rem;
        min-height: auto;
    }
    
    /* Text content scaling */
    h1, h2, h3 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.5;
    }

}

/* Extra small devices */
@media (max-width: 480px) {
    nav {
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .main-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .circle-wrapper {
        width: min(250px, 85vw);
        height: min(250px, 85vw);
    }
    
    .jarvis-circle {
        width: min(210px, 75vw);
        height: min(210px, 75vw);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .circle-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .jarvis-circle {
        width: 220px;
        height: 220px;
    }
    
    .inner-glow {
        width: 230px;
        height: 230px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
    }
}

/* === UTILITY ANIMATIONS === */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* === PAGE STYLES FOR ABOUT, SKILLS, CONTACT PAGES === */

/* Page Hero Section */
.page-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.page-title h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: left;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #b0d0ff;
    margin-top: 1rem;
    text-align: left;
}

/* Page Content Grid */
.page-content, .contact-content {
    padding: -1rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.content-left, .contact-left,
.content-right, .contact-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Info Cards */
.info-card, .contact-card, .social-card, .project-card, .status-card {
    background: rgba(5, 10, 20, 0.7);
    border: 1px solid rgba(0, 234, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover, .contact-card:hover {
    border-color: #00eaff;
    box-shadow: 0 0 30px rgba(0, 234, 255, 0.2);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 234, 255, 0.1);
}

.card-icon {
    color: #00eaff;
    font-size: 1.5rem;
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    font-size: 1.5rem;
}

.card-body {
    color: #c8f1ff;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00eaff, transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: #00eaff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00eaff;
}

.timeline-date {
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content h4 {
    color: #e0f7ff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 30, 60, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 234, 255, 0.1);
}

.spec-icon {
    color: #00eaff;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 234, 255, 0.1);
    border-radius: 8px;
}

.spec-content h4 {
    color: #e0f7ff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

/* Creator Profile */
.creator-profile {
    text-align: center;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.profile-info h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.profile-title {
    color: #b0d0ff;
    font-size: 1rem;
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(0, 30, 60, 0.3);
    border-radius: 10px;
}

.detail-item i {
    color: #00eaff;
}

.profile-bio {
    color: #c8f1ff;
    line-height: 1.6;
    font-style: italic;
}

/* Vision Content */
.vision-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-item h4 {
    color: #00eaff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #c8f1ff;
}

.values-list i {
    color: #00eaff;
}

/* Quote Section */
.quote-section {
    margin: 4rem 0;
}

.quote-card {
    background: rgba(0, 30, 60, 0.5);
    border: 1px solid rgba(0, 234, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(0, 234, 255, 0.2);
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 1.5rem;
    color: #e0f7ff;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-author {
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.quote-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

/* === SKILLS PAGE SPECIFIC === */
.skills-intro {
    margin-bottom: 3rem;
}

.intro-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 30, 60, 0.5);
    border: 1px solid rgba(0, 234, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: -50px;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 234, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00eaff;
}

.intro-content h3 {
    color: #00eaff;
    margin-bottom: 1.0rem;
    font-size: 1.8rem;
}

/* Skills Grid */
.skills-grid-section {
    margin: 3rem 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.skill-card {
    background: rgba(5, 10, 20, 0.7);
    border: 1px solid rgba(0, 234, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card:hover {
    border-color: #00eaff;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 234, 255, 0.2);
}

.skill-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 234, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00eaff;
    margin-bottom: 1.5rem;
    position: relative;
}

.skill-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.2) 0%, transparent 70%);
    filter: blur(10px);
    border-radius: 15px;
}

.skill-content h3 {
    color: #00eaff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.skill-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.skill-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #c8f1ff;
}

.skill-features i {
    color: #00eaff;
    font-size: 0.8rem;
}

.skill-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 234, 255, 0.1);
}

/* === SKILL PAGE SPECIFIC STATS === */
.skill-card .skill-stats {
    display: flex;
    justify-content: left;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    width: 99.9%;
    border-top: 1px solid rgba(0, 234, 255, 0.1);
    position: relative;
}

.skill-card .skill-stats:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00eaff, transparent);
    border-radius: 1px;
}

.skill-card .skill-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.8rem 1rem;
    background: rgba(0, 20, 40, 0.342);
    border-radius: 12px;
    border: 1px solid rgba(0, 234, 255, 0.2);
    min-width: 270px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.skill-card .skill-stats .stat:hover {
    background: rgba(0, 234, 255, 0.24);
    border-color: #00eaff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 234, 255, 0.2);
}

/* Value styling */
.skill-card .skill-stats .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00eaff;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
    line-height: 1;
}

/* Label styling */
.skill-card .skill-stats .stat-label {
    font-size: 0.75rem;
    color: #a0c8ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.9;
    top: -8px;
}

/* Corner accents for stats */
.skill-card .skill-stats .stat:before,
.skill-card .skill-stats .stat:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card .skill-stats .stat:before {
    top: 5px;
    left: 5px;
    border-top: 2px solid #00eaff;
    border-left: 2px solid #00eaff;
    border-top-left-radius: 3px;
}

.skill-card .skill-stats .stat:after {
    bottom: 5px;
    right: 5px;
    border-bottom: 2px solid #00eaff;
    border-right: 2px solid #00eaff;
    border-bottom-right-radius: 3px;
}

.skill-card .skill-stats .stat:hover:before,
.skill-card .skill-stats .stat:hover:after {
    opacity: 1;
}

.stats-card {
    background: rgba(5, 10, 20, 0.74);
    border: 1px solid rgba(0, 234, 255, 0.596);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.stats-card h3 {
    color: #00eaff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.performance-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.stat-circle svg {
    transform: rotate(-90deg);
}

.stat-bg {
    fill: none;
    stroke: rgba(0, 234, 255, 0.644);
    stroke-width: 15;
}

.stat-progress {
    stroke: #00eaff;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.stat-value {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #00eaff;
    font-weight: 700;
}

.stat-label {
    color: #a0c8ff;
    font-size: 1rem;
}

/* === CONTACT PAGE SPECIFIC === */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #a0c8ff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid rgba(0, 234, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: #e0f7ff;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00eaff;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check label {
    color: #c8f1ff;
    font-weight: normal;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, #00aaff, #0088ff);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 136, 255, 0.6);
}

/* Status Card */
.status-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status-header h4 {
    color: #00eaff;
}

.status-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(0, 30, 60, 0.3);
    border-radius: 10px;
}

.status-label {
    color: #a0c8ff;
}

.status-value {
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.status-bar {
    height: 6px;
    background: rgba(0, 234, 255, 0.1);
    border-radius: 3px;
    margin: 1rem 0;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00eaff, #0088ff);
    border-radius: 3px;
    animation: barFill 2s ease-in-out infinite alternate;
}

.status-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0c8ff;
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 234, 255, 0.1);
}

/* Developer Profile */
.developer-profile {
    text-align: center;
}

.profile-avatar {
    margin-bottom: 1.5rem;
}

.avatar-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000;
    margin: 0 auto;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    color: #ffd700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 30, 60, 0.3);
    border-radius: 10px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 234, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00eaff;
    font-size: 1.2rem;
}

.detail-content h4 {
    color: #e0f7ff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.status-active {
    color: #00ff64;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 30, 60, 0.3);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background: rgba(0, 234, 255, 0.1);
    border-color: #00eaff;
    transform: translateX(10px);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.facebook .social-icon { background: rgba(59, 89, 152, 0.2); color: #3b5998; }
.instagram .social-icon { background: rgba(225, 48, 108, 0.2); color: #e1306c; }
.github .social-icon { background: rgba(24, 23, 23, 0.2); color: #ffffff; }
.portfolio .social-icon { background: rgba(0, 234, 255, 0.2); color: #00eaff; }

.social-info h4 {
    color: #e0f7ff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.social-info p {
    color: #a0c8ff;
    font-size: 0.9rem;
}

.social-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff64;
    font-size: 0.8rem;
}

/* Project Info */
.project-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-item {
    padding: 1rem;
    background: rgba(0, 30, 60, 0.3);
    border-radius: 10px;
}

.project-item h4 {
    color: #00eaff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.project-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffaa00;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 170, 0, 0.2);
}

/* === RESPONSIVE FOR OTHER PAGES === */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 2.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .intro-card {
        flex-direction: column;
        text-align: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-details {
        grid-template-columns: 1fr;
    }
    
    .social-link {
        flex-direction: column;
        text-align: center;
    }
    
    .social-status {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
@keyframes barFill {
    0% { width: 85%; }
    100% { width: 90%; }
}

/* === VERSION PAGE SPECIFIC STYLES === */

/* Version Header */
.version-header {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(5, 10, 20, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(0, 234, 255, 0.2);
}

.timeline-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-progress {
    flex: 1;
    max-width: 400px;
    height: 4px;
    background: rgba(0, 234, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #ff5555, #00eaff);
    border-radius: 2px;
    animation: progressFill 2s ease-in-out infinite alternate;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.point-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
}

.v1-point .point-dot {
    background: #ff5555;
    box-shadow: 0 0 20px #ff5555;
}

.v2-point .point-dot {
    background: #00eaff;
    box-shadow: 0 0 20px #00eaff;
}

.point-label {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.v1-point .point-label {
    color: #ff5555;
}

.v2-point .point-label {
    color: #00eaff;
}

.point-date {
    font-size: 0.9rem;
    color: #a0c8ff;
    opacity: 0.8;
}

.evolution-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
}

.evolution-icon {
    animation: bounceRight 2s ease-in-out infinite;
}

/* Version Comparison */
.version-comparison {
    margin: 4rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.version-panel {
    background: rgba(5, 10, 20, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.v1-panel {
    border-color: rgba(255, 85, 85, 0.3);
}

.v2-panel {
    border-color: rgba(0, 234, 255, 0.3);
}

.version-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.v1-panel:hover {
    border-color: #ff5555;
    box-shadow: 0 20px 50px rgba(255, 85, 85, 0.2);
}

.v2-panel:hover {
    border-color: #00eaff;
    box-shadow: 0 20px 50px rgba(0, 234, 255, 0.2);
}

/* Version Header Card */
.version-header-card {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.version-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.v1-badge {
    background: linear-gradient(135deg, #ff5555, #ff0000);
}

.v2-badge {
    background: linear-gradient(135deg, #00eaff, #0088ff);
}

.badge-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 2;
}

.badge-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.7;
}

.v1-badge .badge-glow {
    background: rgba(255, 85, 85, 0.5);
}

.v2-badge .badge-glow {
    background: rgba(0, 234, 255, 0.5);
}

.version-title {
    flex: 1;
}

.version-title h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.version-subtitle {
    color: #a0c8ff;
    font-size: 1rem;
}

.version-status {
    flex-shrink: 0;
}

.status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status.deprecated {
    background: rgba(255, 85, 85, 0.2);
    color: #ff5555;
    border: 1px solid rgba(255, 85, 85, 0.5);
}

.status.active {
    background: rgba(0, 234, 255, 0.2);
    color: #00eaff;
    border: 1px solid rgba(0, 234, 255, 0.5);
}

/* Screenshot Container */
.screenshot-container {
    padding: 2rem;
    position: relative;
}

.screenshot-frame {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.v1-frame {
    border-color: rgba(255, 85, 85, 0.3);
}

.v2-frame {
    border-color: rgba(0, 234, 255, 0.3);
}

.frame-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.screenshot-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.v1-img {
    filter: grayscale(0.3) contrast(0.9);
}

.v2-img {
    filter: brightness(1.1) contrast(1.1);
}

.screenshot-frame:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.overlay-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
}

.v1-frame .overlay-text {
    color: #ff5555;
}

.v2-frame .overlay-text {
    color: #00eaff;
}

.screenshot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.1) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
    opacity: 0.5;
}

/* Fullscreen Modal Styles */
.screenshot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.screenshot-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

.modal-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 234, 255, 0.2);
    border: 1px solid rgba(0, 234, 255, 0.3);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #00eaff;
}

.modal-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
}

.v1-modal .modal-caption {
    color: #ff5555;
}

.v2-modal .modal-caption {
    color: #00eaff;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .screenshot-img {
        height: 200px;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .close-modal {
        top: -35px;
        font-size: 2rem;
    }
}

/* Features Section */
.features-section, .improvements-section, .modules-section, .limitations-section {
    padding: 0 2rem 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h3 {
    color: white;
    font-size: 1.3rem;
}

.section-header i {
    color: #00eaff;
}

.v1-panel .section-header i {
    color: #ff5555;
}

.features-list, .improvements-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item, .improvement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover, .improvement-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-icon, .improvement-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.v1-features .feature-icon {
    background: rgba(255, 85, 85, 0.1);
    color: #ff5555;
}

.improvement-item .improvement-icon {
    background: rgba(0, 234, 255, 0.1);
    color: #00eaff;
}

.feature-content h4, .improvement-content h4 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.feature-content p, .improvement-content p {
    color: #a0c8ff;
    font-size: 0.9rem;
}

/* Limitations */
.limitations-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.limitation-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 85, 85, 0.1);
    border-radius: 8px;
    color: #ff8888;
    font-size: 0.9rem;
}

.limitation-item i {
    color: #ff5555;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.module-card {
    background: rgba(0, 234, 255, 0.05);
    border: 1px solid rgba(0, 234, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.module-card:hover {
    background: rgba(0, 234, 255, 0.1);
    border-color: #00eaff;
    transform: translateY(-5px);
}

.module-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0, 234, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.module-content h4 {
    color: #00eaff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.module-content p {
    color: #c8f1ff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(0, 234, 255, 0.1);
    color: #00eaff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Orbitron', sans-serif;
}

/* Tech Specs */
.tech-specs {
    padding: 0 2rem 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.spec-item {
    background: rgba(0, 30, 60, 0.3);
    border: 1px solid rgba(0, 234, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.spec-label {
    color: #a0c8ff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.spec-value {
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Summary Cards */
.summary-card {
    margin: 2rem;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.v1-summary {
    background: linear-gradient(135deg, rgba(255, 85, 85, 0.1), rgba(255, 0, 0, 0.05));
    border: 1px solid rgba(255, 85, 85, 0.2);
}

.v2-summary {
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.1), rgba(0, 136, 255, 0.05));
    border: 1px solid rgba(0, 234, 255, 0.2);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-header i {
    font-size: 1.5rem;
}

.v1-summary .summary-header i {
    color: #ff5555;
}

.v2-summary .summary-header i {
    color: #00eaff;
}

.summary-header h3 {
    color: white;
    font-size: 1.5rem;
}

.summary-content p {
    color: #c8f1ff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* === VERSION SUMMARY STATS FIX === */

.summary-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    margin-top: 1rem;
}

.summary-stats .stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 0.5rem;
}

.summary-stats .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1;
    text-shadow: 0 0 8px currentColor;
}

.v1-summary .stat-value {
    color: #ff5555;
    text-shadow: 0 0 10px rgba(255, 85, 85, 0.5);
}

.v2-summary .stat-value {
    color: #00eaff;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

.summary-stats .stat-label {
    color: #a0c8ff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    top: -5px;
}

/* Add some visual effects */
.summary-stats .stat {
    position: relative;
    padding: 0.8rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.summary-stats .stat:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.v1-summary .summary-stats .stat:hover {
    background: rgba(255, 85, 85, 0.1);
    box-shadow: 0 5px 15px rgba(255, 85, 85, 0.2);
}

.v2-summary .summary-stats .stat:hover {
    background: rgba(0, 234, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 234, 255, 0.2);
}

/* Add decorative dots */
.summary-stats .stat:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.5;
}

.v1-summary .summary-stats .stat:before {
    background: #ff5555;
    box-shadow: 0 0 8px #ff5555;
}

.v2-summary .summary-stats .stat:before {
    background: #00eaff;
    box-shadow: 0 0 8px #00eaff;
}

/* Make stats responsive */
@media (max-width: 768px) {
    .summary-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .summary-stats .stat {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-width: auto;
        padding: 0.8rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .summary-stats .stat-value {
        font-size: 1.3rem;
        margin-bottom: 0;
    }
    
    .summary-stats .stat-label {
        font-size: 0.85rem;
    }
    
    .summary-stats .stat:before {
        display: none;
    }
}

/* Alternative: If you want the stats to be more card-like */
.summary-card .summary-stats {
    background: rgba(0, 20, 40, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Evolution Stats */
.evolution-stats {
    margin: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.evolution-stat {
    text-align: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-circle:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #00eaff 0%,
        #0088ff 25%,
        #0055ff 50%,
        #0088ff 75%,
        #00eaff 100%
    );
    animation: rotate 4s linear infinite;
    filter: blur(10px);
    opacity: 0.5;
}

.stat-circle:after {
    content: '';
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: rgba(5, 10, 20, 0.9);
    border-radius: 50%;
}

.circle-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00eaff;
    position: relative;
    z-index: 2;
}

.stat-label {
    color: #a0c8ff;
    font-size: 1rem;
}

/* Roadmap */
.roadmap-section {
    margin: 4rem 0;
}

.roadmap-timeline {
    padding: 2rem;
    position: relative;
}

.roadmap-timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00eaff, transparent);
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 40px;
}

.roadmap-item:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00eaff;
    box-shadow: 0 0 10px #00eaff;
}

.roadmap-date {
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 80px;
}

.roadmap-content {
    background: rgba(0, 30, 60, 0.3);
    border: 1px solid rgba(0, 234, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    flex: 1;
}

.roadmap-content h4 {
    color: #00eaff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.roadmap-content p {
    color: #c8f1ff;
    line-height: 1.5;
}

.roadmap-item.future {
    opacity: 0.7;
}

.roadmap-item.future:before {
    background: rgba(0, 234, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

.roadmap-item.future .roadmap-date {
    color: rgba(0, 234, 255, 0.7);
}

/* Responsive Design for Version Page */
@media (max-width: 1200px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .version-header-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-progress {
        width: 4px;
        height: 100px;
        max-width: none;
    }
    
    .progress-bar {
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, #ff5555, #00eaff);
    }
    
    .limitations-list {
        grid-template-columns: 1fr;
    }
    
    .features-list, .improvements-grid {
        gap: 0.8rem;
    }
    
    .feature-item, .improvement-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .feature-icon, .improvement-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .summary-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-item {
        flex-direction: column;
        padding-left: 30px;
    }
    
    .roadmap-date {
        min-width: auto;
    }
}

/* Animations */
@keyframes progressFill {
    0% { width: 100%; }
    100% { width: 95%; }
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === IRON MAN ARC REACTOR MOUSE CURSOR === */

/* IMPORTANT: Hide default cursor on entire page */
* {
    cursor: none !important;
}

/* But show default cursor on inputs and text areas for usability */
input, textarea, [contenteditable="true"] {
    cursor: text !important;
}

/* Main cursor container */
.arc-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.arc-cursor.active {
    opacity: 1;
}

/* Reactor Core */
.cursor-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        #00eaff 0%,
        #00aaff 50%,
        transparent 70%
    );
    box-shadow: 
        0 0 25px #00eaff,
        0 0 50px rgba(0, 234, 255, 0.5),
        inset 0 0 15px #ffffff;
    animation: cursorCorePulse 2s ease-in-out infinite;
    z-index: 3;
}

/* Rotating Rings */
.cursor-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid transparent;
    transform: translate(-50%, -50%);
}

.cursor-ring.ring-1 {
    width: 40px;
    height: 40px;
    border-color: #00eaff;
    border-top-color: transparent;
    animation: cursorRingRotate 3s linear infinite;
    box-shadow: 
        0 0 20px #00eaff,
        inset 0 0 15px rgba(0, 234, 255, 0.3);
}

.cursor-ring.ring-2 {
    width: 52px;
    height: 52px;
    border-color: #00aaff;
    border-right-color: transparent;
    animation: cursorRingRotate 4s linear infinite reverse;
    box-shadow: 
        0 0 15px #00aaff,
        inset 0 0 10px rgba(0, 170, 255, 0.2);
}

.cursor-ring.ring-3 {
    width: 64px;
    height: 64px;
    border-color: #0088ff;
    border-bottom-color: transparent;
    animation: cursorRingRotate 5s linear infinite;
    box-shadow: 
        0 0 10px #0088ff,
        inset 0 0 5px rgba(0, 136, 255, 0.1);
}

/* Glow effect */
.cursor-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(
        circle,
        rgba(0, 234, 255, 0.2) 0%,
        rgba(0, 170, 255, 0.1) 30%,
        rgba(0, 136, 255, 0.05) 60%,
        transparent 80%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(15px);
    animation: cursorGlowPulse 3s ease-in-out infinite alternate;
    z-index: 1;
}

/* Mouse trail */
.cursor-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(
        circle,
        rgba(0, 234, 255, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(5px);
    animation: cursorTrailFade 0.5s ease-out forwards;
    z-index: 0;
}

/* Hover effects for interactive elements */
a:hover ~ .arc-cursor,
button:hover ~ .arc-cursor,
.nav-link:hover ~ .arc-cursor,
.jarvis-loader:hover ~ .arc-cursor {
    transform: translate(-50%, -50%) scale(1.3);
}

a:hover ~ .arc-cursor .cursor-core,
button:hover ~ .arc-cursor .cursor-core {
    background: radial-gradient(
        circle,
        #ff5500 0%,
        #ff3300 50%,
        transparent 70%
    );
    box-shadow: 
        0 0 30px #ff5500,
        0 0 60px rgba(255, 85, 0, 0.5),
        inset 0 0 20px #ffffff;
    animation: cursorCorePulse 0.5s ease-in-out infinite;
}

/* Click effect */
.arc-cursor.click-effect {
    animation: cursorClick 0.3s ease-out;
}

.arc-cursor.click-effect .cursor-core {
    animation: cursorCoreClick 0.3s ease-out;
}

/* Loading state */
.arc-cursor.loading .cursor-ring.ring-1 {
    animation: cursorRingRotate 1s linear infinite;
}

.arc-cursor.loading .cursor-ring.ring-2 {
    animation: cursorRingRotate 0.8s linear infinite reverse;
}

.arc-cursor.loading .cursor-ring.ring-3 {
    animation: cursorRingRotate 0.6s linear infinite;
}

/* Animations */
@keyframes cursorCorePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes cursorRingRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes cursorParticleOrbit {
    0% {
        transform: rotate(0deg) translateX(32px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(32px) rotate(-360deg);
    }
}

@keyframes cursorGlowPulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes cursorTrailFade {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes cursorClick {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes cursorCoreClick {
    0%, 100% {
        background: radial-gradient(
            circle,
            #00eaff 0%,
            #00aaff 50%,
            transparent 70%
        );
    }
    50% {
        background: radial-gradient(
            circle,
            #ff3300 0%,
            #ff5500 50%,
            transparent 70%
        );
    }
}

/* === CURSOR TOGGLE BUTTON === */

.cursor-control {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.cursor-toggle-btn {
    background: rgba(0, 234, 255, 0.1);
    border: 1px solid rgba(0, 234, 255, 0.3);
    color: #00eaff;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cursor-toggle-btn:hover {
    background: rgba(0, 234, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 234, 255, 0.2);
}

.cursor-toggle-btn:active {
    transform: translateY(0);
}

.cursor-toggle-btn .fa-mouse-pointer {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cursor-toggle-btn:hover .fa-mouse-pointer {
    transform: scale(1.2);
}

.cursor-status {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* When cursor is disabled */
.cursor-toggle-btn.disabled {
    background: rgba(255, 85, 85, 0.1);
    border-color: rgba(255, 85, 85, 0.3);
    color: #ff5555;
}

.cursor-toggle-btn.disabled:hover {
    background: rgba(255, 85, 85, 0.2);
    box-shadow: 0 5px 15px rgba(255, 85, 85, 0.2);
}

.cursor-toggle-btn.disabled .fa-mouse-pointer {
    transform: rotate(45deg);
}

/* Pulse animation for active cursor */
@keyframes cursorPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 234, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 234, 255, 0.8);
    }
}

.cursor-toggle-btn:not(.disabled) {
    animation: cursorPulse 2s infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    .cursor-control {
        margin-right: 10px;
    }
    
    .cursor-toggle-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .cursor-status {
        display: none;
    }
    
    .cursor-toggle-btn .fa-mouse-pointer {
        font-size: 1.1rem;
    }
}

/* === CURSOR STATES === */

/* When cursor is disabled, show default cursor */
body.cursor-default * {
    cursor: default !important;
}

body.cursor-default input,
body.cursor-default textarea,
body.cursor-default [contenteditable="true"] {
    cursor: text !important;
}

/* Smooth transition for cursor changes */
* {
    transition: cursor 0.3s ease;
}

/* Ensure toggle button is visible */
.cursor-toggle-btn {
    z-index: 1000000;
}

/* === CURSOR CONTROL FIX === */

/* IMPORTANT: Only hide cursor when arc cursor is active */
body.arc-cursor-active * {
    cursor: none !important;
}

/* Show default cursor when arc cursor is inactive */
body:not(.arc-cursor-active) * {
    cursor: auto !important;
}

/* Always show text cursor on inputs */
input, textarea, [contenteditable="true"] {
    cursor: text !important;
}

/* Make sure toggle button is clickable */
.cursor-toggle-btn {
    cursor: pointer !important;
    z-index: 1000000;
}

/* Arc cursor container */
.arc-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
    display: none; /* Start hidden */
}

.arc-cursor.active {
    opacity: 1;
    display: block;
}

/* Ensure default cursor shows when arc cursor is hidden */
.arc-cursor:not(.active) {
    display: none;
}

/* Mobile responsive - show default cursor on mobile */
@media (max-width: 768px), (hover: none) {
    * {
        cursor: default !important;
    }
    
    .arc-cursor {
        display: none !important;
    }
}

/* ============================
   JARVIS VOICE ALERT (RIGHT)
============================ */
#jarvis-voice-alert {
    position: fixed;
    top: 120px;
    right: -320px;
    z-index: 99999;
    pointer-events: none;
    transition: right 0.8s ease, opacity 0.8s ease;
    opacity: 0;
}

/* SHOW STATE */
#jarvis-voice-alert.active {
    right: 30px;
    opacity: 1;
}

/* ALERT CORE */
.jarvis-alert-core {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border-radius: 50px;
    background: linear-gradient(145deg, rgba(0,255,234,0.15), rgba(0,80,90,0.95));
    border: 1px solid rgba(0,255,234,0.6);
    box-shadow:
        0 0 25px rgba(0,255,234,0.6),
        inset 0 0 15px rgba(0,255,234,0.2);
    backdrop-filter: blur(10px);
}

/* GLOW DOT */
.jarvis-alert-dot {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulseDot 1.5s infinite;
}

/* TEXT */
.jarvis-alert-core span {
    color: #eaffff;
    font-family: "Courier New", monospace;
    font-size: 13px;
    letter-spacing: 2px;
}

/* DOT PULSE */
@keyframes pulseDot {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* MOBILE */
@media (max-width: 768px) {
    #jarvis-voice-alert.active {
        right: 16px;
        top: 60px;
    }
}

/* =========================================
   JARVIS 2026 – NEXT GEN RELEASE MODULE
========================================= */

.jarvis-2026-section {
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0,255,234,.08), transparent 65%);
}

/* MAIN BOX */
.jarvis-2026-box {
    position: relative;
    width: min(1000px, 95%);
    height: 360px;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(5,16,22,.98), rgba(0,6,10,1));
    border: 2px solid rgba(0,255,234,.45);
    box-shadow:
        0 0 90px rgba(0,255,234,.35),
        inset 0 0 50px rgba(0,255,234,.15);
    overflow: hidden;
}

/* BIG 2026 BACKGROUND */
.jarvis-2026-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Orbitron", "Courier New", monospace;
    font-size: 220px;
    font-weight: 900;
    letter-spacing: 18px;
    color: rgba(0,255,234,.08);
    animation: pulse2026 4s infinite alternate;
    user-select: none;
}

@keyframes pulse2026 {
    from { opacity: .15; transform: scale(1); }
    to   { opacity: .60; transform: scale(1.15); }
}

/* CONTENT */
.jarvis-2026-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Base Styles - Mobile First */
.jarvis-2026-next-gen-ai {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-align: center;
    margin: 0;
    padding: 20px;
    background: linear-gradient(45deg, #000000 30%, #0a0a2a 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: #cccccc;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    overflow: hidden;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .jarvis-2026-next-gen-ai {
        font-size: 4rem;
        letter-spacing: 4px;
        padding: 40px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .jarvis-2026-next-gen-ai {
        font-size: 5rem;
        letter-spacing: 6px;
    }
}

/* Glitch Animation */
@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes glitchSkew {
    0% {
        transform: skew(0deg);
    }
    10% {
        transform: skew(2deg);
    }
    20% {
        transform: skew(-2deg);
    }
    30% {
        transform: skew(1deg);
    }
    40% {
        transform: skew(-1deg);
    }
    50% {
        transform: skew(0deg);
    }
    100% {
        transform: skew(0deg);
    }
}

@keyframes glitchClip {
    0% {
        clip-path: inset(0 0 0 0);
    }
    5% {
        clip-path: inset(15% 0 30% 0);
    }
    10% {
        clip-path: inset(30% 0 15% 0);
    }
    15% {
        clip-path: inset(10% 0 40% 0);
    }
    20% {
        clip-path: inset(40% 0 10% 0);
    }
    25% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    2%, 4%, 6%, 8%, 10%, 12%, 14%, 16%, 18%, 20% {
        opacity: 0.8;
    }
    1%, 3%, 5%, 7%, 9%, 11%, 13%, 15%, 17%, 19% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    75% {
        opacity: 0.9;
    }
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

@keyframes hueShift {
    0% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(90deg);
    }
    100% {
        filter: hue-rotate(0deg);
    }
}

/* Glitch Layers */
.jarvis-2026-next-gen-ai::before,
.jarvis-2026-next-gen-ai::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.8;
}

.jarvis-2026-next-gen-ai::before {
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate,
               glitchClip 5s infinite linear,
               flicker 2s infinite;
    color: #ff00ff;
    text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    z-index: -1;
}

.jarvis-2026-next-gen-ai::after {
    animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate-reverse,
               glitchSkew 4s infinite,
               flicker 3s infinite;
    color: #00ffff;
    text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    z-index: -2;
}

/* Main Text Animation */
.jarvis-2026-next-gen-ai {
    animation: glitch 0.5s ease-in-out infinite alternate,
               flicker 4s infinite,
               hueShift 20s infinite linear;
}

/* Scan Line Effect */
.jarvis-2026-next-gen-ai {
    position: relative;
}

.jarvis-2026-next-gen-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: scanline 10s linear infinite;
    z-index: 10;
    opacity: 0.5;
}

/* Data Attribute for Text */
.jarvis-2026-next-gen-ai[data-text]::before,
.jarvis-2026-next-gen-ai[data-text]::after {
    content: attr(data-text);
}

/* Mobile Optimization */
@media (max-width: 767px) {
    .jarvis-2026-next-gen-ai {
        animation: glitch 0.8s ease-in-out infinite alternate,
                   flicker 5s infinite,
                   hueShift 25s infinite linear;
    }
    
    .jarvis-2026-next-gen-ai::before {
        animation: glitch 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate,
                   glitchClip 6s infinite linear,
                   flicker 3s infinite;
    }
    
    .jarvis-2026-next-gen-ai::after {
        animation: glitch 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate-reverse,
                   glitchSkew 5s infinite,
                   flicker 4s infinite;
    }
}

/* Reduce Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .jarvis-2026-next-gen-ai,
    .jarvis-2026-next-gen-ai::before,
    .jarvis-2026-next-gen-ai::after {
        animation: none !important;
        opacity: 1;
    }
    
    .jarvis-2026-next-gen-ai {
        background: linear-gradient(45deg, #000000 30%, #0a0a2a 70%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    }
}

/* Performance Optimization */
.jarvis-2026-next-gen-ai {
    will-change: transform, opacity, filter;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .jarvis-2026-next-gen-ai {
        background: linear-gradient(45deg, #ffffff 30%, #a0a0ff 70%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

/* TITLE */
.jarvis-title {
    font-family: "Orbitron", "Courier New", monospace;
    font-size: 42px;
    letter-spacing: 6px;
    color: #00ffea;
    text-shadow: 0 0 30px rgba(0,255,234,.9);
    margin-bottom: 10px;
}

.jarvis-coming-soon {
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 2px;
    margin-top: -6px;
    margin-bottom: 24px;
    background: #03101863;
    padding: 4px 12px;
    border: 1px solid #ffffffaa;
    border-radius: 12px;
    width: fit-content;
}

/* SUBTITLE */
.jarvis-subtitle {
    font-family: "Courier New", monospace;
    color: #66fffa;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 26px;
}

/* DESCRIPTION */
.jarvis-desc {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.7;
    color: #eaffffb2;
    margin-bottom: 28px;
}

/* STATUS */
.jarvis-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Courier New", monospace;
    letter-spacing: 2px;
    color: #00ff88;
    font-size: 14px;
}

/* STATUS DOT */
.status-dot {
    width: 14px;
    height: 14px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff88;
    animation: statusPulse 1.4s infinite;
}

@keyframes statusPulse {
    50% { opacity: .4; }
}

/* HUD SCAN LINE – FIXED LEFT TO RIGHT */
.jarvis-2026-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 234, 0.05) 40%,
        rgba(0, 255, 234, 0.35) 50%,
        rgba(0, 255, 234, 0.05) 60%,
        transparent 100%
    );

    animation: jarvisScan 4.5s linear infinite;
    pointer-events: none;
}

/* Scan animation */
@keyframes jarvisScan {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(220%);
    }
}


@keyframes scanLine {
    to { transform: translateX(100%); }
}



/* MOBILE */
@media (max-width: 768px) {
    .jarvis-2026-box {
        height: auto;
    }

    .jarvis-2026-bg {
        font-size: 90px;
        letter-spacing: 10px;
    }

    .jarvis-2026-content {
        padding: 40px 26px;
    }

    .jarvis-title {
        font-size: 30px;
    }
}

