/* 
====================================================================
   ALPHA DESIGN SYSTEM - SUPREME EDITION (v3.0)
   "The Future is Now"
==================================================================== 
*/

:root {
    /* Core Colors */
    --alpha-dark-bg: #050a14;
    --alpha-panel: #0a1020;
    --alpha-blue: #00f3ff;
    --alpha-purple: #bc13fe;
    --alpha-gold: #ffd700;
    --alpha-border: rgba(255, 255, 255, 0.1);
    
    /* Gradients */
    --grad-cyber: linear-gradient(135deg, var(--alpha-blue), var(--alpha-purple));
    --grad-dark: linear-gradient(180deg, var(--alpha-dark-bg), #000);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    
    /* Effects */
    --glow-blue: 0 0 20px rgba(0, 243, 255, 0.5);
    --glow-purple: 0 0 20px rgba(188, 19, 254, 0.5);
    --glass-blur: blur(20px);
}

/* =========================================
   BASE & TYPOGRAPHY
   ========================================= */
body {
    background-color: var(--alpha-dark-bg) !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    letter-spacing: 1px;
}

p {
    color: #a0a0a0;
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--alpha-dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--alpha-blue);
    border-radius: 4px;
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Buttons */
.alpha-btn {
    position: relative;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--alpha-blue);
    color: var(--alpha-blue);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.alpha-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--alpha-blue);
    transition: all 0.4s ease;
    z-index: -1;
}

.alpha-btn:hover {
    color: #000;
    box-shadow: var(--glow-blue);
}

.alpha-btn:hover::before {
    left: 0;
}

.alpha-btn-glow {
    position: absolute;
    width: 20px;
    height: 100%;
    top: 0;
    left: -40px;
    background: rgba(255,255,255,0.5);
    transform: skewX(-20deg);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% { left: -40px; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* Cards */
.alpha-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--alpha-border);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: var(--glass-blur);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.alpha-card:hover {
    border-color: var(--alpha-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =========================================
   LAYOUT & SECTIONS
   ========================================= */
.alpha-hero {
    position: relative;
    padding: 150px 0 100px;
    background: radial-gradient(circle at center, #0a1525 0%, #050a14 100%);
}

.alpha-cyber-grid {
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 500px;
    transform-style: preserve-3d;
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float 10s infinite ease-in-out;
}
.orb-1 { width: 300px; height: 300px; background: var(--alpha-blue); opacity: 0.2; }
.orb-2 { width: 200px; height: 200px; background: var(--alpha-purple); opacity: 0.2; }

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

/* =========================================
   NAVIGATION (Mobile & Glass Header)
   ========================================= */
.alpha-glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    padding: 15px 0;
}

.alpha-glass-header.scrolled {
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--alpha-border);
    padding: 10px 0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.alpha-nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.alpha-nav-link:hover, .alpha-nav-link.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.alpha-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-cyber);
    transition: width 0.3s;
}

.alpha-nav-link:hover::after {
    width: 100%;
}

/* Mobile Overlay */
.alpha-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.alpha-mobile-nav {
    list-style: none;
    padding: 0;
    text-align: center;
}

.alpha-mobile-nav li {
    margin: 20px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.alpha-mobile-overlay.active .alpha-mobile-nav li {
    transform: translateY(0);
    opacity: 1;
}

.alpha-mobile-overlay.active .alpha-mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
.alpha-mobile-overlay.active .alpha-mobile-nav li:nth-child(2) { transition-delay: 0.2s; }
.alpha-mobile-overlay.active .alpha-mobile-nav li:nth-child(3) { transition-delay: 0.3s; }
.alpha-mobile-overlay.active .alpha-mobile-nav li:nth-child(4) { transition-delay: 0.4s; }
.alpha-mobile-overlay.active .alpha-mobile-nav li:nth-child(5) { transition-delay: 0.5s; }

.alpha-mobile-nav a {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.alpha-mobile-nav a:hover {
    color: var(--alpha-blue);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* =========================================
   LIGHTBOX (Portfolio)
   ========================================= */
.alpha-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.alpha-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.alpha-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border: 2px solid var(--alpha-blue);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    border-radius: 5px;
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
}

.lightbox-caption h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-lightbox:hover {
    transform: rotate(90deg);
    color: var(--alpha-blue);
}

/* =========================================
   UTILITIES & EXTRAS
   ========================================= */
.text-gradient-cyber {
    background: var(--grad-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--grad-cyber);
    z-index: 10001;
    width: 0%;
    transition: width 0.1s;
}

/* Helper for images */
.object-fit-cover {
    object-fit: cover;
}

/* Typography Utilities */
.font-sora { font-family: 'Sora', sans-serif !important; }
.font-orbitron { font-family: 'Orbitron', sans-serif !important; }
.font-inter { font-family: 'Inter', sans-serif !important; }

/* Extra Utility Classes */
.pointer-events-none { pointer-events: none !important; }
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alpha-border-gradient {
    position: relative;
    border: double 1px transparent;
    border-radius: 15px;
    background-image: linear-gradient(var(--alpha-dark-bg), var(--alpha-dark-bg)), var(--grad-cyber);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.text-white-50 { color: rgba(255, 255, 255, 0.5) !important; }
.min-vh-50 { min-height: 50vh; }
.min-vh-100 { min-height: 100vh; }
.letter-spacing-2 { letter-spacing: 2px; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }

/* Pulse Animation */
.pulse-animation {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

/* =========================================
   HOLOGRAPHIC MARKETPLACE ORBIT
   ========================================= */
.alpha-orbit-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    overflow: hidden;
}

.orbit-core {
    position: relative;
    width: 120px;
    height: 120px;
    background: rgba(5, 10, 20, 0.8);
    border: 1px solid var(--alpha-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.orbit-core::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--alpha-blue);
    opacity: 0.5;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.orbit-ring {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.ring-1 { width: 280px; height: 280px; animation: rotate-right 20s linear infinite; }
.ring-2 { width: 420px; height: 420px; animation: rotate-left 30s linear infinite; }

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
}

.planet-card {
    position: absolute;
    transform: translate(-50%, -50%);
    background: rgba(10, 16, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
}

/* =========================================
   UTILITIES & HELPERS
   ========================================= */
.hover-text-cyber {
    transition: all 0.3s ease;
}

.hover-text-cyber:hover {
    color: var(--alpha-blue) !important;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    padding-left: 5px;
}

/* Ensure footer links are white by default if not using text-white class */
.alpha-footer-cyber a {
    color: #fff;
    text-decoration: none;
}
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.planet-card:hover {
    border-color: var(--alpha-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    background: rgba(0, 243, 255, 0.1);
}

/* Positioning items on rings */
/* Ring 1 items */
.pos-1 { transform: rotate(0deg) translate(140px) rotate(0deg); }
.pos-2 { transform: rotate(120deg) translate(140px) rotate(-120deg); }
.pos-3 { transform: rotate(240deg) translate(140px) rotate(-240deg); }

/* Ring 2 items */
.pos-4 { transform: rotate(45deg) translate(210px) rotate(-45deg); }
.pos-5 { transform: rotate(135deg) translate(210px) rotate(-135deg); }
.pos-6 { transform: rotate(225deg) translate(210px) rotate(-225deg); }
.pos-7 { transform: rotate(315deg) translate(210px) rotate(-315deg); }

/* Counter-rotation for text readability inside rotating rings */
.ring-1 .planet-card { animation: counter-rotate-right 20s linear infinite; }
.ring-2 .planet-card { animation: counter-rotate-left 30s linear infinite; }

@keyframes rotate-right { 100% { transform: rotate(360deg); } }
@keyframes rotate-left { 100% { transform: rotate(-360deg); } }

@keyframes counter-rotate-right { 100% { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes counter-rotate-left { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

/* Logo Colors */
.brand-ml { color: #ffe600; }
.brand-amz { color: #ff9900; }
.brand-mag { color: #0086ff; }
.brand-shp { color: #ee4d2d; }
.brand-she { color: #ffffff; }

/* =========================================
   ACCORDION & DARK GLASS FIXES
   ========================================= */

/* Dark Glass Variant */
.bg-glass-dark {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px);
}

/* Bootstrap Accordion Overrides for Alpha Theme */
.accordion-item {
    background: transparent !important;
    border: none !important;
    margin-bottom: 1rem;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 243, 255, 0.1) !important;
    color: var(--alpha-blue) !important;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15) !important;
    border-color: var(--alpha-blue) !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* =========================================
   VISUAL UPGRADES (Rim Light, Neon, Glitch)
   ========================================= */

/* Rim Light Effect for Images/Containers */
.rim-light {
    position: relative;
    overflow: hidden;
}

.rim-light::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 20px rgba(0, 243, 255, 0.3), 
                inset 0 0 5px rgba(255, 255, 255, 0.5);
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.rim-light:hover::after {
    opacity: 1;
    box-shadow: inset 0 0 30px rgba(0, 243, 255, 0.5), 
                inset 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Neon Text Glow */
.text-neon {
    color: #fff;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(0, 243, 255, 0.5),
        0 0 40px rgba(0, 243, 255, 0.3);
}

/* Enhanced Glass Card Hover */
.glass-card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card-hover:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(0, 243, 255, 0.2);
    border-color: var(--alpha-blue);
}

/* Glitch Effect Implementation */
.alpha-glitch {
    position: relative;
}

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

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

.alpha-glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(30px, 9999px, 10px, 0); }
    5% { clip: rect(70px, 9999px, 90px, 0); }
    10% { clip: rect(10px, 9999px, 80px, 0); }
    15% { clip: rect(50px, 9999px, 20px, 0); }
    20% { clip: rect(20px, 9999px, 60px, 0); }
    25% { clip: rect(90px, 9999px, 10px, 0); }
    30% { clip: rect(10px, 9999px, 40px, 0); }
    35% { clip: rect(60px, 9999px, 80px, 0); }
    40% { clip: rect(30px, 9999px, 20px, 0); }
    45% { clip: rect(80px, 9999px, 50px, 0); }
    50% { clip: rect(40px, 9999px, 90px, 0); }
    100% { clip: rect(50px, 9999px, 20px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(10px, 9999px, 80px, 0); }
    5% { clip: rect(30px, 9999px, 10px, 0); }
    10% { clip: rect(90px, 9999px, 20px, 0); }
    15% { clip: rect(50px, 9999px, 60px, 0); }
    20% { clip: rect(20px, 9999px, 10px, 0); }
    25% { clip: rect(60px, 9999px, 90px, 0); }
    30% { clip: rect(80px, 9999px, 50px, 0); }
    35% { clip: rect(40px, 9999px, 20px, 0); }
    40% { clip: rect(70px, 9999px, 80px, 0); }
    45% { clip: rect(10px, 9999px, 40px, 0); }
    50% { clip: rect(50px, 9999px, 90px, 0); }
    100% { clip: rect(10px, 9999px, 40px, 0); }
}

/* Holographic Card Style */
.alpha-holo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.alpha-holo-card:hover {
    transform: translateY(-10px);
    border-color: var(--alpha-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                inset 0 0 20px rgba(0, 243, 255, 0.1);
}

.alpha-holo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.alpha-holo-card:hover::before {
    left: 100%;
}

/* =========================================
   CYBER TECH FRAME (Contact Section)
   ========================================= */
.alpha-tech-frame {
    position: relative;
    border: 1px solid rgba(0, 243, 255, 0.3);
    background: rgba(5, 10, 20, 0.6);
    backdrop-filter: blur(10px);
    clip-path: polygon(
        20px 0, 
        100% 0, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        0 100%, 
        0 20px
    );
    overflow: hidden;
    transition: all 0.3s ease;
}

.alpha-tech-frame:hover {
    border-color: var(--alpha-blue);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.alpha-tech-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0,243,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(0,243,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}

.alpha-tech-frame::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
    z-index: 2;
    pointer-events: none;
}

.tech-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) sepia(100%) hue-rotate(170deg) saturate(200%) brightness(0.5) contrast(1.2);
    transition: all 0.5s ease;
    transform: scale(1.05);
}

.alpha-tech-frame:hover .tech-image {
    filter: grayscale(0%) sepia(20%) hue-rotate(170deg) saturate(150%) brightness(0.8) contrast(1.1);
    transform: scale(1);
}

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 243, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
}

/* =========================================
   DIGITAL DNA VISUAL (Manifesto Section)
   ========================================= */
.digital-dna-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.dna-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(transparent 90%, rgba(0, 243, 255, 0.1) 90%),
        linear-gradient(90deg, transparent 90%, rgba(188, 19, 254, 0.1) 90%);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(1000px) translateZ(-200px); }
}

.code-stream {
    position: absolute;
    top: 0;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    color: var(--alpha-blue);
    opacity: 0.5;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    animation: stream-fall linear infinite;
}

.stream-1 { left: 10%; animation-duration: 5s; opacity: 0.3; }
.stream-2 { left: 30%; animation-duration: 7s; opacity: 0.5; font-size: 12px; color: var(--alpha-purple); }
.stream-3 { left: 60%; animation-duration: 4s; opacity: 0.4; }
.stream-4 { left: 80%; animation-duration: 6s; opacity: 0.6; font-size: 16px; }

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

.cyber-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.1);
}

.cyber-circle::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(188, 19, 254, 0.3);
    animation: rotate-right 20s linear infinite;
}

.cyber-circle::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
}

.cyber-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    z-index: 10;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.8);
}

.cyber-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.5));
}

/* =========================================
   PREMIUM FORMS
   ========================================= */
.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(0, 243, 255, 0.05) !important;
    border-color: var(--alpha-blue) !important;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2) !important;
    color: #fff !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.form-control option {
    background-color: #050a14;
    color: white;
    padding: 10px;
}

.form-label {
    color: var(--alpha-blue);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: var(--alpha-blue) !important;
}

/* Utilities from pages */
.bg-white-5 { background-color: rgba(255,255,255,0.05) !important; }
.border-white-10 { border-color: rgba(255,255,255,0.1) !important; }
.w-fit { width: fit-content; }

.hover-bg-cyber:hover { 
    background: var(--alpha-blue) !important; 
    color: black !important; 
    border-color: var(--alpha-blue) !important; 
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.accordion-button::after {
    filter: invert(1) brightness(2); /* Make arrow white */
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: drop-shadow(0 0 5px var(--alpha-blue)); 
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300f3ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    background: rgba(0, 0, 0, 0.4) !important;
    color: #ccc !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: none !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}
