
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.85) 0%, rgba(45, 45, 45, 0.75) 50%, rgba(22, 22, 22, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    color: #e8e8e8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252, #d84315);
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.course-form {
    padding: 20px 0;
}

.form-check-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-check {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    margin: 0;
}

.btn-submit-form {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit-form:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 60px 0;
    }
}

/* Block 2 */
.features-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
}

.features-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(119, 255, 198, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.features-showcase .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0) translateY(0) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.1);
}

.feature-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(1.2) contrast(1.1);
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ecdc4;
    line-height: 1;
    text-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-futuristic {
    position: relative;
    padding: 18px 40px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 300% 300%;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    animation: gradientAnimation 4s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-text {
    position: relative;
    z-index: 3;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.btn-futuristic:hover .btn-glow {
    opacity: 1;
}

@media (max-width: 768px) {
    .features-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

/* Block 3 */
.neural-art-gallery {
            padding: 80px 0;
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
            position: relative;
            overflow: hidden;
        }

        .neural-art-gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 25% 25%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                              radial-gradient(circle at 75% 75%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
            animation: neuralBackground 20s ease-in-out infinite;
        }

        @keyframes neuralBackground {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.1); }
        }

        .gallery-title {
            color: #ffffff;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(120, 119, 198, 0.5);
        }

        .gallery-subtitle {
            color: #b8b8d4;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .neural-showcase {
            margin: 60px 0;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .neural-artwork {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(120, 119, 198, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .neural-artwork.featured {
            grid-row: span 2;
        }

        .neural-artwork:hover {
            transform: translateY(-8px);
            border-color: rgba(120, 119, 198, 0.6);
            box-shadow: 0 20px 40px rgba(120, 119, 198, 0.2);
        }

        .artwork-container {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .neural-artwork.featured .artwork-container {
            height: 480px;
        }

        .artwork-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: contrast(1.1) saturate(1.2);
        }

        .neural-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(120, 119, 198, 0.2) 0%, transparent 70%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .processing-indicator {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px 16px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }

        .synapse-animation {
            width: 20px;
            height: 20px;
            border: 2px solid #7877c6;
            border-top-color: transparent;
            border-radius: 50%;
            animation: synapseRotate 1s linear infinite;
        }

        @keyframes synapseRotate {
            to { transform: rotate(360deg); }
        }

        .process-text {
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .quantum-field {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .quantum-particles {
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(120, 119, 198, 0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255, 119, 198, 0.8), transparent);
            animation: quantumFloat 8s ease-in-out infinite;
        }

        @keyframes quantumFloat {
            0%, 100% { opacity: 0.3; transform: translateY(0px) rotate(0deg); }
            50% { opacity: 1; transform: translateY(-10px) rotate(180deg); }
        }

        .emotion-heatmap {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .emotion-zone {
            position: absolute;
            border-radius: 50%;
            filter: blur(20px);
            animation: emotionPulse 3s ease-in-out infinite;
        }

        .emotion-zone.joy {
            top: 20%;
            left: 30%;
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, rgba(255, 193, 7, 0.6) 0%, transparent 70%);
        }

        .emotion-zone.calm {
            top: 60%;
            right: 25%;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(32, 201, 151, 0.6) 0%, transparent 70%);
            animation-delay: 1s;
        }

        .emotion-zone.intense {
            bottom: 20%;
            left: 20%;
            width: 50px;
            height: 50px;
            background: radial-gradient(circle, rgba(220, 53, 69, 0.6) 0%, transparent 70%);
            animation-delay: 2s;
        }

        @keyframes emotionPulse {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
            50% { transform: scale(1.3) rotate(180deg); opacity: 0.9; }
        }

        .bio-patterns {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .growth-simulation {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(46, 204, 113, 0.1) 50%, transparent 60%),
                        linear-gradient(-45deg, transparent 40%, rgba(46, 204, 113, 0.1) 50%, transparent 60%);
            background-size: 30px 30px;
            animation: bioGrowth 4s ease-in-out infinite;
        }

        @keyframes bioGrowth {
            0% { background-position: 0 0, 0 0; opacity: 0.3; }
            50% { background-position: 15px 15px, -15px -15px; opacity: 0.7; }
            100% { background-position: 30px 30px, -30px -30px; opacity: 0.3; }
        }

        .artwork-meta {
            padding: 20px;
        }

        .artwork-title {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .neural-metrics, .quantum-stats, .emotion-indicators, .bio-metrics {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .metric {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #b8b8d4;
            font-size: 0.9rem;
        }

        .metric i {
            color: #7877c6;
        }

        .qubit-count, .emotion, .growth-rate {
            color: #20c997;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .neural-workshop-preview {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(120, 119, 198, 0.3);
        }

        .workshop-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 0;
        }

        .workshop-visual {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .workshop-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hologram-effect {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(0, 255, 255, 0.1) 50%, 
                transparent 70%);
            animation: hologramScan 3s ease-in-out infinite;
        }

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

        .workshop-details {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .workshop-title {
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .workshop-description {
            color: #b8b8d4;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .workshop-schedule {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
        }

        .schedule-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #ffffff;
            font-size: 0.95rem;
        }

        .schedule-item i {
            color: #20c997;
            width: 16px;
        }

        .btn-holographic-signup {
            position: relative;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 12px;
            padding: 16px 32px;
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-holographic-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .btn-hologram-text {
            position: relative;
            z-index: 2;
        }

        .holographic-glow {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
            border-radius: 12px;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
            animation: holographicShimmer 2s linear infinite;
        }

        .btn-holographic-signup:hover .holographic-glow {
            opacity: 1;
        }

        @keyframes holographicShimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        @media (max-width: 992px) {
            .showcase-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .neural-artwork.featured {
                grid-row: span 1;
            }

            .neural-artwork.featured .artwork-container {
                height: 300px;
            }

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

            .workshop-visual {
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .gallery-title {
                font-size: 2.2rem;
            }

            .artwork-container {
                height: 220px;
            }

            .workshop-details {
                padding: 20px;
            }
        }

/* Block 4 */
.quantum-order-system {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 75%, #0f3460 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.quantum-order-system::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.quantum-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  padding: 60px 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.neural-pulse-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.pulse-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: brightness(1.2) contrast(1.3);
}

.pulse-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(0, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulseWave 2s ease-in-out infinite;
}

.pulse-waves::before,
.pulse-waves::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 0, 255, 0.3);
  border-radius: 50%;
  animation: pulseWave 2s ease-in-out infinite;
}

.pulse-waves::before {
  width: 120px;
  height: 120px;
  animation-delay: 0.5s;
}

.pulse-waves::after {
  width: 140px;
  height: 140px;
  animation-delay: 1s;
}

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

.quantum-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
  margin-bottom: 15px;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.quantum-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  font-weight: 300;
}

.quantum-form-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

.biometric-scanner {
  position: relative;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.scanner-device {
  width: 100%;
  max-width: 240px;
  border-radius: 15px;
  filter: brightness(1.1) saturate(1.2);
}

.scan-animation {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  pointer-events: none;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00ffff 50%, transparent 100%);
  animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
  0%, 10% { transform: translateY(0); opacity: 1; }
  90%, 100% { transform: translateY(200px); opacity: 0; }
}

.scan-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, #ff00ff 2px, transparent 2px),
                    radial-gradient(circle at 80% 60%, #00ffff 2px, transparent 2px),
                    radial-gradient(circle at 50% 80%, #ffff00 2px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.6;
  animation: scanDots 4s ease-in-out infinite;
}

@keyframes scanDots {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

.neural-order-form {
  flex: 1;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.neural-input-wrapper {
  position: relative;
}

.neural-label {
  display: block;
  margin-bottom: 10px;
  color: #00ffff;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
}

.label-text {
  margin-right: 10px;
}

.neural-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  animation: neuralBlink 2s ease-in-out infinite;
}

@keyframes neuralBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.quantum-input {
  width: 100%;
  padding: 18px 25px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.quantum-input:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.6);
}

.quantum-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 12px;
  overflow: hidden;
}

.quantum-input:focus + .input-particles::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00ffff 50%, transparent 100%);
  animation: inputParticle 1.5s ease-in-out;
}

@keyframes inputParticle {
  0% { left: -100%; }
  100% { left: 100%; }
}

.neural-preferences {
  margin-bottom: 40px;
}

.preferences-title {
  color: #ff00ff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

.preference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.preference-option {
  position: relative;
}

.neural-radio {
  display: none;
}

.preference-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #ffffff;
}

.preference-label:hover {
  border-color: rgba(0, 255, 255, 0.5);
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-2px);
}

.neural-radio:checked + .preference-label {
  border-color: #00ffff;
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.preference-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  border-radius: 50%;
  filter: brightness(1.1);
}

.preference-name {
  font-weight: 500;
  font-size: 1rem;
}

.quantum-submit-area {
  text-align: center;
}

.quantum-submit-btn {
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  border: none;
  padding: 20px 50px;
  border-radius: 50px;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.quantum-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.btn-matrix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.matrix-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.quantum-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.6s ease;
}

.quantum-submit-btn:active .quantum-ripple {
  width: 300px;
  height: 300px;
}

.submission-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.processing-indicator {
  width: 20px;
  height: 20px;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.status-text {
  font-size: 0.9rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .quantum-form-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .quantum-title {
    font-size: 2.2rem;
  }
  
  .preference-grid {
    grid-template-columns: 1fr;
  }
  
  .quantum-form-wrapper {
    padding: 40px 20px;
  }
}
