/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #fef3c7;
    overflow: hidden;
    height: 100vh;
    font-size: clamp(14px, 1.2vw, 18px);
}

/* Login Screen */
.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.login-screen.active {
    display: flex;
}

.login-container {
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid #fbbf24;
    border-radius: 20px;
    padding: clamp(30px, 4vw, 60px);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.3),
                inset 0 0 30px rgba(251, 191, 36, 0.1);
    animation: loginPulse 3s ease-in-out infinite;
}

@keyframes loginPulse {
    0%, 100% { box-shadow: 0 0 50px rgba(251, 191, 36, 0.3), inset 0 0 30px rgba(251, 191, 36, 0.1); }
    50% { box-shadow: 0 0 70px rgba(251, 191, 36, 0.5), inset 0 0 40px rgba(251, 191, 36, 0.2); }
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.login-logo .logo-eye {
    width: clamp(60px, 8vw, 100px);
    height: clamp(60px, 8vw, 100px);
}

.login-title {
    font-size: clamp(32px, 5vw, 56px);
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 8px;
}

.login-subtitle {
    font-size: clamp(14px, 1.8vw, 20px);
    color: #22c55e;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.login-tagline {
    font-size: clamp(12px, 1.4vw, 16px);
    color: #fef3c7;
    margin-bottom: 30px;
    opacity: 0.8;
}

.login-form {
    margin: 30px 0;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: clamp(13px, 1.4vw, 16px);
    color: #fbbf24;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: clamp(12px, 1.5vw, 18px);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #22c55e;
    border-radius: 8px;
    color: #fef3c7;
    font-family: 'Courier New', monospace;
    font-size: clamp(14px, 1.5vw, 18px);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.form-group input::placeholder {
    color: rgba(254, 243, 199, 0.4);
}

.error-message {
    color: #ef4444;
    font-size: clamp(12px, 1.3vw, 14px);
    margin-bottom: 15px;
    min-height: 20px;
    text-align: center;
    font-weight: bold;
}

.login-btn {
    width: 100%;
    padding: clamp(14px, 1.8vw, 20px);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-family: 'Courier New', monospace;
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.6);
}

.login-btn:active {
    transform: translateY(0);
}

.login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(251, 191, 36, 0.3);
}

.login-footer .classification {
    margin-bottom: 10px;
}

.login-footer .copyright {
    font-size: clamp(11px, 1.2vw, 13px);
    color: rgba(254, 243, 199, 0.6);
}

/* Matrix Background */
.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(254, 243, 199, 0.03) 2px,
            rgba(254, 243, 199, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(254, 243, 199, 0.03) 2px,
            rgba(254, 243, 199, 0.03) 4px
        );
    opacity: 0.5;
    z-index: 0;
}

/* Scanline Effect */
.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(34, 197, 94, 0.1) 50%,
        transparent 100%
    );
    animation: scan 8s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.triangle {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86.6px solid rgba(251, 191, 36, 0.1);
    animation: float 8s ease-in-out infinite, rotate 15s linear infinite;
}

.circle {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite, pulse 3s ease-in-out infinite;
}

.hexagon {
    position: absolute;
    bottom: 15%;
    left: 70%;
    width: 80px;
    height: 46.19px;
    background: rgba(254, 243, 199, 0.05);
    position: relative;
    animation: float 12s ease-in-out infinite;
}

.hexagon::before,
.hexagon::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
}

.hexagon::before {
    bottom: 100%;
    border-bottom: 23.09px solid rgba(254, 243, 199, 0.05);
}

.hexagon::after {
    top: 100%;
    border-top: 23.09px solid rgba(254, 243, 199, 0.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Navigation */
.nav-controls {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border: 1px solid rgba(254, 243, 199, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.slide-counter {
    font-size: 14px;
    font-weight: bold;
    color: #22c55e;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid #22c55e;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
}

.nav-btn:hover {
    background: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(254, 243, 199, 0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #fbbf24);
    width: 12.5%;
    transition: width 0.5s ease;
}

/* Slides Container */
.slides-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
    padding: clamp(15px, 2vh, 30px) clamp(20px, 3vw, 50px);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom scrollbar pour le contenu */
.slide-content::-webkit-scrollbar {
    width: 8px;
}

.slide-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(254, 243, 199, 0.2);
}

.slide-content::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.5);
    border-radius: 4px;
}

.slide-content::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 197, 94, 0.8);
}

/* Slide 1: Title */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-eye {
    position: relative;
    width: clamp(60px, 8vw, 100px);
    height: clamp(60px, 8vw, 100px);
}

.eye-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(15px, 2vw, 25px);
    height: clamp(15px, 2vw, 25px);
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 15px #22c55e, 0 0 30px #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

.eye-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(40px, 5vw, 70px);
    height: clamp(40px, 5vw, 70px);
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: 50%;
    animation: rotate 8s linear infinite;
}

.eye-ring.ring-2 {
    width: clamp(55px, 7vw, 95px);
    height: clamp(55px, 7vw, 95px);
    animation: rotate 12s linear infinite reverse;
}

.main-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #fef3c7;
    text-shadow: 0 0 20px rgba(254, 243, 199, 0.8), 0 0 40px rgba(254, 243, 199, 0.4);
    letter-spacing: clamp(4px, 0.8vw, 10px);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(254, 243, 199, 0.8), 0 0 60px rgba(254, 243, 199, 0.4); }
    50% { text-shadow: 0 0 40px rgba(254, 243, 199, 1), 0 0 80px rgba(254, 243, 199, 0.6); }
}

.subtitle {
    font-size: clamp(18px, 2.5vw, 32px);
    text-align: center;
    color: #22c55e;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
    line-height: 1.4;
}

.tagline {
    font-size: clamp(14px, 1.5vw, 20px);
    text-align: center;
    color: rgba(254, 243, 199, 0.9);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 0.3vw, 4px);
}

.classification {
    text-align: center;
    padding: 10px 15px;
    border: 1px solid rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.1);
    display: inline-block;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.classification .label {
    color: rgba(254, 243, 199, 0.7);
    margin-right: clamp(8px, 1vw, 12px);
    font-size: clamp(12px, 1.3vw, 16px);
}

.classification .value {
    font-weight: bold;
    font-size: clamp(14px, 1.6vw, 20px);
}

.classification .value.critical {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

.classification .value.secure {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

/* Slide 2: Overview */
.slide-title {
    font-size: clamp(24px, 4vw, 48px);
    text-align: center;
    margin-bottom: clamp(20px, 3vh, 40px);
    color: #fef3c7;
    text-shadow: 0 0 20px rgba(254, 243, 199, 0.5);
    letter-spacing: clamp(2px, 0.4vw, 5px);
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(254, 243, 199, 0.3);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #22c55e;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 24px;
    color: #22c55e;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.info-card p {
    color: rgba(254, 243, 199, 0.8);
    line-height: 1.6;
}

/* Slide 3: Architecture */
.architecture-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.arch-layer {
    width: 100%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(34, 197, 94, 0.5);
    padding: 25px;
}

.layer-title {
    font-size: 20px;
    color: #22c55e;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 3px;
}

.layer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-badge {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid #fbbf24;
    color: #fbbf24;
    padding: 8px 16px;
    font-size: 14px;
    text-transform: uppercase;
}

.arch-connector {
    font-size: 32px;
    color: #22c55e;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Slide 4: Modules */
.modules-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.module-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(254, 243, 199, 0.3);
    padding: 25px;
    transition: all 0.3s;
}

.module-card:hover {
    border-color: #22c55e;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(254, 243, 199, 0.2);
}

.module-icon {
    font-size: 36px;
}

.module-header h3 {
    font-size: 20px;
    color: #22c55e;
    letter-spacing: 2px;
}

.module-features {
    list-style: none;
}

.module-features li {
    padding: 8px 0;
    color: rgba(254, 243, 199, 0.8);
    border-bottom: 1px solid rgba(254, 243, 199, 0.1);
}

.module-features li:last-child {
    border-bottom: none;
}

/* Slide 5: Features */
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(254, 243, 199, 0.3);
    padding: 25px;
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.feature-box h3 {
    font-size: 20px;
    color: #fbbf24;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.feature-box p {
    color: rgba(254, 243, 199, 0.8);
    line-height: 1.6;
}

/* Slide 6: Threat Levels */
.threat-levels {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.threat-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid;
    padding: 30px;
    text-align: center;
    flex: 1;
    max-width: 400px;
    position: relative;
    transition: all 0.3s;
}

.threat-card.level-none {
    border-color: #22c55e;
}

.threat-card.level-low {
    border-color: #fbbf24;
}

.threat-card.level-high {
    border-color: #ef4444;
}

.threat-card:hover {
    transform: translateY(-10px);
}

.threat-card.level-none:hover {
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.5);
}

.threat-card.level-low:hover {
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
}

.threat-card.level-high:hover {
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.5);
}

.threat-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.level-none .threat-indicator {
    background: #22c55e;
    box-shadow: 0 0 20px #22c55e;
}

.level-low .threat-indicator {
    background: #fbbf24;
    box-shadow: 0 0 20px #fbbf24;
}

.level-high .threat-indicator {
    background: #ef4444;
    box-shadow: 0 0 20px #ef4444;
}

.threat-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.threat-color {
    font-size: 48px;
    margin: 20px 0;
}

.threat-color.green { color: #22c55e; text-shadow: 0 0 20px #22c55e; }
.threat-color.yellow { color: #fbbf24; text-shadow: 0 0 20px #fbbf24; }
.threat-color.red { color: #ef4444; text-shadow: 0 0 20px #ef4444; }

.threat-card p {
    color: rgba(254, 243, 199, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.threat-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.threat-actions span {
    background: rgba(254, 243, 199, 0.05);
    padding: 10px;
    border: 1px solid rgba(254, 243, 199, 0.2);
}

/* Slide 7: Deployment */
.deployment-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(254, 243, 199, 0.3);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s;
}

.step:hover {
    border-color: #22c55e;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.step-number {
    font-size: 48px;
    color: #22c55e;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
    border-right: 2px solid rgba(34, 197, 94, 0.5);
    padding-right: 25px;
}

.step h3 {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.step code {
    display: block;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #22c55e;
    padding: 10px 15px;
    color: #22c55e;
    margin: 10px 0;
    font-family: 'Courier New', monospace;
}

.step p {
    color: rgba(254, 243, 199, 0.7);
    font-size: 14px;
}

/* Slide 8: Conclusion */
.conclusion-content {
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(34, 197, 94, 0.5);
    padding: 15px;
}

.stat-value {
    font-size: clamp(28px, 4vw, 48px);
    color: #22c55e;
    font-weight: bold;
    margin-bottom: clamp(6px, 1vh, 10px);
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.stat-label {
    font-size: clamp(10px, 1.2vw, 14px);
    color: rgba(254, 243, 199, 0.7);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.1vw, 2px);
}

.final-message {
    margin: 60px 0;
}

.big-text {
    font-size: 64px;
    color: #22c55e;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    letter-spacing: 4px;
}

.status-text {
    font-size: 24px;
    color: rgba(254, 243, 199, 0.8);
    margin-bottom: 40px;
}

.classification.final {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.contact-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(254, 243, 199, 0.2);
}

.contact-info p {
    color: rgba(254, 243, 199, 0.7);
    margin: 5px 0;
    font-size: 11px;
}

.contact-info strong {
    color: #fbbf24;
}

/* Responsive */
@media (max-width: 1200px) {
    .objectives-grid,
    .dashboard-stats,
    .dashboard-features,
    .vehicles-examples,
    .techniques-grid { 
        grid-template-columns: 1fr; 
    }
    .mineral-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .nav-controls { 
        top: 5px; 
        right: 5px; 
        padding: 6px; 
        gap: 6px;
    }
    .slide-content { 
        padding: 10px 15px; 
        width: 98%;
    }
    .objectives-grid,
    .mineral-grid,
    .stats-grid,
    .dashboard-stats { 
        grid-template-columns: 1fr; 
    }
    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

/* Fullscreen optimizations */
@media (min-width: 1920px) {
    .slide-content {
        max-width: 1800px;
    }
}

/* NEW SLIDES STYLES */

/* Slide 2: Mission Statement */
.mission-statement {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #22c55e;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
    animation: pulseBox 3s ease-in-out infinite;
}

@keyframes pulseBox {
    0%, 100% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 0 40px rgba(34, 197, 94, 0.5); }
}

.mission-box h2 {
    font-size: clamp(20px, 3vw, 36px);
    color: #22c55e;
    margin-bottom: clamp(12px, 2vh, 20px);
    letter-spacing: clamp(1px, 0.2vw, 3px);
}

.mission-desc {
    font-size: clamp(14px, 1.5vw, 20px);
    line-height: 1.6;
    color: rgba(254, 243, 199, 0.9);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.objective-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(254, 243, 199, 0.3);
    padding: 15px;
    transition: all 0.3s;
}

.objective-card:hover {
    border-color: #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
    transform: translateY(-5px);
}

.obj-icon {
    font-size: clamp(32px, 4vw, 56px);
    margin-bottom: clamp(8px, 1vh, 15px);
}

.objective-card h3 {
    font-size: clamp(14px, 1.8vw, 22px);
    color: #fbbf24;
    margin-bottom: clamp(8px, 1vh, 12px);
    letter-spacing: clamp(0.5px, 0.1vw, 2px);
}

.objective-card p {
    font-size: clamp(12px, 1.2vw, 16px);
    color: rgba(254, 243, 199, 0.85);
    line-height: 1.5;
}

/* Slide 3: Process Flow */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.process-step {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 25px);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.4);
    padding: clamp(12px, 2vh, 20px) clamp(20px, 3vw, 35px);
    width: 100%;
    max-width: 1000px;
    transition: all 0.3s;
}

.process-step:hover {
    border-color: #22c55e;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
    transform: translateX(5px);
}

.step-num {
    font-size: clamp(32px, 4vw, 56px);
    color: #22c55e;
    font-weight: bold;
    min-width: clamp(50px, 6vw, 80px);
    text-align: center;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.8);
}

.process-step.step-6 {
    border-color: #06b6d4;
    background: rgba(6, 182, 212, 0.08);
}

.process-step.step-6 .step-num {
    color: #06b6d4;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.8);
}

.process-step.step-6 .step-content h3 {
    color: #06b6d4;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: clamp(14px, 1.8vw, 24px);
    color: #fbbf24;
    margin-bottom: clamp(5px, 0.8vh, 10px);
    letter-spacing: clamp(0.5px, 0.1vw, 2px);
}

.step-content p {
    font-size: clamp(11px, 1.3vw, 18px);
    color: rgba(254, 243, 199, 0.85);
    margin-bottom: clamp(5px, 0.8vh, 8px);
}

.step-data {
    font-size: clamp(10px, 1.1vw, 14px);
    color: #22c55e;
    font-style: italic;
    margin-top: clamp(4px, 0.5vh, 8px);
}

.tech-tag {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    padding: clamp(3px, 0.4vh, 5px) clamp(6px, 0.8vw, 10px);
    font-size: clamp(8px, 0.9vw, 11px);
    color: #22c55e;
    border-radius: 3px;
    margin: clamp(2px, 0.3vh, 4px);
    font-style: normal;
    font-weight: 600;
}

.flow-arrow {
    font-size: 24px;
    color: #fbbf24;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.decision-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.decision-ok {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    padding: 8px;
    font-size: 11px;
    color: #22c55e;
}

.decision-alert {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
    padding: 8px;
    font-size: 11px;
    color: #ef4444;
}

/* Slide 4: Detector */
.detector-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detector-main {
    display: flex;
    justify-content: center;
}

.detector-visual {
    text-align: center;
}

.detector-frame {
    width: clamp(400px, 50vw, 700px);
    height: clamp(200px, 25vw, 350px);
    border: 3px solid #22c55e;
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    overflow: hidden;
}

.scan-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    animation: scanBeam 3s linear infinite;
}

@keyframes scanBeam {
    0% { transform: translateY(0); }
    100% { transform: translateY(200px); }
}

.detection-zone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.truck-silhouette {
    font-size: clamp(60px, 8vw, 120px);
    animation: pulse 2s ease-in-out infinite;
}

.detector-label {
    margin-top: clamp(10px, 1.5vh, 20px);
    font-size: clamp(12px, 1.5vw, 18px);
    color: #fbbf24;
    letter-spacing: clamp(1px, 0.1vw, 2px);
    font-weight: bold;
}

.fraud-vehicles {
    margin-bottom: clamp(10px, 1.5vh, 15px);
}

.fraud-vehicles h2 {
    font-size: clamp(14px, 1.8vw, 22px);
    color: #ef4444;
    text-align: center;
    margin-bottom: clamp(8px, 1.5vh, 12px);
    letter-spacing: clamp(0.5px, 0.1vw, 1.5px);
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.vehicles-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 35px);
}

.vehicle-card {
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid #ef4444;
    padding: clamp(20px, 2.5vh, 35px);
    transition: all 0.3s;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.5);
}

.vehicle-card.fraud-detected {
    border-color: #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.7);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.6);
}

.vehicle-card h4 {
    font-size: clamp(18px, 2.2vw, 28px);
    color: #fbbf24;
    margin-bottom: clamp(12px, 1.8vh, 20px);
    letter-spacing: clamp(1.5px, 0.2vw, 3px);
    text-align: center;
    border-bottom: 3px solid rgba(251, 191, 36, 0.7);
    padding-bottom: clamp(8px, 1.2vh, 15px);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.vehicle-card p {
    font-size: clamp(14px, 1.7vw, 20px);
    color: #fef3c7;
    margin: clamp(10px, 1.3vh, 15px) 0;
    line-height: 1.6;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.vehicle-card p strong {
    color: #ef4444;
    font-weight: 700;
}

/* Numéro de véhicule */
.vehicle-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: 4px solid #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: bold;
    color: #fff;
    z-index: 10;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.9);
}

.vehicle-card.vehicle-zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.4);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.98);
    border: 6px solid #fbbf24;
    box-shadow: 0 0 80px rgba(251, 191, 36, 1);
    max-width: 900px;
    width: 85vw;
}

.vehicle-card.vehicle-zoomed .vehicle-number {
    width: 80px;
    height: 80px;
    font-size: clamp(36px, 4vw, 52px);
    box-shadow: 0 0 40px rgba(239, 68, 68, 1);
}

.vehicles-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s, visibility 0.8s;
}

.vehicles-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vehicles-examples.presenting {
    pointer-events: none;
}

.vehicles-examples.presenting .vehicle-card:not(.vehicle-zoomed) {
    opacity: 0.4;
    filter: grayscale(0.5);
    transition: all 0.8s;
    transform: scale(0.97);
}

.detector-capabilities h2 {
    font-size: clamp(14px, 1.8vw, 22px);
    color: #22c55e;
    text-align: center;
    margin-bottom: clamp(8px, 1.5vh, 12px);
    letter-spacing: clamp(0.5px, 0.1vw, 1.5px);
}

.mineral-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.mineral-item {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid;
    padding: clamp(6px, 1vh, 10px);
    text-align: center;
    transition: all 0.3s;
}

.mineral-item.legal {
    border-color: #22c55e;
}

.mineral-item.illegal {
    border-color: #ef4444;
    animation: alertPulse 2s ease-in-out infinite;
}

.mineral-item.alert {
    border-color: #fbbf24;
}

@keyframes alertPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.8); }
}

.mineral-icon {
    font-size: clamp(16px, 2vw, 24px);
    display: block;
    margin-bottom: clamp(3px, 0.5vh, 5px);
}

.mineral-name {
    font-size: clamp(9px, 1vw, 12px);
    font-weight: bold;
    color: #fef3c7;
    margin-bottom: clamp(2px, 0.3vh, 4px);
    letter-spacing: clamp(0.5px, 0.05vw, 1px);
}

.mineral-status {
    font-size: clamp(7px, 0.8vw, 10px);
    color: rgba(254, 243, 199, 0.7);
    line-height: 1.3;
}

/* Hiding Techniques Section */
.hiding-techniques {
    margin-top: clamp(12px, 2vh, 20px);
    padding-top: clamp(10px, 1.5vh, 15px);
    border-top: 2px solid rgba(239, 68, 68, 0.5);
}

.hiding-techniques h3 {
    font-size: clamp(14px, 1.8vw, 22px);
    color: #ef4444;
    text-align: center;
    margin-bottom: clamp(8px, 1.5vh, 15px);
    letter-spacing: clamp(0.5px, 0.1vw, 1.5px);
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 35px);
}

.technique-item {
    background: rgba(239, 68, 68, 0.1);
    border: 3px solid #ef4444;
    padding: clamp(20px, 2.5vh, 35px);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    transform-origin: center;
}

/* Numéro de technique */
.technique-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: 3px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: bold;
    color: #000;
    z-index: 10;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    transition: all 0.5s;
}

.technique-item.zoomed .technique-number {
    width: 70px;
    height: 70px;
    font-size: clamp(28px, 3.5vw, 42px);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.9);
}

@keyframes rotatePulse {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(1.1);
    }
    75% {
        transform: rotate(5deg) scale(1.1);
    }
}

.technique-item.zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2.2);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.98);
    border: 5px solid #fbbf24;
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.9);
    max-width: 650px;
}

.technique-item.technique-zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2.2);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.98);
    border: 5px solid #fbbf24;
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.9);
    max-width: 650px;
}

.techniques-grid.presenting {
    pointer-events: none;
}

.techniques-grid.presenting .technique-item:not(.technique-zoomed) {
    opacity: 0.5;
    filter: grayscale(0.3);
    transition: all 0.8s;
    transform: scale(0.98);
}
    border: 5px solid #fbbf24;
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.9);
    max-width: 650px;
}

@keyframes pulseGlowEnhanced {
    0%, 100% { 
        box-shadow: 
            0 0 80px rgba(251, 191, 36, 1),
            0 0 150px rgba(239, 68, 68, 0.8),
            0 0 250px rgba(34, 197, 94, 0.6),
            inset 0 0 100px rgba(251, 191, 36, 0.2);
        border-color: #fbbf24;
    }
    50% { 
        box-shadow: 
            0 0 120px rgba(251, 191, 36, 1),
            0 0 200px rgba(239, 68, 68, 1),
            0 0 300px rgba(34, 197, 94, 0.8),
            inset 0 0 150px rgba(34, 197, 94, 0.3);
        border-color: #22c55e;
    }
}

@keyframes floatAnimation {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(2.2) translateY(0px);
    }
    50% { 
        transform: translate(-50%, -50%) scale(2.2) translateY(-10px);
    }
}

.technique-item.zoom-out {
    animation: zoomOutFadeEnhanced 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes zoomOutFadeEnhanced {
    0% {
        transform: translate(-50%, -50%) scale(2.2) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5) rotate(180deg);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.3) rotate(360deg);
        opacity: 0;
    }
}

.techniques-grid.presenting {
    pointer-events: none;
}

.techniques-grid.presenting .technique-item:not(.zoomed):not(.zoom-out) {
    opacity: 0.5;
    filter: blur(0px) grayscale(0.3);
    transition: all 0.8s;
    transform: scale(0.98);
}

/* Overlay pour les animations de techniques */
.techniques-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s, visibility 0.8s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.techniques-overlay.active {
    opacity: 1;
    visibility: visible;
    animation: overlayPulse 4s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { 
        background: radial-gradient(circle, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.95) 100%);
    }
    50% { 
        background: radial-gradient(circle, rgba(20, 20, 20, 0.75) 0%, rgba(0, 0, 0, 0.98) 100%);
    }
}

.technique-item:hover {
    background: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: clamp(36px, 4.5vw, 56px);
    text-align: center;
    margin-bottom: clamp(10px, 1.5vh, 18px);
}

.technique-item h4 {
    font-size: clamp(16px, 2vw, 24px);
    color: #fbbf24;
    margin-bottom: clamp(10px, 1.5vh, 18px);
    letter-spacing: clamp(1px, 0.15vw, 2px);
    text-align: center;
}

.technique-item p {
    font-size: clamp(12px, 1.5vw, 18px);
    color: rgba(254, 243, 199, 0.9);
    margin: clamp(8px, 1.2vh, 14px) 0;
    line-height: 1.6;
}

.technique-item p strong {
    color: #22c55e;
    font-weight: bold;
}

/* Overlay pour les animations de techniques */
.techniques-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.techniques-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Slide 5: Alerts */
.alerts-system {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scenario-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid;
    padding: 15px;
    transition: all 0.3s;
}

.scenario-box.scenario-1 {
    border-color: #22c55e;
}

.scenario-box.scenario-2 {
    border-color: #fbbf24;
}

.scenario-box.scenario-3 {
    border-color: #ef4444;
}

.scenario-box:hover {
    transform: translateX(10px);
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(254, 243, 199, 0.2);
}

.scenario-icon {
    font-size: clamp(28px, 3.5vw, 48px);
}

.scenario-header h3 {
    font-size: clamp(16px, 2vw, 26px);
    color: #fef3c7;
    letter-spacing: clamp(1px, 0.15vw, 2px);
}

.scenario-content p {
    font-size: clamp(11px, 1.3vw, 16px);
    padding: clamp(6px, 1vh, 10px) clamp(10px, 1.5vw, 15px);
    margin-bottom: clamp(4px, 0.5vh, 8px);
    border-left: 3px solid;
}

.scenario-check {
    border-color: #22c55e;
    color: #22c55e;
}

.scenario-alert {
    border-color: #ef4444;
    color: #ef4444;
}

.scenario-result {
    margin-top: clamp(10px, 1.5vh, 18px);
    padding: clamp(10px, 1.5vh, 18px);
    font-size: clamp(12px, 1.5vw, 18px);
    font-weight: bold;
    text-align: center;
    letter-spacing: clamp(1px, 0.1vw, 2px);
}

.scenario-result.success {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    color: #22c55e;
}

.scenario-result.warning {
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid #fbbf24;
    color: #fbbf24;
}

.scenario-result.critical {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
    color: #ef4444;
    animation: alertPulse 2s ease-in-out infinite;
}

/* Slide 6: Dashboard */
.dashboard-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(254, 243, 199, 0.3);
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: #22c55e;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.4);
    transform: scale(1.05);
}

.stat-icon {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: clamp(8px, 1vh, 15px);
}

.stat-card .stat-value {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: bold;
    margin-bottom: clamp(6px, 1vh, 10px);
    color: #fef3c7;
}

.stat-card .stat-value.green {
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
}

.stat-card .stat-value.yellow {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
}

.stat-card .stat-value.red {
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
}

.stat-card .stat-label {
    font-size: clamp(10px, 1.2vw, 14px);
    color: rgba(254, 243, 199, 0.8);
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-panel {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.4);
    padding: 15px;
    transition: all 0.3s;
}

.feature-panel:hover {
    border-color: #22c55e;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
}

.feature-panel h3 {
    font-size: clamp(14px, 1.8vw, 22px);
    color: #fbbf24;
    margin-bottom: clamp(8px, 1vh, 12px);
    letter-spacing: clamp(1px, 0.1vw, 2px);
}

.feature-panel p {
    font-size: clamp(11px, 1.3vw, 16px);
    color: rgba(254, 243, 199, 0.85);
    line-height: 1.5;
}

/* Slide 7: Technologies */
.tech-architecture {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-title {
    font-size: clamp(22px, 3vw, 36px);
    color: #22c55e;
    text-align: center;
    margin-bottom: clamp(15px, 2vh, 25px);
    letter-spacing: clamp(1px, 0.2vw, 3px);
}

.tech-layers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.tech-layer {
    width: 100%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid;
    padding: 12px;
    transition: all 0.3s;
}

.tech-layer.frontend {
    border-color: #fbbf24;
}

.tech-layer.anpr {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.tech-layer.anpr .layer-label {
    color: #a855f7;
}

.tech-layer.backend {
    border-color: #22c55e;
}

.tech-layer.tracking {
    border-color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

.tech-layer.tracking .layer-label {
    color: #06b6d4;
}

.tech-layer.database {
    border-color: #3b82f6;
}

.tech-layer.hardware {
    border-color: #ef4444;
}

.tech-layer:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.layer-label {
    font-size: clamp(13px, 1.8vw, 20px);
    color: #fbbf24;
    margin-bottom: clamp(8px, 1vh, 12px);
    text-align: center;
    letter-spacing: clamp(1px, 0.15vw, 2px);
    font-weight: bold;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 1vw, 15px);
    justify-content: center;
}

.tech-item {
    background: rgba(254, 243, 199, 0.1);
    border: 1px solid rgba(254, 243, 199, 0.3);
    padding: clamp(6px, 1vh, 12px) clamp(12px, 1.5vw, 20px);
    font-size: clamp(11px, 1.3vw, 16px);
    color: #fef3c7;
}

.tech-connector {
    font-size: 20px;
    color: #22c55e;
    animation: blink 2s ease-in-out infinite;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-item {
    background: rgba(0, 0, 0, 0.6);
    border-left: 3px solid #22c55e;
    padding: clamp(10px, 1.5vh, 18px) clamp(15px, 2vw, 25px);
    font-size: clamp(12px, 1.5vw, 18px);
    color: rgba(254, 243, 199, 0.9);
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(10px);
}

/* Slide 8: Conclusion Updates */
.impact-message {
    text-align: center;
    margin-bottom: 20px;
}

.impact-title {
    font-size: clamp(40px, 6vw, 80px);
    color: #22c55e;
    font-weight: bold;
    margin-bottom: clamp(10px, 2vh, 20px);
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.8);
    letter-spacing: clamp(4px, 0.6vw, 8px);
}

.impact-subtitle {
    font-size: clamp(16px, 2.2vw, 28px);
    color: #fbbf24;
    margin-bottom: clamp(8px, 1.5vh, 15px);
    letter-spacing: clamp(2px, 0.3vw, 4px);
}

.impact-desc {
    font-size: clamp(12px, 1.5vw, 18px);
    color: rgba(254, 243, 199, 0.85);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.tech-summary {
    text-align: center;
    margin: 40px 0;
}

.tech-summary h3 {
    font-size: clamp(14px, 1.8vw, 22px);
    color: #fbbf24;
    margin-bottom: clamp(10px, 1.5vh, 18px);
    letter-spacing: clamp(1px, 0.2vw, 3px);
}

.tech-stack-final {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 1.5vw, 20px);
    flex-wrap: wrap;
}

.tech-final {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    padding: clamp(8px, 1.2vh, 15px) clamp(15px, 2vw, 30px);
    font-size: clamp(11px, 1.4vw, 18px);
    color: #22c55e;
    font-weight: bold;
}

.contact-info h3 {
    font-size: clamp(14px, 1.8vw, 22px);
    color: #22c55e;
    margin-bottom: clamp(8px, 1vh, 12px);
    letter-spacing: clamp(1px, 0.2vw, 3px);
}

/* ANPR System Showcase */
.anpr-showcase {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 3vh, 40px);
}

.anpr-visual {
    display: flex;
    justify-content: center;
}

.anpr-camera-frame {
    width: clamp(450px, 55vw, 750px);
    text-align: center;
}

.camera-view {
    width: 100%;
    height: clamp(220px, 28vw, 380px);
    border: 3px solid #a855f7;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(168, 85, 247, 0.1));
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plate-detection {
    position: relative;
    z-index: 2;
}

.license-plate {
    background: #fbbf24;
    color: #000;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: bold;
    padding: clamp(10px, 1.5vh, 18px) clamp(20px, 3vw, 40px);
    border: 4px solid #000;
    border-radius: 8px;
    letter-spacing: clamp(3px, 0.5vw, 8px);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
    animation: plateGlow 2s ease-in-out infinite;
}

@keyframes plateGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.8); }
    50% { box-shadow: 0 0 50px rgba(251, 191, 36, 1), 0 0 80px rgba(168, 85, 247, 0.6); }
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(168, 85, 247, 0.1) 0px,
        transparent 2px,
        transparent 4px
    );
    animation: scanMove 2s linear infinite;
    pointer-events: none;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.anpr-label {
    margin-top: clamp(12px, 1.5vh, 20px);
    font-size: clamp(12px, 1.5vw, 18px);
    color: #a855f7;
    font-weight: bold;
    letter-spacing: clamp(1px, 0.15vw, 2px);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.anpr-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
}

.feature-box {
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(168, 85, 247, 0.5);
    padding: clamp(20px, 2.5vh, 35px);
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: #a855f7;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: clamp(42px, 5vw, 64px);
    margin-bottom: clamp(12px, 1.8vh, 20px);
}

.feature-box h3 {
    font-size: clamp(16px, 2vw, 24px);
    color: #a855f7;
    margin-bottom: clamp(10px, 1.5vh, 18px);
    letter-spacing: clamp(1px, 0.15vw, 2.5px);
}

.feature-box p {
    font-size: clamp(14px, 1.7vw, 20px);
    color: rgba(254, 243, 199, 0.8);
    line-height: 1.6;
}

/* Tracking System Showcase */
.tracking-showcase {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 3vh, 40px);
}

.tracking-visual {
    display: flex;
    justify-content: center;
}

.satellite-view {
    width: clamp(500px, 60vw, 800px);
    text-align: center;
}

.map-overlay {
    width: 100%;
    height: clamp(250px, 32vw, 420px);
    border: 3px solid #06b6d4;
    position: relative;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.1), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.1), transparent 40%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(6, 182, 212, 0.1));
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
    overflow: hidden;
}

.tracked-vehicle {
    position: absolute;
    font-size: clamp(24px, 3vw, 40px);
    animation: vehicleMove 8s linear infinite;
}

.vehicle-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.vehicle-2 {
    top: 60%;
    left: 50%;
    animation-delay: 2s;
}

.vehicle-3 {
    top: 45%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes vehicleMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -20px); }
    50% { transform: translate(30px, 40px); }
    75% { transform: translate(-30px, 20px); }
}

.satellite-icon {
    position: absolute;
    top: 10%;
    right: 15%;
    font-size: clamp(28px, 3.5vw, 48px);
    animation: satelliteOrbit 10s linear infinite;
}

@keyframes satelliteOrbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

.drone-icon {
    position: absolute;
    bottom: 20%;
    left: 25%;
    font-size: clamp(24px, 3vw, 40px);
    animation: droneHover 4s ease-in-out infinite;
}

@keyframes droneHover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.tracking-label {
    margin-top: clamp(12px, 1.5vh, 20px);
    font-size: clamp(16px, 2vw, 26px);
    color: #06b6d4;
    font-weight: bold;
    letter-spacing: clamp(1.5px, 0.2vw, 3px);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.tracking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 35px);
}

.tracking-features .feature-box {
    border-color: rgba(6, 182, 212, 0.5);
}

.tracking-features .feature-box:hover {
    border-color: #06b6d4;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
}

.tracking-features .feature-box h3 {
    color: #06b6d4;
}

/* Hiding Techniques Full Page */
.hiding-techniques-full {
    width: 100%;
}

.hiding-techniques-full .techniques-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 2vw, 25px);
}
