/* ==========================================================================
   CARKEYTECH - STYLESHEET (Cyberpunk & Glassmorphism Premium Design)
   ========================================================================== */

/* Variables */
:root {
    --bg-dark-base: #000000;
    --bg-dark-panel: #0d0d12;
    --bg-dark-card: rgba(15, 15, 22, 0.7);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-glow: rgba(255, 255, 255, 0.25);
    
    --cyan-neon: #ffffff;
    --cyan-glow: rgba(255, 255, 255, 0.45);
    --blue-neon: #b0b7c3;
    --blue-glow: rgba(176, 183, 195, 0.4);
    --red-alert: #ff0055;
    --red-glow: rgba(255, 0, 85, 0.45);
    --green-success: #39ff14;
    --green-glow: rgba(57, 255, 20, 0.4);
    
    --text-primary: #ffffff;
    --text-muted: #8a92a6;
    --text-body: #c0c6d4;
    
    --font-cyber: 'Orbitron', sans-serif;
    --font-base: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* CSS Reset & General Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-base);
    color: var(--text-body);
    font-family: var(--font-base);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Utility Classes */
.text-center { text-align: center; }
.text-cyan { color: var(--cyan-neon); }
.text-success { color: var(--green-success); }
.w-100 { width: 100%; }
.btn-sm { padding: 8px 16px !important; font-size: 13px !important; }

/* Futuristic Grid Background & Orbs */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -10;
    pointer-events: none;
}

.cyber-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 10%, var(--bg-dark-base) 80%);
    pointer-events: none;
}

.glow-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -9;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    animation: orbPulse 8s infinite alternate ease-in-out;
}

.orb-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(150, 160, 180, 0.04) 50%, transparent 100%);
    top: -10%;
    right: -5%;
}

.orb-2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(220, 225, 235, 0.12) 0%, rgba(100, 110, 120, 0.03) 60%, transparent 100%);
    bottom: -5%;
    left: -5%;
    animation-delay: -3s;
}

@keyframes orbPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.2; }
    100% { transform: scale(1.15) translate(30px, -20px); opacity: 0.3; }
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
    height: 65px;
}

/* Logo Styling */
.logo-area {
    display: flex;
    align-items: center;
    max-width: 260px;
    height: auto;
    overflow: visible;
    margin-left: 35px;
}

.logo-img {
    height: 115px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.35));
    transition: var(--transition-smooth);
    transform: translateY(28px);
    z-index: 10;
}

.header.scrolled .logo-img {
    height: 85px;
    transform: translateY(18px);
}

.logo-img:hover {
    transform: translateY(28px) scale(1.04);
    filter: drop-shadow(0 0 25px var(--cyan-neon));
}

.header.scrolled .logo-img:hover {
    transform: translateY(18px) scale(1.04);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-cyber);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 4px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan-neon);
    box-shadow: 0 0 8px var(--cyan-neon);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Custom Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-cyber);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, var(--cyan-neon), var(--blue-neon));
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan-neon);
    box-shadow: 0 0 15px var(--cyan-glow);
    transform: translateY(-2px);
}

.btn-emergency-nav {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--red-alert);
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.2);
    font-size: 11px;
    padding: 10px 18px;
}

.btn-emergency-nav:hover {
    background: var(--red-alert);
    color: #fff;
    box-shadow: 0 0 20px var(--red-glow);
}

.btn-glow-cyan {
    background: #000;
    color: var(--cyan-neon);
    border: 1px solid var(--cyan-neon);
    box-shadow: 0 0 10px var(--cyan-glow);
}

.btn-glow-cyan:hover {
    background: var(--cyan-neon);
    color: #000;
    box-shadow: 0 0 25px var(--cyan-neon);
}

.btn-light-glow {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-light-glow:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--green-success);
    color: #000;
    box-shadow: 0 0 15px var(--green-glow);
}

.btn-success:hover {
    box-shadow: 0 0 25px var(--green-success);
}

.btn-link {
    background: none;
    color: var(--cyan-neon);
    padding: 0;
    text-transform: none;
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link i {
    transition: var(--transition-fast);
}

.btn-link:hover i {
    transform: translateX(5px);
}

.pulse-icon {
    animation: iconPulse 1.5s infinite alternate ease-in-out;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.badge-futuristic {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    font-family: var(--font-cyber);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--cyan-neon);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--cyan-neon);
    box-shadow: 0 0 8px var(--cyan-neon);
    animation: blinking 1.2s infinite ease-in-out;
}

@keyframes blinking {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-title {
    font-family: var(--font-cyber);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.text-glow {
    background: linear-gradient(90deg, #fff, #b8c4d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    justify-content: center;
}

.text-whatsapp {
    font-size: 16px;
}

/* Stats Counter Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 550px;
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    margin: 0 auto;
}

.stat-item h3 {
    font-family: var(--font-cyber);
    font-size: 32px;
    font-weight: 700;
    color: var(--cyan-neon);
    text-shadow: 0 0 10px var(--cyan-glow);
    margin-bottom: 4px;
}

.stat-item h3::after {
    content: '+';
    font-size: 20px;
    vertical-align: super;
    margin-left: 2px;
}

.stat-item:first-child h3::after {
    content: '%';
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Note: HUD Interactive Graphic Panel has been removed for layout optimization */

/* --- Brand Sliding Carousel --- */
.brands-section {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.brands-title {
    font-family: var(--font-cyber);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

.brands-wrapper {
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.brands-wrapper::before, .brands-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark-base) 0%, transparent 100%);
}

.brands-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-dark-base) 0%, transparent 100%);
}

.brands-slider {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: slideBrands 45s linear infinite;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-cyber);
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    cursor: pointer;
}

.brand-logo i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease, filter 0.3s ease;
}

.brand-logo span {
    transition: letter-spacing 0.4s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.brand-logo:hover {
    color: var(--text-primary);
    transform: scale(1.15) translateY(-2px);
}

.brand-logo:hover i {
    color: var(--cyan-neon);
    transform: scale(1.25) rotate(15deg);
    filter: drop-shadow(0 0 8px var(--cyan-neon));
}

.brand-logo:hover span {
    color: var(--cyan-neon);
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px var(--cyan-glow);
}

@keyframes slideBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-cyber);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    opacity: 0.3;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--border-glass-glow);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
    transform: translateY(-6px);
}

.service-card:hover .card-glow {
    opacity: 0.7;
    transform: scale(1.3);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-icon-wrapper i {
    font-size: 24px;
    color: var(--cyan-neon);
    filter: drop-shadow(0 0 4px var(--cyan-glow));
}

.service-card:hover .service-icon-wrapper {
    background: var(--cyan-neon);
    border-color: var(--cyan-neon);
}

.service-card:hover .service-icon-wrapper i {
    color: #000;
    filter: none;
}

.service-card-title {
    font-family: var(--font-cyber);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
    margin-top: auto;
}

.service-features li {
    font-size: 13px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Unique Info Card Styling inside Services Grid */
.info-card {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.1) 0%, rgba(13, 13, 20, 0.8) 80%);
    border-color: rgba(0, 114, 255, 0.2);
    justify-content: center;
}

.info-content-card .tech-tag {
    font-family: var(--font-cyber);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--cyan-neon);
    display: block;
    margin-bottom: 10px;
}

.info-content-card h3 {
    font-family: var(--font-cyber);
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.info-content-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* --- Simulator Section --- */
.simulator-section {
    padding: 100px 0;
    background: rgba(10, 10, 14, 0.6);
    border-top: 1px solid var(--border-glass);
    position: relative;
}

.simulator-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
}

.sim-panel {
    background: var(--bg-dark-panel);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sim-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-cyber);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.sim-controls {
    padding: 0;
}

.sim-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-family: var(--font-cyber);
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group select, .form-group input, .form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    color: var(--text-primary);
    padding: 12px 16px;
    font-family: var(--font-base);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-group select:focus, .form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--cyan-neon);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.key-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.key-type-option {
    cursor: pointer;
}

.key-type-option input {
    display: none;
}

.option-box {
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    padding: 14px 8px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.option-box i {
    font-size: 18px;
    color: var(--text-muted);
}

.option-box span {
    font-size: 11px;
    font-family: var(--font-cyber);
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
}

.key-type-option input:checked + .option-box {
    border-color: var(--cyan-neon);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.key-type-option input:checked + .option-box i,
.key-type-option input:checked + .option-box span {
    color: var(--cyan-neon);
}

/* CRT Screen Graphic for Simulator Monitor */
.sim-screen {
    position: relative;
    background-color: #05070a;
    border-color: #1a2233;
}

.screen-glare {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at 50% 15%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 10;
}

.sim-screen::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 9;
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
}

.screen-time {
    margin-left: auto;
    font-family: monospace;
    color: var(--text-muted);
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan-neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan-neon);
    animation: blinking 1.2s infinite ease-in-out;
}

.screen-body {
    flex-grow: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.screen-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.screen-state.active {
    display: flex;
}

.large-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.text-muted-glow {
    color: rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
}

.screen-state h3 {
    font-family: var(--font-cyber);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.screen-state p {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 320px;
}

/* Scanning log styling */
.state-processing {
    align-items: stretch;
    text-align: left;
    height: 100%;
    justify-content: space-between;
}

.scanning-bar {
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--cyan-neon), transparent);
    box-shadow: 0 0 12px var(--cyan-neon);
    animation: scannerMotion 2.5s infinite linear;
    z-index: 3;
}

@keyframes scannerMotion {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

.terminal-logs {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 16px;
    font-family: monospace;
    font-size: 11px;
    color: var(--text-body);
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.log-entry {
    opacity: 0;
    transform: translateY(4px);
    animation: logFadeIn 0.3s forwards ease-out;
}

.log-entry.info { color: var(--text-muted); }
.log-entry.warn { color: var(--cyan-neon); }
.log-entry.success { color: var(--green-success); }
.log-entry.danger { color: var(--red-alert); }

@keyframes logFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.progress-bar-container {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--blue-neon), var(--cyan-neon));
    box-shadow: 0 0 10px var(--cyan-glow);
    transition: width 0.1s ease;
}

.progress-percent {
    position: relative;
    z-index: 2;
    font-size: 11px;
    font-family: var(--font-cyber);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Success layout */
.state-success .success-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid var(--green-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    animation: successPulse 2s infinite ease-in-out;
}

.state-success .success-icon-container i {
    font-size: 36px;
    color: var(--green-success);
    filter: drop-shadow(0 0 6px var(--green-glow));
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 10px var(--green-glow); }
    50% { box-shadow: 0 0 25px var(--green-success); }
}

.results-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    margin: 20px 0;
}

.result-tile {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tile-lbl {
    font-size: 9px;
    color: var(--text-muted);
    font-family: var(--font-cyber);
    text-transform: uppercase;
}

.tile-val {
    font-size: 12px;
    font-family: var(--font-cyber);
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
}

.success-note {
    font-size: 11px !important;
    margin-bottom: 24px;
}

.success-actions {
    display: flex;
    gap: 12px;
    width: 100%;
}

/* --- Emergency Banner Section --- */
.emergency-banner {
    background: linear-gradient(90deg, #6c0022 0%, var(--bg-dark-panel) 70%);
    border-top: 1px solid var(--red-alert);
    border-bottom: 1px solid var(--red-alert);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
    top: -150px;
    left: -50px;
    opacity: 0.5;
    pointer-events: none;
}

.banner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-cyber);
    font-size: 11px;
    font-weight: 700;
    color: var(--red-alert);
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid rgba(255, 0, 85, 0.3);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.banner-text h2 {
    font-family: var(--font-cyber);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.banner-text p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 700px;
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-detail {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 18px;
    color: var(--cyan-neon);
}

.info-card-detail h4 {
    font-family: var(--font-cyber);
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.info-card-detail p {
    font-size: 13px;
    color: var(--text-muted);
}

.map-decoration {
    border: 1px solid var(--border-glass);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(13, 13, 20, 0.9) 100%);
    border-radius: 8px;
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-scanner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 15px 15px, 15px 15px;
}

.map-overlay {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-overlay i {
    font-size: 32px;
    color: var(--cyan-neon);
    animation: beacon 2s infinite ease-in-out;
}

.map-overlay span {
    font-family: var(--font-cyber);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-primary);
}

@keyframes beacon {
    0%, 100% { opacity: 0.6; transform: scale(1); filter: drop-shadow(0 0 2px var(--cyan-glow)); }
    50% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 10px var(--cyan-neon)); }
}

/* Futuristic Form Style */
.contact-form-container {
    background: var(--bg-dark-panel);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.cyber-form .form-row-2, .cyber-form .form-row-3 {
    display: grid;
    gap: 20px;
}

.cyber-form .form-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cyber-form .form-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* --- Footer Section --- */
.footer {
    background: #000000;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .brand-text {
    font-family: var(--font-cyber);
    font-weight: 900;
    font-size: 24px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.footer-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}

.social-links a:hover {
    color: #000;
    background: var(--cyan-neon);
    border-color: var(--cyan-neon);
    box-shadow: 0 0 10px var(--cyan-glow);
}

.footer-links h4 {
    font-family: var(--font-cyber);
    font-size: 13px;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--cyan-neon);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

/* --- Floating Components --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: var(--bg-dark-panel);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-neon);
    font-size: 14px;
    cursor: pointer;
    z-index: 90;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    right: 30px;
}

.back-to-top:hover {
    background: var(--cyan-neon);
    color: #000;
    border-color: var(--cyan-neon);
    box-shadow: 0 0 15px var(--cyan-glow);
    transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Adaptive Grid Layouts)
   ========================================================================== */

@media (max-width: 992px) {
    .simulator-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
        background: rgba(6, 6, 8, 0.9);
    }

    .nav-container {
        height: 60px !important;
        padding: 0 16px;
    }

    .logo-area {
        max-width: 160px;
        margin-left: 0;
    }

    .logo-img {
        height: 32px !important;
        transform: translateY(6px) !important;
    }

    .logo-img:hover {
        transform: translateY(6px) scale(1.05) !important;
    }

    .header.scrolled .logo-img {
        height: 28px !important;
        transform: translateY(4px) !important;
    }

    .header.scrolled .logo-img:hover {
        transform: translateY(4px) scale(1.05) !important;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.98);
        border-top: 1px solid var(--border-glass);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: var(--transition-smooth);
        z-index: 99;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-actions {
        gap: 12px;
    }

    .btn-emergency-nav span {
        display: none;
    }

    .btn-emergency-nav {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-section {
        padding-top: 110px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .hero-container {
        gap: 24px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 16px;
        width: 100%;
        max-width: 320px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 12px;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .stat-item h3 {
        font-size: 28px !important;
        margin-bottom: 2px;
    }

    .services-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 24px;
    }

    .sim-form {
        padding: 20px;
    }

    .screen-body {
        padding: 20px;
    }

    .terminal-logs {
        height: 160px;
        padding: 12px;
    }

    .cyber-form .form-row-2, .cyber-form .form-row-3 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-form-container {
        padding: 24px;
    }

    .emergency-banner {
        padding: 35px 0;
        text-align: center;
    }

    .banner-text h2 {
        font-size: 22px;
    }

    .banner-text p {
        font-size: 13px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .brands-slider {
        gap: 25px;
    }

    .brand-logo {
        font-size: 13px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .key-selector-grid {
        grid-template-columns: 1fr;
    }

    .results-dashboard {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* ==========================================================================
   LANGUAGE GATE SELECTOR STYLES (Cyberpunk / Glassmorphism)
   ========================================================================== */

/* Disable scroll when gate is active */
body.gate-active {
    overflow: hidden;
    height: 100vh;
}

.language-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark-base);
    z-index: 99999; /* Ensure it is above the header and everything else */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, visibility 0.8s;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    padding: 30px 15px;
}

.language-gate.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    pointer-events: none;
}

.gate-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.gate-glow-orb {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(130, 140, 150, 0.03) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
    z-index: 2;
    pointer-events: none;
    animation: gateOrbPulse 10s infinite alternate ease-in-out;
}

@keyframes gateOrbPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-45%, -52%) scale(1.1); opacity: 1; }
}

.gate-card {
    position: relative;
    z-index: 10;
    background: rgba(13, 13, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 60px 40px;
    width: 90%;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: gateCardEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gateCardEntrance {
    0% { transform: translateY(40px) scale(0.95); opacity: 0; filter: blur(10px); }
    100% { transform: translateY(0) scale(1); opacity: 1; filter: blur(0); }
}

.gate-logo-wrapper {
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
    padding: 10px;
}

.gate-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    animation: gateLogoCyber 6s infinite ease-in-out;
    transition: var(--transition-smooth);
}

@keyframes gateLogoCyber {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
    }
    45% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 22px rgba(230, 240, 255, 0.55));
    }
    /* Glitch triggers */
    47% {
        transform: scale(1.04) skewX(-4deg) translate(-2px, 1px);
        filter: drop-shadow(-3px -1px 0px var(--red-alert)) drop-shadow(3px 1px 0px var(--cyan-neon)) drop-shadow(0 0 20px rgba(230, 240, 255, 0.4));
    }
    48% {
        transform: scale(1.04) skewX(4deg) translate(2px, -1px);
        filter: drop-shadow(3px 1px 0px var(--red-alert)) drop-shadow(-3px -1px 0px var(--cyan-neon)) drop-shadow(0 0 20px rgba(230, 240, 255, 0.4));
    }
    49% {
        transform: scale(1.04) skewX(0deg) translate(0, 0);
        filter: drop-shadow(0 0 22px rgba(230, 240, 255, 0.55));
    }
    70% {
        transform: scale(1.01);
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.35));
    }
    /* Glitch trigger 2 */
    72% {
        transform: scale(1.01) skewY(1deg) translate(1px, -1px);
        filter: drop-shadow(-2px 1px 0px var(--red-alert)) drop-shadow(2px -1px 0px var(--cyan-neon));
    }
    73% {
        transform: scale(1.01) skewY(0deg) translate(0, 0);
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.35));
    }
}

.gate-heading {
    font-family: var(--font-cyber);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.gate-heading span {
    font-size: 15px;
    opacity: 0.9;
    margin-top: 8px;
    display: block;
    letter-spacing: 3px;
}

.gate-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.gate-btn {
    flex: 1;
    max-width: 180px;
    height: 52px;
    font-family: var(--font-cyber);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    outline: none;
}

.btn-en {
    background: transparent;
    color: var(--cyan-neon);
    border: 1px solid var(--cyan-neon);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.btn-en:hover {
    background: var(--cyan-neon);
    color: #000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-es {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass-glow);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.btn-es:hover {
    background: var(--text-primary);
    color: #000;
    border-color: var(--text-primary);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-glitch-icon {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 6px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: monospace;
    transition: var(--transition-fast);
}

.btn-en:hover .btn-glitch-icon {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
    color: #000;
}

.btn-es:hover .btn-glitch-icon {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
    color: #000;
}

.gate-tech-info {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gate-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--cyan-neon);
    box-shadow: 0 0 8px var(--cyan-neon);
    animation: blinking 1.2s infinite ease-in-out;
}

@media (max-width: 576px) {
    .gate-card {
        padding: 45px 25px;
    }
    
    .gate-logo {
        height: 100px;
    }
    
    .gate-heading {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .gate-heading span {
        font-size: 13px;
    }
    
    .gate-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .gate-btn {
        width: 100%;
        max-width: 100%;
    }
}


/* ==========================================================================
   COVERAGE SECTION STYLES
   ========================================================================== */

.coverage-section {
    padding: 100px 0;
    position: relative;
    background: #000000;
    border-bottom: 1px solid var(--border-glass);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.coverage-intro {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 30px;
    line-height: 1.7;
}

.state-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.state-card {
    background: var(--bg-dark-panel);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.state-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.state-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.state-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.state-header i {
    font-size: 16px;
    color: var(--text-primary);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

.state-header h3 {
    font-family: var(--font-cyber);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.state-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Map styles */
.coverage-map-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.map-wrapper {
    position: relative;
    background: rgba(13, 13, 20, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.map-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.map-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.coverage-map-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 2;
}

.map-hud-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 3;
}

.hud-item {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 6px 12px;
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.hud-dot {
    width: 6px;
    height: 6px;
    background: var(--green-success);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green-success);
}

.hud-dot.blinking {
    animation: blinking 1.2s infinite ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .coverage-section {
        padding: 60px 0;
    }
}


