/* Palette principale TECHSOLUT */
:root {
    /* Couleurs principales */
    --techsolut-gradient-start: #00C9FF;
    --techsolut-gradient-end: #92FE9D;
    --techsolut-dark-blue: #0A1F44;
    --techsolut-green: #92FE9D;
    --techsolut-light-gray: #F5F5F5;
    --techsolut-white: #FFFFFF;
    --techsolut-text-gray: #A0AEC0;
    --techsolut-alert-red: #FF4B4B;
    
    /* Theme colors */
    --theme-dark-start: #002C64;
    --theme-dark-end: #144696;
    --theme-light-start: #64B4FF;
    --theme-light-end: #DCEFFF;
    
    /* Dégradés */
    --techsolut-gradient: linear-gradient(120deg, var(--techsolut-gradient-start), var(--techsolut-gradient-end));
}

/* Styles généraux */
body {
    color: var(--techsolut-dark-blue);
    background-color: var(--techsolut-light-gray);
}

/* Headers, navigation et sidebars */
.navbar-dark, .sidebar, .bg-dark {
    background-color: var(--techsolut-dark-blue) !important;
}

/* Éléments d'interface */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: var(--techsolut-gradient);
    color: var(--techsolut-dark-blue);
    font-weight: 600;
    border: none;
}

/* Boutons */
.btn-primary {
    background: var(--techsolut-gradient);
    border: none;
    font-weight: 500;
}

.btn-outline-primary {
    border-color: var(--techsolut-gradient-start);
    color: var(--techsolut-dark-blue);
}

.btn-outline-primary:hover {
    background: var(--techsolut-gradient);
    border-color: transparent;
    color: var(--techsolut-dark-blue);
}

.btn-secondary {
    background-color: var(--techsolut-white);
    color: var(--techsolut-dark-blue);
    border-color: var(--techsolut-light-gray);
}

.btn-danger {
    background-color: var(--techsolut-alert-red);
    border: none;
}

/* Textes et typographie */
h1, h2, h3, h4, h5, h6 {
    color: var(--techsolut-dark-blue);
    font-weight: 600;
}

.text-muted {
    color: var(--techsolut-text-gray) !important;
}

/* Effet gradient pour textes et chiffres */
.gradient-text {
    background: var(--techsolut-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Pour les statistiques et nombres importants */
.display-1, .display-2, .display-3, .display-4 {
    background: var(--techsolut-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Icônes */
.gradient-icon {
    background: var(--techsolut-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Bordures et séparateurs */
.border-techsolut {
    border-color: var(--techsolut-green) !important;
}

/* Fond de sections */
.bg-light {
    background-color: var(--techsolut-light-gray) !important;
}

/* Fond avec gradient */
.bg-gradient-techsolut {
    background: var(--techsolut-gradient);
}

/* Navigation */
.nav-tabs .nav-link.active {
    color: var(--techsolut-dark-blue) !important;
    border-color: var(--techsolut-green);
    border-bottom-color: transparent;
}

.nav-tabs .nav-link {
    color: var(--techsolut-text-gray);
}

/* Tableaux */
.table thead th {
    background-color: var(--techsolut-light-gray);
    color: var(--techsolut-dark-blue);
    font-weight: 600;
}

/* Formulaires */
.form-control:focus {
    border-color: var(--techsolut-gradient-start);
    box-shadow: 0 0 0 0.25rem rgba(0, 201, 255, 0.25);
}

/* Alertes */
.alert-danger {
    background-color: rgba(255, 75, 75, 0.1);
    color: var(--techsolut-alert-red);
    border-color: var(--techsolut-alert-red);
}

/* Badges */
.badge.bg-primary {
    background: var(--techsolut-gradient) !important;
    color: var(--techsolut-dark-blue);
}

/* Animations de transition */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Styles pour l'affichage des abonnements */
.pricing-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--techsolut-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-included {
    color: var(--techsolut-green);
}

.feature-excluded {
    color: var(--techsolut-alert-red);
}

.current-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--techsolut-gradient);
    color: var(--techsolut-dark-blue);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Graphiques et statistiques */
.chart-container {
    position: relative;
    height: 300px;
    margin-bottom: 20px;
}

.stat-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    background: var(--techsolut-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--techsolut-text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 15px;
}

.feature-icon.bg-blue {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.feature-icon.bg-green {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.feature-icon.bg-orange {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.feature-icon.bg-red {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.feature-icon.bg-purple {
    background-color: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.feature-icon.bg-teal {
    background-color: rgba(32, 201, 151, 0.1);
    color: #20c997;
}

.border-dashed {
    border-style: dashed;
}

.limit-indicator {
    border-top: 2px dashed #dc3545;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.limit-label {
    position: absolute;
    right: 0;
    background-color: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Factures */
.invoice-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
}

.invoice-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.invoice-logo {
    background: var(--techsolut-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: bold;
}

.status-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    transform: rotate(15deg);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.status-badge.paid {
    background: linear-gradient(120deg, #00c851, #00e676);
}

.status-badge.pending {
    background: linear-gradient(120deg, #ffbb33, #ffc107);
}

.status-badge.canceled {
    background: linear-gradient(120deg, #ff4444, #cc0000);
}

/* Styles pour la section de fonctionnalité de suivi d'humeur */
.emotion-demo-box {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.emoji-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.emoji-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .emoji-circle {
        width: 50px;
        height: 50px;
    }
    
    .emoji-circle span {
        font-size: 1.5rem !important;
    }
}

.hero-tech-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--techsolut-gradient);
    opacity: 0.1;
    z-index: -1;
}

.feature-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 201, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Animation pour les émojis */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Theme Selector Styles - AI Vision Inspired */
.vision-theme-icon {
    transition: transform 0.3s ease;
}

.vision-theme-icon:hover {
    transform: translateY(-2px);
}

.vision-theme-icon svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 201, 255, 0.4));
}

.vision-theme-icon:hover svg {
    filter: drop-shadow(0 0 6px rgba(0, 201, 255, 0.8));
    transform: scale(1.1);
}

.theme-option {
    transition: all 0.2s ease;
    border-radius: 8px;
}

.theme-option:hover {
    background-color: rgba(0, 201, 255, 0.1);
}

.theme-option.active {
    background-color: rgba(0, 201, 255, 0.2);
}

.theme-icon {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 2px;
}

.theme-option:hover .theme-icon {
    transform: scale(1.1) rotate(5deg);
}

.theme-option.active .theme-icon {
    background: linear-gradient(120deg, rgba(0, 201, 255, 0.2), rgba(146, 254, 157, 0.2));
}

@keyframes ai-pulse {
    0% {
        filter: drop-shadow(0 0 3px rgba(0, 201, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(0, 201, 255, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 3px rgba(0, 201, 255, 0.4));
    }
}

#theme-dropdown:hover .vision-theme-icon svg {
    animation: ai-pulse 2s infinite;
}

.emotion-demo-box:hover .emoji-circle {
    animation: pulse 1.5s infinite;
}

.emotion-demo-box:hover .emoji-circle:nth-child(2) {
    animation-delay: 0.3s;
}

.emotion-demo-box:hover .emoji-circle:nth-child(3) {
    animation-delay: 0.6s;
}

/* Styles pour la section démo vidéo animée avec réseaux de neurones dynamiques */
.tech-demo-container {
    height: 400px;
    width: 100%;
    position: relative;
    background-color: #0A1F44;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid var(--techsolut-light-blue);
    box-shadow: 0 0 20px rgba(0, 201, 255, 0.3);
}

.tech-demo-animation {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    perspective: 1200px;
}

/* Style pour le réseau de neurones 3D */
.neural-network-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate3d 30s infinite ease-in-out;
    border: 2px solid transparent;
}

/* Animation de lueur pour le conteneur de l'animation */
.tech-demo-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: glow-pulse 8s infinite alternate;
}

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

.neural-node {
    position: absolute;
    width: 25px;
    height: 25px;
    background: rgba(0, 201, 255, 0.6);
    border: 3px solid rgba(146, 254, 157, 0.9);
    border-radius: 6px;
    transform-style: preserve-3d;
    box-shadow: 0 0 20px rgba(0, 201, 255, 0.7);
    z-index: 5;
    pointer-events: none;
}

.neural-connection {
    position: absolute;
    background: linear-gradient(120deg, rgba(0, 201, 255, 0.7), rgba(146, 254, 157, 0.7));
    height: 5px;
    width: 2px;
    transform-origin: 0 0;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 201, 255, 0.5);
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg) rotateX(10deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(5deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(15deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(5deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes data-flow {
    0% {
        transform: translateX(-10px) translateY(-10px) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(10px) translateY(10px) scale(0.2);
        opacity: 0;
    }
}

.play-button-wrapper {
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
}

.play-button {
    transition: all 0.3s;
}

.play-button-wrapper:hover .play-button {
    background: var(--techsolut-gradient) !important;
    transform: scale(1.1);
}

.demo-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.demo-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.demo-indicator.active {
    background-color: var(--techsolut-white);
    transform: scale(1.2);
}

.tech-demo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.tech-demo-modal {
    width: 80%;
    max-width: 1000px;
    background-color: var(--techsolut-dark-blue);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.tech-demo-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-demo-modal-body {
    padding: 20px;
}

.tech-demo-modal-close {
    background: none;
    border: none;
    color: var(--techsolut-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tech-demo-modal-close:hover {
    color: var(--techsolut-green);
}

/* Styles pour les nouvelles cartes de modèles d'IA */
.ai-models-grid {
    margin-top: 30px;
}

.ai-model-card {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ai-model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.model-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
    animation: model-pulse 4s infinite alternate;
}

.transformer-glow {
    background: radial-gradient(circle, rgba(146, 254, 157, 0.3) 0%, transparent 70%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.gan-glow {
    background: radial-gradient(circle, rgba(255, 102, 204, 0.3) 0%, transparent 70%);
    left: -20px;
    top: -20px;
    right: auto;
}

@keyframes model-pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Visualisations des modèles */

/* 1. CNN Visualization */
.cnn-visualization {
    height: 80px;
    position: relative;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.cnn-layer {
    width: 30%;
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.cnn-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 15px rgba(0, 201, 255, 0.5);
    border-radius: 5px;
}

.layer-1::before {
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.2), transparent);
}

.layer-2::before {
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.3), transparent);
}

.layer-3::before {
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.4), transparent);
}

.cnn-layer::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 50%;
    right: -15px;
    background: linear-gradient(90deg, rgba(146, 254, 157, 0.5), transparent);
    z-index: 1;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.layer-3::after {
    display: none;
}

/* 2. Transformer Visualization */
.transformer-visualization {
    height: 80px;
    position: relative;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.transformer-head {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(146, 254, 157, 0.5);
    position: relative;
    box-shadow: 0 0 10px rgba(146, 254, 157, 0.5);
    animation: head-pulse 3s infinite alternate;
}

.transformer-head::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(146, 254, 157, 0.8), transparent);
    left: 50%;
    transform-origin: left;
}

.head-1::before {
    top: -20px;
    transform: rotate(-45deg);
}

.head-2::before {
    top: 5px;
    transform: rotate(-15deg);
}

.head-3::before {
    top: 15px;
    transform: rotate(15deg);
}

.head-4::before {
    top: 30px;
    transform: rotate(45deg);
}

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

/* 3. GAN Visualization */
.gan-visualization {
    height: 80px;
    position: relative;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.gan-element {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    position: relative;
    animation: gan-pulse 4s infinite alternate;
}

.generator {
    background: rgba(255, 102, 204, 0.3);
    border: 2px solid rgba(255, 102, 204, 0.6);
    box-shadow: 0 0 15px rgba(255, 102, 204, 0.3);
    animation-delay: 0s;
}

.discriminator {
    background: rgba(0, 201, 255, 0.3);
    border: 2px solid rgba(0, 201, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 201, 255, 0.3);
    animation-delay: 1s;
}

.gan-connection {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 102, 204, 0.5), rgba(0, 201, 255, 0.5));
    z-index: 0;
}

.gan-connection::before, .gan-connection::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    top: -2px;
    animation: data-flow 3s infinite;
}

.gan-connection::before {
    left: 30%;
    animation-delay: 0s;
}

.gan-connection::after {
    left: 60%;
    animation-delay: 1.5s;
}

@keyframes gan-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* 4. Algorithmes de vision styles */
.small-card {
    padding-bottom: 60px !important;
}

.detection-boxes, .segmentation-mask, .pose-skeleton, .ocr-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-position: center;
    background-repeat: no-repeat;
}

.detection-boxes {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='50' viewBox='0 0 100 50'%3E%3Crect x='20' y='10' width='20' height='30' fill='none' stroke='%2300C9FF' stroke-width='2' rx='2' /%3E%3Crect x='60' y='5' width='25' height='40' fill='none' stroke='%2392FE9D' stroke-width='2' rx='2' /%3E%3C/svg%3E");
}

.segmentation-mask {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='50' viewBox='0 0 100 50'%3E%3Cpath d='M20,10 C25,5 40,5 45,15 C50,25 65,30 75,25 C85,20 90,30 85,40 C80,45 60,45 50,40 C40,35 30,35 25,40 C20,45 15,25 20,10 Z' fill='rgba(0, 201, 255, 0.3)' stroke='%2300C9FF' stroke-width='2' /%3E%3C/svg%3E");
}

.pose-skeleton {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='50' viewBox='0 0 100 50'%3E%3Ccircle cx='50' cy='10' r='5' fill='%2300C9FF' /%3E%3Cline x1='50' y1='15' x2='50' y2='30' stroke='%2300C9FF' stroke-width='2' /%3E%3Cline x1='50' y1='30' x2='35' y2='45' stroke='%2300C9FF' stroke-width='2' /%3E%3Cline x1='50' y1='30' x2='65' y2='45' stroke='%2300C9FF' stroke-width='2' /%3E%3Cline x1='50' y1='20' x2='35' y2='15' stroke='%2300C9FF' stroke-width='2' /%3E%3Cline x1='50' y1='20' x2='65' y2='15' stroke='%2300C9FF' stroke-width='2' /%3E%3C/svg%3E");
}

.ocr-text {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='50' viewBox='0 0 100 50'%3E%3Ctext x='10' y='20' font-family='Arial' font-size='10' fill='%2300C9FF'%3ETechsolut%3C/text%3E%3Cpath d='M10,25 L90,25' stroke='rgba(0, 201, 255, 0.5)' stroke-width='1' stroke-dasharray='4 2' /%3E%3Ctext x='15' y='40' font-family='Arial' font-size='8' fill='%2392FE9D'%3EOCR Engine%3C/text%3E%3C/svg%3E");
}

/* Neural Network Visualization */
.neural-network-demo-container {
    background-color: #0A1F44;
    border: 3px solid rgba(0, 201, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 201, 255, 0.2);
}

.neural-network-animation {
    position: relative;
    overflow: hidden;
}

.neural-network-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.layer-group {
    position: absolute;
}

.neuron {
    box-shadow: 0 0 10px rgba(0, 201, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 10;
}

.neural-connection {
    height: 2px;
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 201, 255, 0.3), rgba(146, 254, 157, 0.3));
    transform-origin: 0 0;
    z-index: 5;
}

.neural-controls {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-badge {
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(0, 201, 255, 0.3);
}

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

/* Data Flow Animation */
@keyframes data-flow {
    0% {
        transform: scale(0.8) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(0.2) translateX(50px);
        opacity: 0;
    }
}