/* Global Reset Overrides */
:root {
    --primary: #6366f1; /* Indigo 500 */
    --accent: #06b6d4;  /* Cyan 500 */
    --primary-glow: rgba(99, 102, 241, 0.5);
}

/* Custom Utilities */
.glass-panel {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.tech-glow {
    box-shadow: 0 0 40px var(--primary-glow);
}

.text-glow {
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.6), 0 0 10px rgba(255, 255, 255, 0.4);
}

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

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Reactor Core Animations */
@keyframes aura-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes aura-reverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes pulse-glow { 0% { opacity: 0.5; box-shadow: 0 0 20px var(--primary-glow); } 50% { opacity: 1; box-shadow: 0 0 40px var(--primary-glow); } 100% { opacity: 0.5; box-shadow: 0 0 20px var(--primary-glow); } }

.animate-spin-slow {
    animation: aura-rotate 60s linear infinite;
}

.animate-spin-reverse-slow {
    animation: aura-reverse 45s linear infinite;
}

/* === AUTOMYX REACTOR STYLES (Reference Image Adaptation) === */

/* 1. Main Title Glow */
.indigo-text-glow {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.6), 0 0 50px rgba(99, 102, 241, 0.3);
}

/* 2. Text Ring Styles */
.ring-text-indigo {
    fill: #6366f1; /* Indigo */
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.8px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.8);
    opacity: 0.9;
}

/* 3. Outer Ring (Faint) */
.ring-indigo-outer {
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.05);
}

/* 4. Segmented Glowing Ring (The "Tech" part) */
.ring-indigo-segment {
    border: 3px solid transparent;
    border-top-color: #6366f1; /* Indigo */
    border-right-color: rgba(6, 182, 212, 0.5); /* Cyan fade */
    border-radius: 50%;
    filter: drop-shadow(0 0 10px #6366f1);
}

/* 5. Inner Dashed Ring */
.ring-indigo-dashed {
    border: 1px dashed rgba(6, 182, 212, 0.3); /* Cyan dashed */
    border-radius: 50%;
}

/* 6. Text Separator Lines */
.separator-indigo {
    height: 2px;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
    width: 80px;
    border-radius: 2px;
}