/* ==========================================================================
   NAMK9.IO.VN - MASTER AURORA DESIGN SYSTEM (DAYLIGHT TELECOM LANDSCAPE)
   100% Exact match to Reference Image 3 (Aurora)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --aurora-lime: #d4f982;
  --aurora-lime-glow: rgba(212, 249, 130, 0.45);
  --aurora-lime-dark: #122602;
  --aurora-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Be Vietnam Pro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #ffffff;
  background-color: #0b1a2d;
  -webkit-font-smoothing: antialiased;
}

/* 1. HERO WRAPPER WITH DIRECT BACKGROUND IMAGE */
.aurora-hero-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: 
    linear-gradient(180deg, 
      rgba(8, 20, 36, 0.38) 0%, 
      rgba(8, 20, 36, 0.10) 35%, 
      rgba(8, 20, 36, 0.18) 65%, 
      rgba(8, 20, 36, 0.38) 100%),
    url('./telecom_aurora.jpg') no-repeat center center / cover !important;
  padding: 76px 20px 16px;
  text-align: center;
  overflow: hidden;
}

/* 2. TOP FLOATING NAVBAR (AURORA MINIMAL LUXURY) */
.aurora-header,
.aurora-header.scrolled,
.aurora-header:not(.scrolled),
.aurora-hero-container > .aurora-header,
.aurora-hero-container > .aurora-header:not(.scrolled),
.aurora-hero-container > .aurora-header.scrolled {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  transition: none !important;
}
.aurora-nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Brand Logo (Balanced Distance to Menu) */
.aurora-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  justify-self: end;
  margin-right: 80px;
}
.aurora-logo-svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.aurora-brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Desktop Nav Links (Centered in dead center) */
.aurora-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-self: center;
}
.aurora-nav-actions,
.aurora-nav-container > div:last-child {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  justify-self: start !important;
  margin-left: 80px !important;
}
.aurora-nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
  transition: all 0.2s ease;
  padding: 6px 4px;
}
.aurora-nav-link:hover {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}
.aurora-nav-link.active {
  color: var(--aurora-lime);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* MEGA DROPDOWN MENU FOR AURORA */
.aurora-dropdown {
  position: relative;
}
.aurora-dropdown-toggle {
  cursor: pointer !important;
  user-select: none;
}
.aurora-dropdown-toggle [data-lucide="chevron-down"],
.aurora-dropdown-toggle i.fa-chevron-down,
.aurora-dropdown-toggle svg.lucide-chevron-down,
.aurora-dropdown-toggle svg {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.aurora-dropdown:hover .aurora-dropdown-toggle [data-lucide="chevron-down"],
.aurora-dropdown:hover .aurora-dropdown-toggle svg,
.aurora-dropdown.is-open .aurora-dropdown-toggle [data-lucide="chevron-down"],
.aurora-dropdown.is-open .aurora-dropdown-toggle svg {
  transform: rotate(180deg) !important;
}

/* Invisible Hover Bridge connecting Nav Link and Dropdown Menu */
.aurora-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -30px;
  right: -30px;
  height: 25px;
  background: transparent;
  display: block;
  z-index: 1040;
}

.aurora-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.aurora-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 760px;
  background: rgba(8, 20, 38, 0.96) !important;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 14px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 249, 130, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--aurora-ease), transform 0.2s var(--aurora-ease), visibility 0.2s;
  z-index: 1050;
  text-align: left;
}

/* Upward bridge from the menu towards the nav link */
.aurora-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 22px;
  background: transparent;
  display: block;
}

.aurora-dropdown:hover .aurora-dropdown-menu,
.aurora-dropdown.is-open .aurora-dropdown-menu,
.aurora-dropdown:focus-within .aurora-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.aurora-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.aurora-col-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--aurora-lime);
  padding: 2px 6px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 3px;
}
.aurora-col-title i,
.aurora-col-title svg {
  width: 12px !important;
  height: 12px !important;
  font-size: 0.72rem !important;
}
.aurora-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 7px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
}
.aurora-menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}
.aurora-item-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--aurora-lime);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.aurora-item-icon svg,
.aurora-item-icon i {
  width: 13px !important;
  height: 13px !important;
  font-size: 0.72rem !important;
}
.aurora-item-title {
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.25;
}
.aurora-item-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  line-height: 1.25;
  margin-top: 1px;
}
.aurora-badge-pill {
  font-size: 0.55rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 9999px;
  text-transform: uppercase;
  background: rgba(212, 249, 130, 0.15) !important;
  color: var(--aurora-lime) !important;
  border: 1px solid rgba(212, 249, 130, 0.3) !important;
}

/* QUICK SEARCH BUTTON (CTRL + K) */
.aurora-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 6px 12px;
  height: 36px;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}
.aurora-search-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}
.aurora-search-kbd {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.65rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--aurora-lime);
}

/* SPOTLIGHT SEARCH MODAL */
.aurora-spotlight-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--aurora-ease);
}
.aurora-spotlight-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.aurora-spotlight-dialog {
  width: 90%;
  max-width: 680px;
  background: rgba(8, 20, 38, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  box-shadow: 0 25px 70px -10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 249, 130, 0.15);
  overflow: hidden;
  transform: scale(0.96) translateY(-10px);
  transition: all 0.25s var(--aurora-ease);
}
.aurora-spotlight-backdrop.active .aurora-spotlight-dialog {
  transform: scale(1) translateY(0);
}
.aurora-spotlight-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.aurora-spotlight-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.05rem;
  font-family: inherit;
}
.aurora-spotlight-results {
  max-height: 380px;
  overflow-y: auto;
  padding: 12px;
}
.aurora-spotlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.15s ease;
}
.aurora-spotlight-item:hover, .aurora-spotlight-item.focused {
  background: rgba(212, 249, 130, 0.15);
  color: var(--aurora-lime);
}

/* Sign In / Connect Button */
.aurora-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  height: 36px;
  border-radius: 9999px;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.25s var(--aurora-ease);
  white-space: nowrap;
  box-sizing: border-box;
}
.aurora-connect-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* 3. HERO CENTER CONTENT (MATCHING HÌNH 3 EXACTLY) */
.aurora-hero-center {
  max-width: 900px;
  width: 100%;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow Pill Badge */
.aurora-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 20, 36, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 5px 16px;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.aurora-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80, 0 0 16px #4ade80;
}

/* Big Display Serif Title - Sharp Outline Contour on Bright Background */
.aurora-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  line-height: 1.15;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  max-width: 780px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* Subtitle Narrative - Frosted Border Pill */
.aurora-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 660px;
  margin: 0 auto 20px;
  background: rgba(8, 20, 36, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  padding: 10px 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  font-weight: 450;
}

/* Signature Glowing Lime Pill Button */
.aurora-btn-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--aurora-lime);
  color: var(--aurora-lime-dark);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--aurora-lime-glow), 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.25s var(--aurora-ease);
  margin-bottom: 22px;
}
.aurora-btn-lime:hover {
  background: #e4fdb0;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 34px rgba(212, 249, 130, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
  color: var(--aurora-lime-dark);
}

/* 4. FEATURE TRIO FROSTED GLASS CARDS */
.aurora-trio-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 940px;
  width: 100%;
}
.aurora-trio-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: all 0.25s var(--aurora-ease);
  flex: 1;
  min-width: 200px;
  max-width: 265px;
  text-decoration: none;
  color: #ffffff;
}
.aurora-trio-card:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.aurora-trio-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.aurora-trio-text strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.aurora-trio-text span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 5. MULTI-VENDOR TRUST STRIP (BOTTOM OF HERO) */
.aurora-trust-strip {
  width: 100%;
  max-width: 940px;
  margin-top: auto;
  padding-top: 12px;
}
.aurora-trust-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
}
.aurora-trust-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}
.aurora-trust-label {
  position: relative;
  background: rgba(8, 20, 36, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  padding: 4px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.aurora-vendor-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.aurora-vendor-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
  opacity: 0.95;
  transition: all 0.2s ease;
}
.aurora-vendor-item:hover {
  opacity: 1;
  color: var(--aurora-lime);
  transform: translateY(-1px);
}

/* 6. ECOSYSTEM SECTION BELOW HERO (OPTIONAL SMOOTH SCROLL) */
.aurora-section {
  background: #081426;
  padding: 80px 24px;
  position: relative;
}
.aurora-section-container {
  max-width: 1320px;
  margin: 0 auto;
}
.aurora-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.aurora-section-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
  font-size: 2.8rem;
  margin: 0 0 16px;
  font-weight: 400;
}
.aurora-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.aurora-card {
  background: rgba(14, 30, 52, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.25s var(--aurora-ease);
}
.aurora-card:hover {
  border-color: rgba(212, 249, 130, 0.4);
  background: rgba(18, 38, 66, 0.85);
  transform: translateY(-3px);
}
.col-7 { grid-column: span 7; }
.col-5 { grid-column: span 5; }
/* ==========================================================================
   TIERED LUXURY CONTENT SECTIONS (MATCHING OCEAN HAVEN RESORT REFERENCE 1 & 2)
   ========================================================================== */

.aurora-light-wrapper {
  position: relative;
  width: 100%;
  background: 
    linear-gradient(180deg, 
      rgba(8, 20, 36, 0.28) 0%, 
      rgba(8, 20, 36, 0.06) 25%, 
      rgba(8, 20, 36, 0.12) 70%, 
      rgba(8, 20, 36, 0.45) 100%),
    url('./telecom_bg_meadow.jpg') no-repeat center top / cover fixed !important;
  color: #ffffff;
  padding-bottom: 0;
}

.aurora-tier-section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 20px 42px;
}

.aurora-tier-header {
  text-align: center;
  margin-bottom: 28px;
}

.aurora-tier-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 20, 36, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 4px 14px;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aurora-lime);
  margin-bottom: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.aurora-tier-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

.aurora-tier-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 10px;
  color: #ffffff;
}

.aurora-tier-divider .line {
  width: 34px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.aurora-tier-divider .symbol {
  font-size: 0.68rem;
  color: var(--aurora-lime);
  text-shadow: 0 0 8px var(--aurora-lime), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.aurora-tier-subtitle {
  display: inline-block;
  font-size: 0.84rem;
  color: #ffffff;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
  background: rgba(8, 20, 36, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 9999px;
  padding: 6px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}

/* TẦNG 1: ROOMS & SUITES STYLE (3 LARGE CARDS - COMPACT SCALE) */
.aurora-tier1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.aurora-tier1-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s var(--aurora-ease), box-shadow 0.3s var(--aurora-ease);
  display: flex;
  flex-direction: column;
}

.aurora-tier1-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.aurora-tier1-img-box {
  position: relative;
  width: 100%;
  height: 165px;
  overflow: hidden;
  background: #e2e8f0;
}

.aurora-tier1-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--aurora-ease);
}

.aurora-tier1-card:hover .aurora-tier1-img-box img {
  transform: scale(1.05);
}

.aurora-tier1-body {
  padding: 16px 14px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aurora-tier1-card-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1c1917;
  margin: 0 0 6px;
}

.aurora-tier1-card-desc {
  font-size: 0.78rem;
  color: #57534e;
  line-height: 1.45;
  margin: 0 0 12px;
  flex: 1;
}

.aurora-tier1-metric {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #44403c;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.aurora-tier1-metric strong {
  font-size: 0.88rem;
  color: #1c1917;
}

.aurora-tier1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 0;
  background: #1c2619;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.aurora-tier1-btn:hover {
  background: #2a3d24;
  color: var(--aurora-lime) !important;
  box-shadow: 0 4px 14px rgba(28, 38, 25, 0.25);
}

/* OUTLINE PILL BUTTON (VIEW ALL) */
.aurora-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(8, 20, 38, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
}

.aurora-outline-btn:hover {
  background: var(--aurora-lime);
  color: var(--aurora-lime-dark);
  border-color: var(--aurora-lime);
  box-shadow: 0 8px 25px var(--aurora-lime-glow);
  text-shadow: none;
}

/* TẦNG 2: EXPERIENCES TO INSPIRE STYLE (4 CARDS - COMPACT SCALE) */
.aurora-tier2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.aurora-tier2-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--aurora-ease), box-shadow 0.3s var(--aurora-ease);
  text-decoration: none;
  color: inherit;
}

.aurora-tier2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.aurora-tier2-img-box {
  position: relative;
  width: 100%;
  height: 125px;
  border-radius: 12px 12px 0 0;
  overflow: visible;
  background: #e2e8f0;
  margin-bottom: 20px;
}

.aurora-tier2-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.aurora-tier2-badge {
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e7e5e4;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #1c2619;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.aurora-tier2-badge i, .aurora-tier2-badge svg {
  width: 16px;
  height: 16px;
}

.aurora-tier2-card:hover .aurora-tier2-badge {
  transform: translateX(-50%) scale(1.1);
  background: #1c2619;
  color: var(--aurora-lime);
}

.aurora-tier2-body {
  padding: 0 12px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aurora-tier2-card-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c1917;
  margin: 0 0 5px;
}

.aurora-tier2-card-desc {
  font-size: 0.72rem;
  color: #57534e;
  line-height: 1.4;
  margin: 0 0 10px;
  flex: 1;
}

.aurora-tier2-card-link {
  font-size: 0.70rem;
  font-weight: 700;
  color: #78716c;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.aurora-tier2-card:hover .aurora-tier2-card-link {
  color: #1c2619;
}

/* TẦNG 3: MEMORIES THAT LAST A LIFETIME (3 REVIEW / CORE FEATURE CARDS - COMPACT) */
.aurora-tier3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.aurora-tier3-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 20px 18px 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.aurora-tier3-quote-mark {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: #d6d3d1;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 14px;
}

.aurora-tier3-text {
  font-size: 0.80rem;
  color: #44403c;
  line-height: 1.5;
  margin: 14px 0 16px;
  font-style: italic;
}

.aurora-tier3-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f5f5f4;
  padding-top: 12px;
}

.aurora-tier3-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aurora-tier3-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1c2619;
  color: var(--aurora-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}

.aurora-tier3-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1c1917;
}

.aurora-tier3-role {
  font-size: 0.68rem;
  color: #78716c;
}

.aurora-tier3-stars {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* TẦNG 4: PLAN YOUR PERFECT GETAWAY (CALL TO ACTION SUNSET BANNER - COMPACT) */
.aurora-sunset-banner {
  position: relative;
  width: 100%;
  min-height: 280px;
  background: 
    linear-gradient(180deg, rgba(12, 19, 29, 0.45) 0%, rgba(12, 19, 29, 0.82) 100%),
    url('./banner_sunset.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 55px 20px;
  color: #ffffff;
}

.aurora-banner-content {
  max-width: 700px;
}

.aurora-banner-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

.aurora-banner-desc {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 auto 22px;
  background: rgba(8, 20, 36, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 6px 24px;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.aurora-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5eedc;
  color: #1c1917;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
}

.aurora-banner-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* 7. LUXURY FOOTER (MATCHING OCEAN HAVEN BOTTOM) */
.aurora-footer-luxury {
  background: rgba(10, 18, 30, 0.28) !important;
  backdrop-filter: blur(8px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.aurora-footer-container {
  max-width: 1060px;
  margin: 0 auto;
}

.aurora-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr 1.5fr;
  gap: 30px;
  margin-bottom: 36px;
}

.aurora-footer-col h4 {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.aurora-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aurora-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.aurora-footer-links a:hover {
  color: var(--aurora-lime);
}

.aurora-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* 8. RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
  .aurora-brand {
    margin-right: 45px;
  }
  .aurora-nav-actions,
  .aurora-nav-container > div:last-child {
    margin-left: 45px !important;
  }
}

@media (max-width: 992px) {
  .aurora-nav-container {
    padding: 0 16px;
  }
  .aurora-brand {
    margin-right: 20px;
  }
  .aurora-nav-actions,
  .aurora-nav-container > div:last-child {
    margin-left: 20px !important;
  }
  .aurora-nav-links {
    gap: 16px;
  }
  .aurora-nav-link {
    font-size: 0.84rem;
  }
  .aurora-title {
    font-size: 3.2rem;
  }
  .aurora-trio-row {
    flex-direction: column;
    align-items: stretch;
  }
  .aurora-trio-card {
    max-width: 100%;
  }
  .aurora-tier1-grid,
  .aurora-tier2-grid,
  .aurora-tier3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aurora-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .aurora-nav-container {
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
  }
  .aurora-brand {
    margin-right: 0 !important;
    justify-self: auto !important;
  }
  .aurora-nav-actions,
  .aurora-nav-container > div:last-child {
    margin-left: 0 !important;
    justify-self: auto !important;
  }
  .aurora-nav-links {
    display: none !important;
  }
  .aurora-title {
    font-size: 2.3rem;
  }
  .aurora-tier-title {
    font-size: 1.8rem;
  }
  .aurora-banner-title {
    font-size: 2rem;
  }
  .aurora-tier1-grid,
  .aurora-tier2-grid,
  .aurora-tier3-grid {
    grid-template-columns: 1fr;
  }
  .aurora-footer-grid {
    grid-template-columns: 1fr;
  }
  .aurora-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .aurora-vendor-logos {
    gap: 18px;
  }
}

/* ==========================================================================
   AURORA SUBPAGE & TOOLS DESIGN SYSTEM (DAYLIGHT TELECOM LUXURY)
   ========================================================================== */

/* 1. Full-page Daylight Telecom background for subpages */
body.aurora-page,
body.aurora-software-page {
  background: 
    linear-gradient(180deg, 
      rgba(8, 20, 36, 0.42) 0%, 
      rgba(8, 20, 36, 0.15) 30%, 
      rgba(8, 20, 36, 0.32) 70%, 
      rgba(8, 20, 36, 0.65) 100%),
    url('./telecom_aurora.jpg') no-repeat center top / cover fixed !important;
  color: #ffffff !important;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.aurora-page .background-wrapper,
body.aurora-page .background-overlay,
body.aurora-page #signal-canvas,
body.aurora-software-page .background-wrapper,
body.aurora-software-page .background-overlay,
body.aurora-software-page #signal-canvas {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* 2. Aurora Subpage Header */
.aurora-subpage-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 1.8rem auto;
  padding-top: 15px;
}

.aurora-subpage-header .aurora-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 20, 36, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 5px 16px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aurora-lime);
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.aurora-subpage-header .aurora-pill .aurora-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aurora-lime);
  box-shadow: 0 0 10px var(--aurora-lime);
}

.aurora-subpage-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

.aurora-subpage-desc {
  display: inline-block;
  font-size: 0.92rem;
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
  background: rgba(8, 20, 36, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  padding: 7px 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}

/* 3. Floating Tool Switcher Tab Bar */
.aurora-tools-nav-container {
  max-width: 1280px;
  margin: 0 auto 2rem auto;
  padding: 0 16px;
}

.aurora-tools-nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(8, 20, 38, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 249, 130, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.aurora-tools-nav-bar::-webkit-scrollbar {
  display: none;
}

.aurora-tool-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.22s var(--aurora-ease);
  flex-shrink: 0;
}

.aurora-tool-tab-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.aurora-tool-tab-btn.active {
  background: var(--aurora-lime) !important;
  color: #122602 !important;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(212, 249, 130, 0.45);
  border-color: var(--aurora-lime) !important;
}

.aurora-tool-tab-btn i,
.aurora-tool-tab-btn svg {
  font-size: 0.9rem;
}

/* 4. Luxury Glass Cards for Tools */
.tech-tool-card,
.vnnic-speed-container,
.dl-action-card,
.compressor-container,
.cctv-card,
.vpn-card,
.unattend-card,
.itfix-card,
.bgremover-container,
.qrstudio-container,
.aurora-glass-card {
  background: rgba(8, 20, 38, 0.78) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 22px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 249, 130, 0.08) !important;
  color: #ffffff !important;
}

/* 5. IP & Network Intelligence 4-Cards Grid */
.ip-intel-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin-bottom: 22px !important;
}
@media (max-width: 992px) {
  .ip-intel-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .ip-intel-grid {
    grid-template-columns: 1fr !important;
  }
}
.ip-intel-card {
  background: rgba(8, 20, 38, 0.75) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 18px !important;
  padding: 1.25rem 1.35rem !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.25s var(--aurora-ease) !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}
.ip-intel-card:hover {
  border-color: var(--aurora-lime) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 249, 130, 0.18) !important;
  transform: translateY(-3px) !important;
}
.ip-intel-label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.ip-intel-val {
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  font-family: 'JetBrains Mono', monospace !important;
  margin: 8px 0 4px 0 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
  line-height: 1.3 !important;
}
.ip-intel-sub {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.74rem !important;
  margin-top: 4px !important;
}
.ip-copy-btn {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  padding: 4px 10px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}
.ip-copy-btn:hover {
  background: var(--aurora-lime) !important;
  color: #122602 !important;
  border-color: var(--aurora-lime) !important;
}

/* 6. VNNIC Speedtest Container & Metrics */
.vnnic-speed-container {
  background: rgba(8, 20, 38, 0.82) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 24px !important;
  padding: 2.2rem 2rem !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 249, 130, 0.08) !important;
  margin-bottom: 2rem !important;
  position: relative !important;
}

.vnnic-header-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 24px 0 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

.vnnic-metrics-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin-bottom: 26px !important;
}
@media (max-width: 860px) {
  .vnnic-metrics-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 500px) {
  .vnnic-metrics-row {
    grid-template-columns: 1fr !important;
  }
}

.vnnic-metric-col {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 16px !important;
  padding: 16px 14px !important;
  text-align: center !important;
  transition: all 0.25s ease !important;
}
.vnnic-metric-col:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px) !important;
}
.vnnic-metric-col.active {
  background: rgba(212, 249, 130, 0.12) !important;
  border-color: var(--aurora-lime) !important;
  box-shadow: 0 0 20px rgba(212, 249, 130, 0.2) !important;
}

.vnnic-metric-title {
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 6px !important;
}

.vnnic-metric-value {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}
#colMetricDownload .vnnic-metric-value {
  color: var(--aurora-lime) !important;
  text-shadow: 0 0 18px rgba(212, 249, 130, 0.6) !important;
}
#colMetricUpload .vnnic-metric-value {
  color: #38bdf8 !important;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.6) !important;
}
#colMetricPing .vnnic-metric-value {
  color: #22c55e !important;
  text-shadow: 0 0 18px rgba(34, 197, 94, 0.6) !important;
}
#colMetricJitter .vnnic-metric-value {
  color: #f59e0b !important;
  text-shadow: 0 0 18px rgba(245, 158, 11, 0.6) !important;
}

.vnnic-metric-unit {
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 4px !important;
}

/* Speedometer center circle button & needle */
.vnnic-circle-btn {
  background: var(--aurora-lime) !important;
  color: #122602 !important;
  border: 2.5px solid #ffffff !important;
  box-shadow: 0 0 30px rgba(212, 249, 130, 0.65), 0 6px 20px rgba(0, 0, 0, 0.5) !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  transition: all 0.25s var(--aurora-ease) !important;
}
.vnnic-circle-btn:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 0 45px rgba(212, 249, 130, 0.9), 0 8px 25px rgba(0, 0, 0, 0.6) !important;
}
.vnnic-circle-btn i,
.vnnic-circle-btn svg {
  color: #122602 !important;
}

/* Share result buttons */
.vnnic-share-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  padding: 6px 14px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  transition: all 0.2s !important;
}
.vnnic-share-btn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: var(--aurora-lime) !important;
}

/* 7. Real-world Experience Application Cards */
.speed-app-eval-section {
  background: rgba(8, 20, 38, 0.72) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 20px !important;
  padding: 22px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
  margin-bottom: 2rem !important;
}

.speed-app-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin-top: 16px !important;
}
@media (max-width: 992px) {
  .speed-app-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 550px) {
  .speed-app-grid {
    grid-template-columns: 1fr !important;
  }
}

.speed-app-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 16px !important;
  padding: 16px !important;
  transition: all 0.25s ease !important;
}
.speed-app-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(212, 249, 130, 0.4) !important;
  transform: translateY(-2px) !important;
}

.speed-app-name {
  color: #ffffff !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
}

.speed-app-status-badge {
  display: inline-block !important;
  border-radius: 9999px !important;
  padding: 3px 10px !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  margin: 10px 0 8px 0 !important;
  letter-spacing: 0.05em !important;
}
.speed-app-status-badge.good,
.speed-app-status-badge.excellent {
  background: rgba(212, 249, 130, 0.18) !important;
  color: var(--aurora-lime) !important;
  border: 1px solid rgba(212, 249, 130, 0.35) !important;
}
.speed-app-status-badge.fair {
  background: rgba(56, 189, 248, 0.18) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
}
.speed-app-desc {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.76rem !important;
  line-height: 1.45 !important;
}

/* 8. Inputs & Action Buttons for All Tools */
.tech-input,
.tech-select,
.dl-url-input,
.qr-input {
  background: rgba(5, 12, 26, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  padding: 12px 16px !important;
  font-size: 0.92rem !important;
}
.tech-input:focus,
.tech-select:focus,
.dl-url-input:focus,
.qr-input:focus {
  border-color: var(--aurora-lime) !important;
  box-shadow: 0 0 16px rgba(212, 249, 130, 0.3) !important;
  background: rgba(5, 12, 26, 0.9) !important;
  outline: none !important;
}

.tech-btn-action,
.dl-fetch-btn {
  background: var(--aurora-lime) !important;
  color: #122602 !important;
  font-weight: 800 !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px 24px !important;
  box-shadow: 0 6px 20px rgba(212, 249, 130, 0.35) !important;
  cursor: pointer !important;
  transition: all 0.25s var(--aurora-ease) !important;
}
.tech-btn-action:hover,
.dl-fetch-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(212, 249, 130, 0.6) !important;
}

.tech-btn-outline {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
}
.tech-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: var(--aurora-lime) !important;
  color: var(--aurora-lime) !important;
}

.platform-pill {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}
.platform-pill.active {
  background: rgba(212, 249, 130, 0.2) !important;
  border-color: var(--aurora-lime) !important;
  color: var(--aurora-lime) !important;
  box-shadow: 0 0 15px rgba(212, 249, 130, 0.3) !important;
}

.tech-code-box {
  background: rgba(3, 8, 18, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 14px !important;
  color: #e2e8f0 !important;
}

/* 9. Compliance Banner & Footer */
.compliance-banner-glass {
  background: rgba(8, 20, 38, 0.75) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 18px !important;
  padding: 18px 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  margin: 2.5rem auto !important;
  max-width: 1000px !important;
}

.footer {
  background: rgba(5, 12, 24, 0.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}


/* 10. Sub-header & Tool Headers in Aurora Theme */
.tool-sub-header {
  text-align: center !important;
  margin-bottom: 2rem !important;
  padding: 0 10px !important;
}
.tool-sub-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(8, 20, 36, 0.65) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  padding: 5px 18px !important;
  border-radius: 9999px !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--aurora-lime) !important;
  margin-bottom: 12px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
}
.tool-sub-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif !important;
  font-size: 2.1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 12px 0 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.25 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}
.tool-sub-desc {
  display: inline-block !important;
  font-size: 0.88rem !important;
  color: #ffffff !important;
  max-width: 860px !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
  background: rgba(8, 20, 36, 0.65) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 9999px !important;
  padding: 6px 26px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
}

/* Speedometer Needle & Arc Colors */
.gauge-bg-arc {
  stroke: rgba(255, 255, 255, 0.12) !important;
}
.gauge-val-arc {
  stroke: var(--aurora-lime) !important;
  filter: drop-shadow(0 0 12px rgba(212, 249, 130, 0.8)) !important;
}
.speedometer-needle {
  fill: var(--aurora-lime) !important;
  filter: drop-shadow(0 0 10px rgba(212, 249, 130, 0.9)) !important;
}
.vnnic-speed-val-text {
  fill: #ffffff !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 800 !important;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.9)) !important;
}
.gauge-label-unit {
  fill: var(--aurora-lime) !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
}
.gauge-scale-label {
  fill: rgba(255, 255, 255, 0.7) !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
}

/* Speed Status Pill */
.vnnic-status-pill {
  background: rgba(212, 249, 130, 0.18) !important;
  color: var(--aurora-lime) !important;
  border: 1px solid rgba(212, 249, 130, 0.4) !important;
  border-radius: 9999px !important;
  padding: 4px 16px !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 0 15px rgba(212, 249, 130, 0.25) !important;
}

/* Speedtest Bottom Grid: Server info & Rating */
.vnnic-bottom-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  gap: 20px !important;
  margin-top: 26px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}
@media (max-width: 768px) {
  .vnnic-bottom-grid {
    grid-template-columns: 1fr !important;
  }
}
.vnnic-info-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
.vnnic-info-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  padding: 10px 14px !important;
}
.vnnic-info-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  flex-shrink: 0 !important;
}
.vnnic-info-text h4 {
  color: #ffffff !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
}
.vnnic-info-text p {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.76rem !important;
  margin: 2px 0 0 0 !important;
}

.vnnic-rating-box {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}
.vnnic-rating-title {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}
.vnnic-stars {
  display: flex !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
}
.vnnic-stars i {
  font-size: 1.25rem !important;
  color: rgba(255, 255, 255, 0.25) !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}
.vnnic-stars i.active {
  color: #f59e0b !important;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.6) !important;
}
.vnnic-submit-rating-btn {
  background: var(--aurora-lime) !important;
  color: #122602 !important;
  font-weight: 800 !important;
  border: none !important;
  border-radius: 9999px !important;
  padding: 7px 22px !important;
  font-size: 0.82rem !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(212, 249, 130, 0.35) !important;
  transition: all 0.2s !important;
}
.vnnic-submit-rating-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(212, 249, 130, 0.55) !important;
}

/* Server Picker Modal */
.server-picker-overlay {
  background: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(12px) !important;
}
.server-picker-box {
  background: rgba(8, 20, 38, 0.92) !important;
  backdrop-filter: blur(28px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 20px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6) !important;
  color: #ffffff !important;
}
.server-item-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  transition: all 0.2s !important;
}
.server-item-card:hover, .server-item-card.active {
  background: rgba(212, 249, 130, 0.12) !important;
  border-color: var(--aurora-lime) !important;
}
/* ==========================================================================
   AURORA THEME IMMUNITY: PURE WHITE CONTRAST ON ALL MODES
   ========================================================================== */
[data-theme="light"] body.aurora-page,
[data-theme="light"] body.aurora-software-page,
body.aurora-page,
body.aurora-software-page {
  background: 
    linear-gradient(180deg, 
      rgba(8, 20, 36, 0.42) 0%, 
      rgba(8, 20, 36, 0.15) 30%, 
      rgba(8, 20, 36, 0.32) 70%, 
      rgba(8, 20, 36, 0.65) 100%),
    url('./telecom_aurora.jpg') no-repeat center top / cover fixed !important;
  color: #ffffff !important;
}

[data-theme="light"] .aurora-subpage-title,
[data-theme="light"] .tool-sub-title,
[data-theme="light"] .vnnic-header-title,
.aurora-page .aurora-subpage-title,
.aurora-page .tool-sub-title,
.aurora-page .vnnic-header-title {
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .tool-sub-desc,
[data-theme="light"] .aurora-subpage-desc,
.aurora-page .tool-sub-desc,
.aurora-page .aurora-subpage-desc {
  color: #ffffff !important;
  background: rgba(8, 20, 36, 0.65) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
}

[data-theme="light"] .tool-sub-tag,
.aurora-page .tool-sub-tag {
  color: var(--aurora-lime) !important;
  background: rgba(8, 20, 36, 0.65) !important;
  border: 1.5px solid rgba(212, 249, 130, 0.45) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
}

[data-theme="light"] .ip-intel-val,
.aurora-page .ip-intel-val {
  color: #ffffff !important;
}

[data-theme="light"] .ip-intel-label,
.aurora-page .ip-intel-label {
  color: rgba(255, 255, 255, 0.85) !important;
}

[data-theme="light"] .ip-intel-sub,
.aurora-page .ip-intel-sub {
  color: rgba(255, 255, 255, 0.68) !important;
}
/* ==========================================================================
   AURORA CRYSTAL GLASS & HIGH-CONTRAST CONTOURED TEXT
   (User requested: No heavy black boxes, only clean text with crisp borders)
   ========================================================================== */

/* 1. Remove black background from page description pills */
.aurora-subpage-desc,
.tool-sub-desc,
.aurora-desc,
[data-theme="light"] .aurora-subpage-desc,
[data-theme="light"] .tool-sub-desc,
.aurora-page .aurora-subpage-desc,
.aurora-page .tool-sub-desc {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 4px 0 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 0.96rem !important;
  line-height: 1.6 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* 2. Sheer crystal tab bar - No heavy black slab */
.aurora-tools-nav-bar {
  background: rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) !important;
}

/* 3. Sheer crystal IP Intel cards - No heavy black fill */
.ip-intel-card {
  background: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}
.ip-intel-card:hover {
  background: rgba(0, 0, 0, 0.32) !important;
  border-color: var(--aurora-lime) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 249, 130, 0.25) !important;
}

/* 4. Sheer crystal Speedtest Container - No giant black box */
.vnnic-speed-container,
.tech-tool-card,
.dl-action-card,
.compressor-container,
.cctv-card,
.vpn-card,
.unattend-card,
.itfix-card,
.bgremover-container,
.qrstudio-container,
.speed-app-eval-section,
.compliance-banner-glass {
  background: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 22px !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25) !important;
}

/* 5. Sheer crystal Metric Columns inside Speedtest */
.vnnic-metric-col {
  background: rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 16px !important;
}
.vnnic-metric-col.active {
  background: rgba(212, 249, 130, 0.15) !important;
  border-color: var(--aurora-lime) !important;
  box-shadow: 0 0 25px rgba(212, 249, 130, 0.3) !important;
}

/* 6. Universal Crisp Contoured Text with Dark Outlines */
.aurora-software-page .aurora-subpage-title,
.aurora-software-page .tool-sub-title,
.aurora-software-page .vnnic-header-title {
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}

.aurora-software-page .ip-intel-val,
.aurora-software-page .ip-intel-label,
.aurora-software-page .ip-intel-sub,
.aurora-software-page .vnnic-metric-title,
.aurora-software-page .vnnic-metric-unit,
.aurora-software-page .speed-app-name,
.aurora-software-page .speed-app-desc,
.aurora-software-page .vnnic-info-text h4,
.aurora-software-page .vnnic-info-text p,
.aurora-software-page .vnnic-rating-title,
.aurora-software-page .footer-text,
.aurora-software-page p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* High-glow metric values with crisp black outline */
#colMetricDownload .vnnic-metric-value {
  color: var(--aurora-lime) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 249, 130, 0.8) !important;
}
#colMetricUpload .vnnic-metric-value {
  color: #38bdf8 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(56, 189, 248, 0.8) !important;
}
#colMetricPing .vnnic-metric-value {
  color: #4ade80 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(74, 222, 128, 0.8) !important;
}
#colMetricJitter .vnnic-metric-value {
  color: #fbbf24 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(251, 191, 36, 0.8) !important;
}

/* 7. Bottom rows & evaluation cards sheer crystal */
.vnnic-info-row,
.vnnic-rating-box,
.speed-app-card {
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* 8. Inputs & forms sheer glass */
.tech-input,
.tech-select,
.dl-url-input,
.qr-input {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 3px #000 !important;
}

/* 9. Floating footer sheer crystal */
.footer {
  background: rgba(10, 18, 30, 0.22) !important;
  backdrop-filter: blur(8px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}
/* ==========================================================================
   USER DIRECTIVE: REMOVE ALL BLACK FRAMES / BOXES - PURE TRANSPARENT GLASS
   ========================================================================== */

/* 1. Hide redundant tool sub-header in Speedtest panel */
#toolSpeedtestPanel > .tool-sub-header {
  display: none !important;
}

/* 2. Strip black capsule from all subpage description texts */
.aurora-subpage-desc,
.tool-sub-desc,
.aurora-desc,
body.aurora-page .aurora-subpage-desc,
body.aurora-software-page .aurora-subpage-desc {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 6px 0 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* 3. Sheer crystal tab bar - No dark slab */
.aurora-tools-nav-bar {
  background: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
}
.aurora-tool-tab-btn {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}
.aurora-tool-tab-btn.active {
  background: var(--aurora-lime) !important;
  color: #122602 !important;
  text-shadow: none !important;
  font-weight: 800 !important;
  box-shadow: 0 0 20px rgba(212, 249, 130, 0.7) !important;
}

/* 4. Strip dark frames from 4 IP Intel cards */
.ip-intel-card {
  background: rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 18px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}
.ip-intel-card:hover {
  background: rgba(0, 0, 0, 0.28) !important;
  border-color: var(--aurora-lime) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 249, 130, 0.3) !important;
}
.ip-intel-label {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}
.ip-intel-val {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 1.25rem !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}
.ip-intel-sub {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}
.ip-copy-btn {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 3px #000 !important;
}
.ip-copy-btn:hover {
  background: var(--aurora-lime) !important;
  color: #122602 !important;
  border-color: var(--aurora-lime) !important;
  text-shadow: none !important;
}

/* 5. Strip dark frame from Speedtest Container */
.vnnic-speed-container {
  background: rgba(0, 0, 0, 0.16) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25) !important;
}
.vnnic-header-title {
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif !important;
  font-size: 1.95rem !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}

/* 6. Strip dark frame from 4 metric columns */
.vnnic-metric-col {
  background: rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 16px !important;
}
.vnnic-metric-col.active {
  background: rgba(212, 249, 130, 0.12) !important;
  border-color: var(--aurora-lime) !important;
  box-shadow: 0 0 25px rgba(212, 249, 130, 0.3) !important;
}
.vnnic-metric-title {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}
.vnnic-metric-unit {
  color: rgba(255, 255, 255, 0.8) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}

#colMetricDownload .vnnic-metric-value {
  color: var(--aurora-lime) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 249, 130, 0.85) !important;
}
#colMetricUpload .vnnic-metric-value {
  color: #38bdf8 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(56, 189, 248, 0.85) !important;
}
#colMetricPing .vnnic-metric-value {
  color: #4ade80 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(74, 222, 128, 0.85) !important;
}
#colMetricJitter .vnnic-metric-value {
  color: #fbbf24 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(251, 191, 36, 0.85) !important;
}

/* 7. Strip dark frame from Evaluation Cards and Compliance Notice */
.speed-app-eval-section,
.compliance-banner-glass,
.tech-tool-card,
.dl-action-card,
.compressor-container,
.cctv-card,
.vpn-card,
.unattend-card,
.itfix-card,
.bgremover-container,
.qrstudio-container {
  background: rgba(0, 0, 0, 0.16) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
}

.speed-app-card,
.vnnic-info-row,
.vnnic-rating-box {
  background: rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 14px !important;
}

.speed-app-name,
.speed-app-desc,
.vnnic-info-text h4,
.vnnic-info-text p,
.vnnic-rating-title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}
/* ==========================================================================
   PURE CRYSTAL GLASS & HIGH CONTRAST OUTLINES (NO HEAVY BLACK FRAMES)
   ========================================================================== */

/* 1. Global Wrapper Immunity */
.speedtest-panel-wrapper,
[data-theme="light"] .speedtest-panel-wrapper,
[data-theme="dark"] .speedtest-panel-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* 2. Hide redundant sub-header inside Speedtest */
#toolSpeedtestPanel > .tool-sub-header {
  display: none !important;
}

/* 3. Strip capsule from descriptions - pure text with outline */
.aurora-subpage-desc,
.tool-sub-desc,
.aurora-desc,
body.aurora-page .aurora-subpage-desc,
body.aurora-software-page .aurora-subpage-desc {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 4px 0 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* 4. Sheer crystal 4 IP Intel Cards - No black frames */
.ip-intel-card,
[data-theme="light"] .ip-intel-card,
[data-theme="dark"] .ip-intel-card {
  background: rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}
.ip-intel-card:hover {
  background: rgba(0, 0, 0, 0.22) !important;
  border-color: var(--aurora-lime) !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 249, 130, 0.3) !important;
}

/* 5. Sheer crystal Speedtest Container - No giant black block */
.vnnic-speed-container,
[data-theme="light"] .vnnic-speed-container,
[data-theme="dark"] .vnnic-speed-container {
  background: rgba(0, 0, 0, 0.14) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 24px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) !important;
}

/* 6. Sheer crystal metric boxes inside speedtest */
.vnnic-metric-col,
[data-theme="light"] .vnnic-metric-col,
[data-theme="dark"] .vnnic-metric-col {
  background: rgba(0, 0, 0, 0.16) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 16px !important;
}
.vnnic-metric-col.active {
  background: rgba(212, 249, 130, 0.12) !important;
  border-color: var(--aurora-lime) !important;
  box-shadow: 0 0 25px rgba(212, 249, 130, 0.3) !important;
}

/* 7. Sheer crystal evaluation cards & bottom details */
.speed-app-eval-section,
.compliance-banner-glass,
.tech-tool-card,
.dl-action-card,
.compressor-container,
.cctv-card,
.vpn-card,
.unattend-card,
.itfix-card,
.bgremover-container,
.qrstudio-container {
  background: rgba(0, 0, 0, 0.14) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 20px !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2) !important;
}

.speed-app-card,
.vnnic-info-row,
.vnnic-rating-box {
  background: rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 14px !important;
}

/* 8. Razor-sharp Black Text Contours across all typography */
.aurora-software-page .aurora-subpage-title,
.aurora-software-page .vnnic-header-title {
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}

.aurora-software-page .ip-intel-label {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}

.aurora-software-page .ip-intel-val {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 1.25rem !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

.aurora-software-page .ip-intel-sub {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 600 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}

.aurora-software-page .vnnic-metric-title,
.aurora-software-page .vnnic-metric-unit,
.aurora-software-page .speed-app-name,
.aurora-software-page .speed-app-desc,
.aurora-software-page .vnnic-info-text h4,
.aurora-software-page .vnnic-info-text p,
.aurora-software-page .vnnic-rating-title,
.aurora-software-page .footer-text {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* ==========================================================================
   AURORA REMOVAL OF REDUNDANT TOOL SWITCHER & REFINED CRYSTAL SPEEDTEST
   ========================================================================== */
.aurora-tools-nav-container,
#auroraToolsNavBar {
  display: none !important;
}

/* Ensure smooth spacing between page title and speedtest cards */
.aurora-software-page .aurora-subpage-header {
  margin-bottom: 2.2rem !important;
}

/* ==========================================================================
   AURORA LUXURY LEGAL & PRIVACY CENTER MODAL (Điều Khoản, Bảo Mật, DMCA)
   ========================================================================== */
#legalModal.modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(4, 10, 22, 0.75) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s !important;
  padding: 1rem !important;
}

#legalModal.modal-backdrop.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.legal-modal-box {
  width: 100% !important;
  max-width: 860px !important;
  max-height: 88vh !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  padding: 2.2rem 2.4rem !important;
  border-radius: 28px !important;
  background: linear-gradient(145deg, rgba(10, 24, 48, 0.92), rgba(6, 16, 32, 0.96)) !important;
  backdrop-filter: blur(36px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(36px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 
    0 35px 90px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 45px rgba(212, 249, 130, 0.12) !important;
  animation: auroraModalFadeUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
}

@keyframes auroraModalFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal Close Button */
.legal-modal-box .modal-close-btn {
  position: absolute !important;
  top: 1.3rem !important;
  right: 1.3rem !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.4rem !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.22s ease !important;
  z-index: 10 !important;
}

.legal-modal-box .modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.25) !important;
  border-color: rgba(239, 68, 68, 0.5) !important;
  color: #ef4444 !important;
  transform: rotate(90deg) scale(1.08) !important;
}

/* Modal Header */
.legal-modal-header {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-bottom: 1.2rem !important;
}

.legal-modal-icon-badge {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  background: rgba(212, 249, 130, 0.12) !important;
  border: 1px solid rgba(212, 249, 130, 0.35) !important;
  color: var(--aurora-lime) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.35rem !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 20px rgba(212, 249, 130, 0.2) !important;
}

.legal-modal-title {
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif !important;
  font-size: 1.4rem !important;
  margin: 0 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
}

.legal-modal-subtitle {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.82rem !important;
  margin: 4px 0 0 0 !important;
}

/* Pill Tab Bar */
.legal-tab-bar {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-bottom: 12px !important;
  margin: 1.1rem 0 1.3rem 0 !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
}

.legal-tab-bar::-webkit-scrollbar {
  display: none !important;
}

.legal-tab-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.82) !important;
  padding: 7px 14px !important;
  border-radius: 9999px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  flex-shrink: 0 !important;
}

.legal-tab-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-1px) !important;
}

.legal-tab-btn.active {
  background: var(--aurora-lime) !important;
  color: #06182c !important;
  font-weight: 700 !important;
  border-color: var(--aurora-lime) !important;
  box-shadow: 0 4px 18px rgba(212, 249, 130, 0.35) !important;
}

.legal-tab-btn.active i {
  color: #06182c !important;
}

/* Content Area */
.legal-content-area {
  overflow-y: auto !important;
  padding-right: 10px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.92rem !important;
  line-height: 1.75 !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(212, 249, 130, 0.35) transparent !important;
}

.legal-content-area::-webkit-scrollbar {
  width: 6px !important;
}

.legal-content-area::-webkit-scrollbar-thumb {
  background: rgba(212, 249, 130, 0.35) !important;
  border-radius: 10px !important;
}

.legal-section-block {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  padding: 1.3rem 1.5rem !important;
  margin-bottom: 1.15rem !important;
  transition: all 0.2s ease !important;
}

.legal-section-block:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.legal-section-block h4 {
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  margin: 0 0 10px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.legal-section-block p {
  margin: 0 0 10px 0 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  line-height: 1.75 !important;
}

.legal-section-block p:last-child {
  margin-bottom: 0 !important;
}

.legal-section-block strong {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8) !important;
}

.legal-section-block ul {
  padding-left: 1.4rem !important;
  margin: 8px 0 !important;
  color: rgba(255, 255, 255, 0.86) !important;
}

.legal-section-block li {
  margin-bottom: 6px !important;
  line-height: 1.7 !important;
}

/* Modal Footer */
.legal-modal-footer {
  margin-top: 1.2rem !important;
  padding-top: 1.1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.legal-modal-version {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
}

.legal-confirm-btn {
  background: var(--aurora-lime) !important;
  color: #06182c !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 9px 26px !important;
  font-size: 0.88rem !important;
  border-radius: 9999px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 18px rgba(212, 249, 130, 0.35) !important;
  transition: all 0.22s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.legal-confirm-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(212, 249, 130, 0.55) !important;
  background: #defb9c !important;
}

/* ==========================================================================
   AURORA TELECOM NOC CONSOLE - LUXURY SPEEDTEST & TELEMETRY STUDIO
   Ultra-luxury Frosted Crystal Architecture | Zero Opaque Black Boxes
   ========================================================================== */

.aurora-noc-console {
  position: relative;
  max-width: 1240px;
  margin: 0 auto 3.5rem auto;
  padding: 32px 36px 40px 36px;
  background: linear-gradient(145deg, rgba(8, 20, 42, 0.78) 0%, rgba(12, 28, 56, 0.72) 100%) !important;
  backdrop-filter: blur(28px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 32px !important;
  box-shadow: 
    0 24px 64px -12px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(212, 249, 130, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

/* Ambient Radial Glow */
.aurora-noc-console::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(212, 249, 130, 0.12) 0%, rgba(56, 189, 248, 0.06) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* 1. TOP TELEMETRY HUD BAR */
.noc-hud-bar {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 18px 24px 20px 24px;
  margin-bottom: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.noc-hud-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(212, 249, 130, 0.95);
  text-transform: uppercase;
}

.noc-status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: nocPulseGreen 2s infinite ease-in-out;
}

@keyframes nocPulseGreen {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 0.4; }
}

.noc-telemetry-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.05fr 0.95fr 1.35fr;
  gap: 14px;
}

.noc-telemetry-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.22s ease;
}

.noc-telemetry-cell:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(212, 249, 130, 0.28);
  transform: translateY(-2px);
}

.noc-cell-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.noc-cell-content {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.noc-cell-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

#dispUserIp {
  font-size: 0.8rem;
  word-break: break-all;
}

.noc-copy-chip {
  background: rgba(212, 249, 130, 0.12);
  color: var(--aurora-lime);
  border: 1px solid rgba(212, 249, 130, 0.35);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.noc-copy-chip:hover {
  background: var(--aurora-lime);
  color: #07192c;
  box-shadow: 0 0 10px rgba(212, 249, 130, 0.5);
}

.noc-cell-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.noc-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.noc-ssl-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.noc-server-cell .noc-server-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.noc-server-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.noc-server-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

.noc-switch-server-btn {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.noc-switch-server-btn:hover {
  background: #a855f7;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}

/* 2. MAIN COCKPIT DECK: Wings + Center Orbital Dial */
.noc-cockpit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}

.noc-kpi-wing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.noc-kpi-card {
  position: relative;
  background: rgba(255, 255, 255, 0.038);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 22px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.noc-kpi-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.055);
}

/* Active Measurement Glow */
.noc-kpi-card.active {
  background: rgba(212, 249, 130, 0.09) !important;
  border-color: var(--aurora-lime) !important;
  box-shadow: 
    0 0 35px rgba(212, 249, 130, 0.3),
    inset 0 0 24px rgba(212, 249, 130, 0.1) !important;
  transform: scale(1.02);
}

.noc-kpi-card.upload-kpi.active {
  background: rgba(56, 189, 248, 0.09) !important;
  border-color: #38bdf8 !important;
  box-shadow: 
    0 0 35px rgba(56, 189, 248, 0.3),
    inset 0 0 24px rgba(56, 189, 248, 0.1) !important;
}

.noc-kpi-card.ping-kpi.active,
.noc-kpi-card.jitter-kpi.active {
  background: rgba(74, 222, 128, 0.09) !important;
  border-color: #4ade80 !important;
  box-shadow: 
    0 0 35px rgba(74, 222, 128, 0.3),
    inset 0 0 24px rgba(74, 222, 128, 0.1) !important;
}

.noc-kpi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.noc-kpi-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.noc-kpi-icon-badge.dl {
  background: rgba(212, 249, 130, 0.15);
  color: var(--aurora-lime);
  border: 1px solid rgba(212, 249, 130, 0.35);
}

.noc-kpi-icon-badge.ul {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.noc-kpi-icon-badge.ping {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.35);
}

.noc-kpi-icon-badge.jitter {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.noc-kpi-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.noc-kpi-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.noc-kpi-metric-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.noc-kpi-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1;
}

#valMetricDownload {
  color: var(--aurora-lime);
  text-shadow: 0 0 25px rgba(212, 249, 130, 0.55);
}

#valMetricUpload {
  color: #38bdf8;
  text-shadow: 0 0 25px rgba(56, 189, 248, 0.55);
}

#valMetricPing {
  color: #4ade80;
  text-shadow: 0 0 25px rgba(74, 222, 128, 0.55);
}

#valMetricJitter {
  color: #f59e0b;
  text-shadow: 0 0 25px rgba(245, 158, 11, 0.55);
}

.noc-kpi-unit {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.noc-kpi-status-tag {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
}

/* CENTER CORE: Orbital Dial & Command Center */
.noc-center-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.orbital-dial-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orbital-track-bg {
  stroke: rgba(255, 255, 255, 0.08);
}

.orbital-track-active {
  transition: stroke-dashoffset 0.16s linear;
}

.orbital-readout-hub {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  pointer-events: none;
}

.orbital-hub-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.orbital-hub-speed {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem !important;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 2px 0;
  text-shadow: 
    0 0 24px rgba(212, 249, 130, 0.55),
    0 2px 10px rgba(0, 0, 0, 0.85);
}

.orbital-hub-unit {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--aurora-lime);
  margin-top: 1px;
}

.noc-action-hub {
  margin-top: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.orbital-phase-pill {
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9999px;
  padding: 5px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.orbital-phase-dot,
.speed-phase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.orbital-phase-dot.active,
.speed-phase-dot.active {
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: nocPulseGreen 1.4s infinite ease-in-out;
}

.orbital-phase-dot.downloading,
.speed-phase-dot.downloading {
  background: var(--aurora-lime);
  box-shadow: 0 0 14px var(--aurora-lime);
  animation: nocPulseGreen 1.1s infinite ease-in-out;
}

.orbital-phase-dot.uploading,
.speed-phase-dot.uploading {
  background: #38bdf8;
  box-shadow: 0 0 14px #38bdf8;
  animation: nocPulseGreen 1.1s infinite ease-in-out;
}

.orbital-phase-text {
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.noc-command-btn {
  position: relative;
  background: linear-gradient(135deg, #d4f982 0%, #a3e635 100%) !important;
  color: #07192c !important;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 14px 44px;
  border: none !important;
  border-radius: 9999px !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 
    0 12px 32px rgba(212, 249, 130, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.6) !important;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-transform: uppercase;
  overflow: hidden;
}

.noc-command-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 16px 42px rgba(212, 249, 130, 0.65),
    0 0 0 2px rgba(255, 255, 255, 0.9) !important;
}

.noc-command-btn:active {
  transform: translateY(1px) scale(0.99);
}

.noc-command-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

/* 3. FOOTER ACTIONS & TELEMETRY TOOLBAR */
.noc-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  margin-bottom: 32px;
}

.noc-share-group,
.noc-rating-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.noc-toolbar-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.noc-tool-btn {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.noc-tool-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(24, 119, 242, 0.5);
}

.noc-tool-btn.tw:hover {
  background: #000000;
  border-color: #444444;
  color: #ffffff;
}

.noc-tool-btn.copy:hover {
  background: rgba(212, 249, 130, 0.2);
  border-color: var(--aurora-lime);
  color: var(--aurora-lime);
  box-shadow: 0 0 12px rgba(212, 249, 130, 0.35);
}

.noc-stars {
  display: inline-flex;
  gap: 3px;
}

.noc-stars .fa-star {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}

.noc-stars .fa-star:hover {
  transform: scale(1.15);
}

.noc-stars .fa-star.active {
  color: #facc15;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.6);
}

.noc-rating-submit-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.noc-rating-submit-btn:hover {
  background: var(--aurora-lime);
  color: #07192c;
  border-color: var(--aurora-lime);
}

/* 4. APPLICATION EXPERIENCE INTELLIGENCE WIDGETS */
.noc-eval-section {
  position: relative;
  z-index: 1;
  padding-top: 10px;
}

.noc-eval-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.noc-eval-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 9999px;
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.noc-eval-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.noc-eval-standard {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.noc-eval-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.noc-app-card {
  background: rgba(255, 255, 255, 0.038);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.noc-app-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.noc-app-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.noc-app-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.noc-app-icon.game {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.noc-app-icon.video {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.noc-app-icon.stream {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.noc-app-icon.file {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.noc-app-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.noc-app-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.noc-app-status-badge,
.speed-app-status-badge {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.noc-app-status-badge.excellent,
.speed-app-status-badge.excellent {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.noc-app-status-badge.good,
.speed-app-status-badge.good {
  background: rgba(56, 189, 248, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.noc-app-status-badge.fair,
.speed-app-status-badge.fair {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.noc-app-desc {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

/* SERVER PICKER MODAL */
.server-picker-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 28, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.server-picker-box {
  background: linear-gradient(145deg, rgba(12, 28, 56, 0.96) 0%, rgba(6, 18, 38, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 26px 28px;
  max-width: 560px;
  width: 92%;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

.server-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-picker-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.server-picker-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

.server-picker-close:hover {
  color: #ffffff;
}

.server-item-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.2s ease;
}

.server-item-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 249, 130, 0.35);
  transform: translateX(4px);
}

.server-item-card.active {
  background: rgba(212, 249, 130, 0.12);
  border-color: var(--aurora-lime);
  box-shadow: 0 0 15px rgba(212, 249, 130, 0.25);
}

.server-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.server-item-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.server-item-tag {
  background: rgba(212, 249, 130, 0.15);
  color: var(--aurora-lime);
  border: 1px solid rgba(212, 249, 130, 0.3);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  white-space: nowrap;
}

/* RESPONSIVE DESIGN FOR NOC CONSOLE */
@media (max-width: 1100px) {
  .noc-telemetry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .noc-telemetry-cell.noc-server-cell {
    grid-column: span 2;
  }
  .noc-cockpit-grid {
    grid-template-columns: 1fr 340px 1fr;
    gap: 20px;
  }
  .orbital-dial-wrapper {
    width: 320px;
    height: 320px;
  }
  .orbital-hub-speed {
    font-size: 3.4rem;
  }
}

@media (max-width: 900px) {
  .aurora-noc-console {
    padding: 24px 20px 30px 20px;
  }
  .noc-cockpit-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .noc-center-core {
    order: -1;
  }
  .noc-eval-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .noc-telemetry-grid {
    grid-template-columns: 1fr;
  }
  .noc-telemetry-cell.noc-server-cell {
    grid-column: span 1;
  }
  .noc-eval-grid {
    grid-template-columns: 1fr;
  }
  .noc-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .orbital-dial-wrapper {
    width: 290px;
    height: 290px;
  }
  .orbital-hub-speed {
    font-size: 2.8rem;
  }
  .noc-command-btn {
    padding: 12px 32px;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   CCTV STORAGE & BANDWIDTH CALCULATOR - LUXURY PROPORTIONS
   Zero Text Cut-off | Crystal Glass Aesthetic
   ========================================================================== */

.cctv-main-grid {
  display: grid !important;
  grid-template-columns: 1.18fr 0.82fr !important;
  gap: 22px !important;
}

@media (max-width: 1024px) {
  .cctv-main-grid {
    grid-template-columns: 1fr !important;
  }
}

.cctv-card {
  background: linear-gradient(145deg, rgba(8, 20, 42, 0.78) 0%, rgba(12, 28, 56, 0.72) 100%) !important;
  backdrop-filter: blur(28px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 24px !important;
  padding: 24px 26px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.cctv-select,
select.tech-select.cctv-select {
  width: 100% !important;
  background: rgba(10, 22, 45, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 10px !important;
  padding: 8px 8px !important;
  font-size: 0.83rem !important;
  color: #ffffff !important;
  outline: none !important;
  line-height: 1.35 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.cctv-select:focus,
select.tech-select.cctv-select:focus {
  border-color: var(--primary-cyan) !important;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3) !important;
}

.cctv-select option {
  background-color: #0c1c38 !important;
  color: #ffffff !important;
  padding: 6px 10px !important;
}

.cctv-input {
  width: 100% !important;
  background: rgba(10, 22, 45, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 10px !important;
  padding: 8px 10px !important;
  font-size: 0.88rem !important;
  color: #ffffff !important;
}

.cctv-grp-badge {
  background: rgba(56, 189, 248, 0.16) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  border-radius: 9999px !important;
  padding: 3px 10px !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  display: inline-flex !important;
  align-items: center !important;
}

.cctv-total-badge {
  background: rgba(34, 197, 94, 0.18) !important;
  color: #4ade80 !important;
  border: 1px solid rgba(34, 197, 94, 0.45) !important;
  border-radius: 9999px !important;
  padding: 4px 14px !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.2) !important;
  display: inline-flex !important;
  align-items: center !important;
}
/* ==========================================================================
   ENTERPRISE NETWORK CLI STUDIO - CRYSTAL GLASS LUXURY UI SYSTEM
   Developed for NAMK9 Network Ecosystem
   ========================================================================== */

:root {
  --net-cyan: #38bdf8;
  --net-green: #00ff88;
  --net-purple: #c084fc;
  --net-amber: #fbbf24;
  --net-rose: #f43f5e;
  --net-bg: #030712;
  --net-card-bg: rgba(15, 23, 42, 0.45);
  --net-card-border: rgba(255, 255, 255, 0.1);
  --net-glass-hover: rgba(56, 189, 248, 0.12);
}

/* 1. HERO SECTION */
.net-hero {
  padding: 2.8rem 0 1.2rem 0 !important;
  text-align: center;
  position: relative;
}

.net-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.08) !important;
  border: 1px solid rgba(56, 189, 248, 0.25) !important;
  color: var(--net-cyan) !important;
  padding: 5px 14px !important;
  border-radius: 9999px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  margin-bottom: 0.85rem !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.15) !important;
}

.net-hero-title {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 0.65rem !important;
  letter-spacing: -0.02em !important;
  background: linear-gradient(135deg, #ffffff 30%, #38bdf8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.net-hero-desc {
  max-width: 760px !important;
  margin: 0 auto !important;
  color: #cbd5e1 !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7) !important;
}

.net-hero-desc strong {
  color: #ffffff !important;
}

/* ==========================================================================
   TOP STUDIO MODE SWITCHER (CLI | TOPOLOGY | NETDEVOPS | TERMINAL)
   ========================================================================== */
.net-top-modes-container {
  max-width: 980px !important;
  margin: 0 auto 1.25rem auto !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.net-top-modes-bar {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 8px !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
}

@media (max-width: 680px) {
  .net-top-modes-bar {
    grid-template-columns: 1fr !important;
  }
}

.net-top-mode-btn {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-align: left !important;
  color: #cbd5e1 !important;
  position: relative !important;
}

.net-top-mode-btn i {
  font-size: 1.25rem !important;
  color: #94a3b8 !important;
  transition: all 0.2s !important;
  flex-shrink: 0 !important;
}

.net-top-mode-btn:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(56, 189, 248, 0.35) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.net-top-mode-btn:hover i {
  color: var(--net-cyan) !important;
}

.net-top-mode-btn.active {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(168, 85, 247, 0.12)) !important;
  border-color: var(--net-cyan) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.22) !important;
}

.net-top-mode-btn.active i {
  color: var(--net-cyan) !important;
  transform: scale(1.05) !important;
}

.net-top-mode-title {
  display: block !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 2px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.net-top-mode-sub {
  display: block !important;
  font-size: 0.7rem !important;
  color: #94a3b8 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.net-top-mode-badge {
  font-size: 0.62rem !important;
  font-weight: 800 !important;
  padding: 3px 7px !important;
  border-radius: 20px !important;
  margin-left: auto !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
  letter-spacing: 0.4px !important;
  flex-shrink: 0 !important;
}

.net-top-mode-badge.hot {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4) !important;
}

.net-top-mode-badge.new {
  background: linear-gradient(135deg, #10b981, #06b6d4) !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4) !important;
}

/* ==========================================================================
   CONTROL CENTER: BRANDS BAR & SUB-BAR
   ========================================================================== */
.net-control-container {
  max-width: 980px !important;
  margin: 0 auto 1.25rem auto !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

/* Horizontal Segmented Brand Ribbon */
.net-brands-bar {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  overflow-x: auto !important;
  padding: 7px 10px !important;
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 14px !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  margin-bottom: 10px !important;
  scrollbar-width: thin !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

.net-brands-bar::-webkit-scrollbar {
  height: 4px;
}
.net-brands-bar::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.3);
  border-radius: 4px;
}

.net-brand-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 7px 14px !important;
  border-radius: 9px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  flex-shrink: 0 !important;
}

.net-brand-pill:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.net-brand-pill.active {
  background: rgba(56, 189, 248, 0.14) !important;
  border-color: var(--net-cyan) !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.22) !important;
}

.net-brand-pill .brand-logo-icon {
  width: 17px !important;
  height: 17px !important;
  object-fit: contain !important;
  border-radius: 3px !important;
}

.net-brand-pill .brand-count-badge {
  font-size: 0.68rem !important;
  padding: 2px 6px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #94a3b8 !important;
  font-family: 'JetBrains Mono', monospace !important;
}

.net-brand-pill.active .brand-count-badge {
  background: rgba(56, 189, 248, 0.25) !important;
  color: #ffffff !important;
}

/* Sub-Bar: Search & Mode Selector */
.net-sub-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.net-search-box {
  flex: 1 !important;
  min-width: 280px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}

.net-search-box i.fa-magnifying-glass {
  position: absolute !important;
  left: 14px !important;
  color: #64748b !important;
  font-size: 0.88rem !important;
  pointer-events: none !important;
  transition: color 0.2s !important;
}

.net-search-box:focus-within i.fa-magnifying-glass {
  color: var(--net-cyan) !important;
}

.net-search-input {
  width: 100% !important;
  padding: 9px 105px 9px 38px !important;
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 11px !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  outline: none !important;
  transition: all 0.2s !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.net-search-input:focus {
  border-color: var(--net-cyan) !important;
  background: rgba(15, 23, 42, 0.7) !important;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2) !important;
}

.net-search-clear {
  position: absolute !important;
  right: 88px !important;
  background: none !important;
  border: none !important;
  color: #64748b !important;
  cursor: pointer !important;
  font-size: 0.85rem !important;
  padding: 4px !important;
  display: none;
}

.net-search-clear:hover {
  color: #ffffff !important;
}

.net-search-count {
  position: absolute !important;
  right: 10px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 7px !important;
  padding: 3px 8px !important;
  font-size: 0.7rem !important;
  color: #94a3b8 !important;
  font-family: 'JetBrains Mono', monospace !important;
  pointer-events: none !important;
}

/* Mode Selector Pills */
.net-mode-pills {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: rgba(15, 23, 42, 0.45) !important;
  padding: 4px !important;
  border-radius: 11px !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.net-mode-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 7px 12px !important;
  border-radius: 8px !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  color: #94a3b8 !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  white-space: nowrap !important;
}

.net-mode-pill:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.net-mode-pill.active {
  background: rgba(56, 189, 248, 0.14) !important;
  border-color: rgba(56, 189, 248, 0.3) !important;
  color: var(--net-cyan) !important;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.18) !important;
}

/* ==========================================================================
   MAIN WORKSPACE (SIDEBAR + CONTENT CARD)
   ========================================================================== */
.net-workspace {
  display: grid !important;
  grid-template-columns: 270px minmax(0, 1fr) !important;
  gap: 20px !important;
  max-width: 980px !important;
  margin: 0 auto 3rem auto !important;
  padding: 0 16px !important;
  align-items: start !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

@media (max-width: 992px) {
  .net-workspace {
    grid-template-columns: 1fr !important;
  }
}

/* Crystal Sidebar */
.net-sidebar {
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 14px !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  position: sticky !important;
  top: 85px !important;
  max-height: calc(100vh - 105px) !important;
  display: flex !important;
  flex-direction: column !important;
}

.net-sidebar-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 10px !important;
  margin-bottom: 10px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
}

.net-sidebar-title {
  color: #ffffff !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.net-topics-scroll {
  overflow-y: auto !important;
  flex: 1 !important;
  padding-right: 4px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.net-topics-scroll::-webkit-scrollbar {
  width: 4px;
}
.net-topics-scroll::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.3);
  border-radius: 4px;
}

.net-topic-btn {
  background: transparent !important;
  border: 1px solid transparent !important;
  border-left: 2.5px solid transparent !important;
  border-radius: 8px !important;
  padding: 8px 10px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-align: left !important;
  transition: all 0.2s !important;
}

.net-topic-btn:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.net-topic-btn.active {
  background: rgba(56, 189, 248, 0.12) !important;
  border-color: rgba(56, 189, 248, 0.22) !important;
  border-left-color: var(--net-cyan) !important;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.12) !important;
}

.net-topic-num {
  width: 22px !important;
  height: 22px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #94a3b8 !important;
  font-size: 0.7rem !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.net-topic-btn.active .net-topic-num {
  background: var(--net-cyan) !important;
  color: #030712 !important;
}

.net-topic-info {
  flex: 1 !important;
  min-width: 0 !important;
}

.net-topic-label {
  color: #cbd5e1 !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  word-break: break-word !important;
  white-space: normal !important;
}

.net-topic-btn.active .net-topic-label {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.net-topic-sub {
  color: #64748b !important;
  font-size: 0.72rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 4px !important;
  flex-wrap: wrap !important;
}

.net-os-badge {
  display: inline-block !important;
  padding: 1px 6px !important;
  border-radius: 4px !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  line-height: 1.25 !important;
}

.net-os-badge.os-procurve {
  background: rgba(1, 169, 130, 0.12) !important;
  border: 1px solid rgba(1, 169, 130, 0.35) !important;
  color: #34d399 !important;
}

.net-os-badge.os-comware {
  background: rgba(168, 85, 247, 0.12) !important;
  border: 1px solid rgba(168, 85, 247, 0.35) !important;
  color: #c084fc !important;
}

.net-os-badge.os-aoscx {
  background: rgba(245, 158, 11, 0.12) !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
  color: #fbbf24 !important;
}

.net-os-badge.os-console {
  background: rgba(56, 189, 248, 0.12) !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  color: #38bdf8 !important;
}

.net-os-badge.os-shell {
  background: rgba(239, 68, 68, 0.12) !important;
  border: 1px solid rgba(239, 68, 68, 0.35) !important;
  color: #f87171 !important;
}

.net-os-badge.os-srx {
  background: rgba(238, 49, 36, 0.12) !important;
  border: 1px solid rgba(238, 49, 36, 0.35) !important;
  color: #f87171 !important;
}

.net-os-badge.os-junos {
  background: rgba(0, 178, 169, 0.12) !important;
  border: 1px solid rgba(0, 178, 169, 0.35) !important;
  color: #2dd4bf !important;
}

.net-os-badge.os-default {
  background: rgba(148, 163, 184, 0.12) !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  color: #94a3b8 !important;
}

/* Right Main Content Pane */
.net-content-card {
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  padding: 24px !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
  min-height: 600px !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* Topic Header Block */
.net-topic-header {
  padding-bottom: 1.15rem !important;
  margin-bottom: 1.35rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.net-breadcrumbs {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.76rem !important;
  color: #94a3b8 !important;
  margin-bottom: 6px !important;
  font-weight: 500 !important;
}

.net-breadcrumbs span {
  color: var(--net-cyan) !important;
  font-weight: 600 !important;
}

.net-topic-title {
  color: #ffffff !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}

.net-topic-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.net-action-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #cbd5e1 !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}

.net-action-btn:hover {
  background: rgba(56, 189, 248, 0.15) !important;
  border-color: var(--net-cyan) !important;
  color: #ffffff !important;
}

.net-action-btn.copy-all {
  background: rgba(0, 255, 136, 0.1) !important;
  border-color: rgba(0, 255, 136, 0.3) !important;
  color: var(--net-green) !important;
}
.net-action-btn.copy-all:hover {
  background: rgba(0, 255, 136, 0.2) !important;
}

/* Summary Alert Box */
.cli-topic-alert {
  background: rgba(56, 189, 248, 0.05) !important;
  border-left: 3.5px solid var(--net-cyan) !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  margin-bottom: 1.5rem !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 0.88rem !important;
  color: #cbd5e1 !important;
  line-height: 1.55 !important;
}

.cli-topic-alert i {
  color: var(--net-cyan) !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

/* ==========================================================================
   COMMAND DATA TABLE - CRYSTAL GLASS, ZERO BLACK BOXES
   ========================================================================== */
.cli-table-wrapper {
  margin: 1.25rem 0 1.75rem 0 !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  overflow-x: auto !important;
  max-width: 100% !important;
  width: 100% !important;
  background: rgba(15, 23, 42, 0.35) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  box-sizing: border-box !important;
}

.cli-data-table {
  width: 100% !important;
  min-width: 760px !important;
  border-collapse: collapse !important;
  text-align: left !important;
  font-size: 0.84rem !important;
  table-layout: fixed !important;
}

.cli-data-table thead th {
  background: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(12px) !important;
  color: #94a3b8 !important;
  font-weight: 700 !important;
  font-size: 0.74rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 12px 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  white-space: normal !important;
  line-height: 1.4 !important;
  word-break: break-word !important;
}

.cli-data-table thead th:nth-child(1) { width: 30% !important; }
.cli-data-table thead th:nth-child(2) { width: 25% !important; }
.cli-data-table thead th:nth-child(3) { width: 45% !important; }

.cli-data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: background 0.15s !important;
}

.cli-data-table tbody tr:last-child {
  border-bottom: none !important;
}

.cli-data-table tbody tr:hover {
  background: rgba(56, 189, 248, 0.05) !important;
}

.cli-data-table td {
  padding: 12px 16px !important;
  vertical-align: top !important;
  color: #cbd5e1 !important;
  line-height: 1.5 !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
}

/* Command Cell with Clean Inline Wrap & Copy */
.cli-cmd-cell {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.82rem !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
}

.cli-cell-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

.cli-cmd-text {
  color: #00ff88 !important;
  font-weight: 600 !important;
  font-family: 'JetBrains Mono', monospace !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.15) !important;
}

.cli-mode-cell {
  font-size: 0.8rem !important;
  color: #94a3b8 !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  line-height: 1.45 !important;
}

.cli-desc-cell {
  font-size: 0.84rem !important;
  color: #cbd5e1 !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  line-height: 1.55 !important;
}

/* ==========================================================================
   NO HEAVY BLACK BOXES - DELICATE NEON BORDER SYNTAX PILL
   ========================================================================== */
.cli-inline-code, 
.cli-cmd-text code, 
.cli-table-wrapper code,
.cli-desc-cell code,
.cli-mode-cell code {
  font-family: 'JetBrains Mono', monospace !important;
  background: rgba(56, 189, 248, 0.06) !important;
  border: 1px solid rgba(56, 189, 248, 0.32) !important;
  padding: 2px 7px !important;
  border-radius: 6px !important;
  color: #38bdf8 !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.25) !important;
  display: inline-block !important;
  line-height: 1.45 !important;
  transition: all 0.2s ease !important;
}

.cli-inline-code:hover, 
.cli-cmd-text code:hover, 
.cli-table-wrapper code:hover,
.cli-desc-cell code:hover,
.cli-mode-cell code:hover {
  background: rgba(56, 189, 248, 0.16) !important;
  border-color: rgba(56, 189, 248, 0.58) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3) !important;
}

.cli-row-copy {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #94a3b8 !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  opacity: 0.6 !important;
  transition: all 0.2s !important;
}

.cli-row-copy:hover {
  opacity: 1 !important;
  background: rgba(56, 189, 248, 0.2) !important;
  border-color: var(--net-cyan) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   TERMINAL CODE BOX (FOR LAB SCRIPTS)
   ========================================================================== */
.cli-terminal-box {
  background: rgba(10, 15, 28, 0.8) !important;
  border: 1px solid rgba(56, 189, 248, 0.25) !important;
  border-radius: 14px !important;
  margin: 1.25rem 0 1.75rem 0 !important;
  overflow: hidden !important;
  backdrop-filter: blur(16px) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(56, 189, 248, 0.05) !important;
}

.cli-terminal-header {
  background: rgba(15, 23, 42, 0.75) !important;
  padding: 9px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.terminal-dots {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.terminal-dots .dot {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
}
.terminal-dots .dot.red { background: #ff5f56 !important; }
.terminal-dots .dot.yellow { background: #ffbd2e !important; }
.terminal-dots .dot.green { background: #27c93f !important; }

.terminal-lang {
  color: #94a3b8 !important;
  font-size: 0.72rem !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 700 !important;
  margin-left: 8px !important;
}

.cli-copy-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #cbd5e1 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s !important;
}

.cli-copy-btn:hover {
  background: rgba(56, 189, 248, 0.2) !important;
  border-color: var(--net-cyan) !important;
  color: #ffffff !important;
}

.cli-code-content {
  margin: 0 !important;
  padding: 16px !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.84rem !important;
  color: #00ff88 !important;
  line-height: 1.6 !important;
  overflow-x: auto !important;
  white-space: pre !important;
}

/* ==========================================================================
   CROSS-VENDOR CHEATSHEET TABLE
   ========================================================================== */
.cheatsheet-table-container {
  background: rgba(15, 23, 42, 0.4) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  overflow-x: auto !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
}

.cheatsheet-table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 0.82rem !important;
}

.cheatsheet-table th {
  background: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  padding: 12px 14px !important;
  color: #94a3b8 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 0.74rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  white-space: nowrap !important;
}

.cheatsheet-table td {
  padding: 10px 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  vertical-align: middle !important;
  font-family: 'JetBrains Mono', monospace !important;
  color: #e2e8f0 !important;
  white-space: nowrap !important;
}

.cheatsheet-table td:first-child {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  position: sticky !important;
  left: 0 !important;
  z-index: 2 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.cheatsheet-table tr:hover td {
  background: rgba(56, 189, 248, 0.05) !important;
}

.cheatsheet-table code {
  font-family: 'JetBrains Mono', monospace !important;
  background: rgba(56, 189, 248, 0.06) !important;
  border: 1px solid rgba(56, 189, 248, 0.28) !important;
  padding: 2px 6px !important;
  border-radius: 5px !important;
  color: #38bdf8 !important;
  font-size: 0.78rem !important;
}

/* Toast Notification */
.cli-toast {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  background: rgba(15, 23, 42, 0.9) !important;
  border: 1px solid var(--net-green) !important;
  color: #ffffff !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 255, 136, 0.2) !important;
  backdrop-filter: blur(14px) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cli-toast.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.cli-toast i {
  color: var(--net-green) !important;
  font-size: 1rem !important;
}



/* ==========================================================================
   AURORA COMPACT LUXURY COCKPIT - 30% DOWNSIZING SYSTEM
   Applies to all tools in software.html to match Image 3 perfectly
   ========================================================================== */

/* 1. Global Container Downsizing (1240px -> 890px: -29%) */
#software .container {
  max-width: 890px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
  transition: max-width 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#software .container.container-wide,
#software .container:has(#toolPingJitterPanel:not([style*="display: none"])),
#software .container:has(#toolCctvCalcPanel:not([style*="display: none"])) {
  max-width: 1080px !important;
}

/* 2. Subpage Header Compact */
.aurora-subpage-header {
  margin-bottom: 1.25rem !important;
}
.aurora-subpage-title {
  font-size: 1.85rem !important;
  margin-bottom: 0.4rem !important;
}
.aurora-subpage-desc {
  max-width: 660px !important;
  font-size: 0.84rem !important;
  line-height: 1.5 !important;
}

/* 3. NOC Console Compact (Speedtest Studio) */
.aurora-noc-console {
  max-width: 890px !important;
  margin: 0 auto 2.5rem auto !important;
  padding: 20px 24px 24px 24px !important;
  border-radius: 24px !important;
}
.aurora-noc-console::before {
  width: 500px !important;
  height: 250px !important;
  top: -90px !important;
}

/* HUD Top Telemetry Bar */
.noc-hud-bar {
  border-radius: 16px !important;
  padding: 12px 16px 14px 16px !important;
  margin-bottom: 18px !important;
}
.noc-hud-status {
  margin-bottom: 10px !important;
  font-size: 0.66rem !important;
}
.noc-telemetry-grid {
  gap: 10px !important;
}
.noc-telemetry-cell {
  border-radius: 10px !important;
  padding: 8px 10px !important;
}
.noc-cell-label {
  font-size: 0.62rem !important;
  margin-bottom: 4px !important;
}
.noc-cell-val {
  font-size: 0.78rem !important;
}
#dispUserIp {
  font-size: 0.72rem !important;
}
.noc-copy-chip {
  font-size: 0.62rem !important;
  padding: 1px 6px !important;
}
.noc-cell-sub {
  font-size: 0.64rem !important;
  margin-top: 2px !important;
}
.noc-flag {
  font-size: 0.95rem !important;
}
.noc-ssl-badge {
  font-size: 0.62rem !important;
  padding: 1px 5px !important;
}
.noc-server-name {
  font-size: 0.74rem !important;
}
.noc-server-sub {
  font-size: 0.62rem !important;
}
.noc-switch-server-btn {
  padding: 3px 8px !important;
  font-size: 0.65rem !important;
}

/* Cockpit Grid & Central Orbital Dial */
.noc-cockpit-grid {
  grid-template-columns: 1fr 230px 1fr !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
}
.noc-kpi-wing {
  gap: 10px !important;
}
.noc-kpi-card {
  border-radius: 14px !important;
  padding: 12px 16px !important;
}
.noc-kpi-header {
  gap: 10px !important;
  margin-bottom: 6px !important;
}
.noc-kpi-icon-badge {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  font-size: 0.95rem !important;
}
.noc-kpi-tag {
  font-size: 0.6rem !important;
}
.noc-kpi-name {
  font-size: 0.82rem !important;
}
.noc-kpi-metric-wrap {
  margin-bottom: 2px !important;
  gap: 6px !important;
}
.noc-kpi-num {
  font-size: 1.9rem !important;
}
.noc-kpi-unit {
  font-size: 0.78rem !important;
}
.noc-kpi-status-tag {
  font-size: 0.66rem !important;
}

/* Central Speedometer Orbital Readout */
.orbital-dial-wrapper {
  width: 210px !important;
  height: 210px !important;
}
.orbital-hub-badge {
  font-size: 0.58rem !important;
}
.orbital-hub-speed {
  font-size: 1.65rem !important;
}
.orbital-hub-unit {
  font-size: 0.68rem !important;
}
.orbital-phase-pill {
  padding: 4px 10px !important;
  font-size: 0.72rem !important;
}
.noc-action-hub {
  margin-top: 10px !important;
  gap: 10px !important;
}
.noc-command-btn {
  font-size: 0.84rem !important;
  padding: 9px 30px !important;
}

/* Toolbar and Evaluation Cards (Application Intelligence) */
.noc-toolbar {
  padding: 10px 16px !important;
  border-radius: 14px !important;
  margin-bottom: 18px !important;
  gap: 10px !important;
}
.noc-toolbar-label {
  font-size: 0.72rem !important;
}
.noc-tool-btn {
  padding: 4px 10px !important;
  font-size: 0.72rem !important;
  border-radius: 7px !important;
}
.noc-eval-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
  max-width: 890px !important;
  margin: 0 auto !important;
}
.noc-app-card,
.noc-eval-card {
  padding: 10px 12px !important;
  border-radius: 12px !important;
}
.noc-app-top {
  gap: 8px !important;
  margin-bottom: 6px !important;
}
.noc-app-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 7px !important;
  font-size: 0.8rem !important;
}
.noc-app-name {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
}
.noc-app-sub {
  font-size: 0.58rem !important;
}
.noc-app-status-badge {
  font-size: 0.62rem !important;
  padding: 2px 6px !important;
  margin-bottom: 4px !important;
}
.noc-app-desc {
  font-size: 0.62rem !important;
  line-height: 1.3 !important;
}

/* ==========================================================================
   MASTER 30% COMPACT LUXURY DOWNSIZING (GLOBAL FOR ALL 12 WEBPAGES & ALL BOARDS)
   Standardize all tables, boards, cards, and containers to 890px
   ========================================================================== */
.container,
main .container,
section .container,
.aurora-subpage-container,
.aurora-tools-nav-container,
.embedded-container,
.aurora-tier-section,
.aurora-noc-console,
.tech-tool-card,
.tech-grid-2,
.cctv-main-grid,
.dl-action-card,
.bg-remover-card,
.optimizer-container,
.compressor-card,
.compressor-container,
.qr-studio-card,
.ping-tool-card,
.cctv-calc-card,
.vpn-gen-card,
.win-unattend-card,
.itfix-card,
.sysadmin-compliance-notice,
.studio-section .container,
.eco-grid,
.drop-layout-grid,
.drop-glass-card,
.radix-grid,
.remote-viewport-wrapper,
.cyber-card-modal,
.ai-studio-switcher,
.workflow-studio-container,
.contact-grid,
.footer .container {
  max-width: 890px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Dedicated Enterprise NOC Cockpit Console Container (1180px for optimal multi-vendor & CLI table display) */
.net-top-modes-container,
.net-control-container,
.net-workspace,
.cheatsheet-table-container,
.topology-container,
.netdevops-container,
.terminal-sim-container {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   USER DIRECTIVE: COMPACT HALF-SIZE FOOTER & COMPLIANCE SYSTEM (50% REDUCTION)
   ========================================================================== */

/* 1. Global Footer Pure Frosted Glass (Zero Black Box) */
.footer {
  padding: 14px 0 16px !important;
  background: rgba(10, 18, 30, 0.22) !important;
  backdrop-filter: blur(8px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15) !important;
  text-align: center !important;
}

.footer .container {
  max-width: 890px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}

.footer-legal-links {
  display: flex !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-bottom: 4px !important;
  font-size: 0.72rem !important;
}

.footer-legal-links a {
  color: rgba(226, 232, 240, 0.9) !important;
  text-decoration: none !important;
  font-size: 0.72rem !important;
  transition: color 0.2s ease !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

.footer-legal-links a:hover {
  color: #38bdf8 !important;
}

.footer-legal-links i {
  font-size: 0.68rem !important;
  margin-right: 4px !important;
}

.footer-text {
  color: rgba(226, 232, 240, 0.85) !important;
  font-size: 0.75rem !important;
  line-height: 1.35 !important;
  margin-bottom: 3px !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

.footer-text strong {
  color: #ffffff !important;
}

.footer-text span {
  color: var(--primary-cyan, #38bdf8) !important;
}

.footer p:last-child {
  font-size: 0.66rem !important;
  color: rgba(203, 213, 225, 0.75) !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

/* 2. SysAdmin Compliance & Legal Notice Pure Frosted Glass */
.sysadmin-compliance-notice,
.compliance-banner-glass {
  background: rgba(10, 18, 30, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 16px !important;
  padding: 12px 20px !important;
  margin: 1.2rem auto 1rem !important;
  max-width: 1000px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(8px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
}

.sysadmin-compliance-notice h4,
.compliance-banner-glass h4 {
  font-size: 0.78rem !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

.sysadmin-compliance-notice p,
.compliance-banner-glass p {
  font-size: 0.68rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  color: rgba(226, 232, 240, 0.95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

/* 3. Index Page Luxury Footer Half-Size */
.aurora-footer-luxury {
  padding: 24px 20px 14px !important;
}

.aurora-footer-luxury .aurora-footer-grid {
  gap: 18px !important;
  margin-bottom: 16px !important;
}

.aurora-footer-luxury .aurora-footer-col h4 {
  font-size: 0.72rem !important;
  margin: 0 0 8px !important;
}

.aurora-footer-luxury .aurora-footer-col p {
  font-size: 0.76rem !important;
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
}

.aurora-footer-luxury .aurora-footer-links {
  gap: 4px !important;
}

.aurora-footer-luxury .aurora-footer-links a {
  font-size: 0.74rem !important;
}

.aurora-footer-luxury .aurora-footer-bottom {
  padding-top: 10px !important;
  font-size: 0.72rem !important;
}




/* ==========================================================================
   PURE TRANSLUCENT FROSTED GLASS (BỎ HOÀN TOÀN KHUNG ĐEN - KÍNH TRONG SUỐT MỜ)
   ========================================================================== */

/* 1. Thanh 4 Chế Độ Studio */
.net-top-modes-bar {
  background: rgba(11, 18, 34, 0.18) !important;
  backdrop-filter: blur(24px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.net-top-mode-btn {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.net-top-mode-btn:hover {
  background: rgba(56, 189, 248, 0.14) !important;
  border-color: rgba(56, 189, 248, 0.4) !important;
}

.net-top-mode-btn.active {
  background: rgba(56, 189, 248, 0.22) !important;
  border-color: var(--net-cyan) !important;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.35) !important;
}

/* 2. Thanh 7 Thương Hiệu (Rack Dock) */
.net-brands-bar {
  background: rgba(11, 18, 34, 0.18) !important;
  backdrop-filter: blur(24px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.net-brand-pill {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.net-brand-pill:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.net-brand-pill.active {
  background: rgba(15, 23, 42, 0.45) !important;
  border-color: var(--brand-accent, var(--net-cyan)) !important;
  box-shadow: 0 0 20px var(--brand-accent-glow, rgba(56, 189, 248, 0.35)), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

/* 3. Ô Tìm Kiếm & Tabs View Mode */
.net-search-input {
  background: rgba(11, 18, 34, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.net-search-input:focus {
  background: rgba(11, 18, 34, 0.3) !important;
  border-color: var(--net-cyan) !important;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3) !important;
}

.net-mode-pills {
  background: rgba(11, 18, 34, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

/* 4. Cột Sidebar Mục Lục Chuyên Đề (Left Pane) */
.net-sidebar {
  background: rgba(11, 18, 34, 0.22) !important;
  backdrop-filter: blur(30px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.net-topic-btn {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid transparent !important;
  border-left: 2.5px solid transparent !important;
}

.net-topic-btn:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.net-topic-btn.active {
  background: rgba(56, 189, 248, 0.18) !important;
  border-color: rgba(56, 189, 248, 0.4) !important;
  border-left-color: var(--net-cyan) !important;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.2) !important;
}

/* 5. Khung Chi Tiết & Bảng Lệnh (Right Content Card) */
.net-content-card {
  background: rgba(11, 18, 34, 0.22) !important;
  backdrop-filter: blur(30px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

/* 6. Bảng Lệnh CLI Data Table */
.cli-table-wrapper {
  background: rgba(11, 18, 34, 0.18) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.cli-data-table thead th {
  background: rgba(11, 18, 34, 0.35) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.cli-data-table tbody tr:hover {
  background: rgba(56, 189, 248, 0.08) !important;
}

.cli-topic-alert {
  background: rgba(56, 189, 248, 0.08) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(56, 189, 248, 0.25) !important;
  border-left: 3.5px solid var(--net-cyan) !important;
}

/* 7. Các Studio Khác (Topology, NetDevOps, Live Terminal) */
.cli-terminal-box {
  background: rgba(11, 18, 34, 0.25) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
}

.cli-terminal-header {
  background: rgba(11, 18, 34, 0.4) !important;
}

.topology-container,
.netdevops-container,
.terminal-sim-container {
  background: rgba(11, 18, 34, 0.22) !important;
  backdrop-filter: blur(30px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}


/* ==========================================================================
   ENTERPRISE REAL-TIME PING & JITTER TELEMETRY COCKPIT (1080PX PURE FROSTED GLASS)
   Zero Truncation 6-Column Grid | Cyber Oscilloscope | Application Experience HUD
   ========================================================================== */

.ping-jitter-cockpit-card {
  max-width: 1080px !important;
  margin: 0 auto 3rem auto !important;
  background: rgba(11, 18, 34, 0.22) !important;
  backdrop-filter: blur(28px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 20px !important;
  padding: 24px 28px !important;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
  box-sizing: border-box !important;
  width: 100% !important;
  position: relative !important;
}

/* Control Header & Overall Health */
.ping-control-bar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-bottom: 1.6rem !important;
  padding-bottom: 1.3rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ping-control-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.ping-btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
  border: 1px solid rgba(56, 189, 248, 0.5) !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ping-btn-primary:hover {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.6) !important;
  transform: translateY(-1px) !important;
}

.ping-btn-secondary {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #e2e8f0 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  padding: 10px 18px !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.2s !important;
}

.ping-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.ping-toggle-wrap {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 0.84rem !important;
  color: #cbd5e1 !important;
  margin-left: 6px !important;
  user-select: none !important;
}

.ping-toggle-wrap input[type="checkbox"] {
  accent-color: var(--net-cyan) !important;
  width: 16px !important;
  height: 16px !important;
  cursor: pointer !important;
}

.ping-overall-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  backdrop-filter: blur(12px) !important;
  transition: all 0.25s !important;
}

.ping-led-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  background: currentColor !important;
  box-shadow: 0 0 8px currentColor !important;
  animation: pingLedPulse 2s infinite ease-in-out !important;
}

@keyframes pingLedPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.ping-overall-badge.ready {
  background: rgba(52, 211, 153, 0.12) !important;
  border: 1px solid rgba(52, 211, 153, 0.35) !important;
  color: #34d399 !important;
}

.ping-overall-badge.optimal {
  background: rgba(52, 211, 153, 0.16) !important;
  border: 1px solid rgba(52, 211, 153, 0.45) !important;
  color: #34d399 !important;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.25) !important;
}

.ping-overall-badge.moderate {
  background: rgba(251, 191, 36, 0.14) !important;
  border: 1px solid rgba(251, 191, 36, 0.4) !important;
  color: #fbbf24 !important;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2) !important;
}

.ping-overall-badge.slow {
  background: rgba(244, 63, 94, 0.16) !important;
  border: 1px solid rgba(244, 63, 94, 0.4) !important;
  color: #f43f5e !important;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.25) !important;
}

/* 4 Telemetry KPI HUD Cards */
.ping-kpi-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
  margin-bottom: 1.8rem !important;
}

@media (max-width: 900px) {
  .ping-kpi-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 520px) {
  .ping-kpi-grid {
    grid-template-columns: 1fr !important;
  }
}

.ping-kpi-card {
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.2s !important;
}

.ping-kpi-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
}

.ping-kpi-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 6px !important;
}

.ping-kpi-label {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  color: #94a3b8 !important;
  letter-spacing: 0.04em !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.ping-kpi-chip {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.6rem !important;
  font-weight: 700 !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
  text-transform: uppercase !important;
}

.ping-kpi-val {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 3px !important;
}

.ping-kpi-val small {
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
  margin-left: 2px !important;
}

.ping-kpi-card.cyan .ping-kpi-val {
  color: #38bdf8 !important;
  text-shadow: 0 0 14px rgba(56, 189, 248, 0.35) !important;
}

.ping-kpi-card.emerald .ping-kpi-val {
  color: #34d399 !important;
  text-shadow: 0 0 14px rgba(52, 211, 153, 0.35) !important;
}

.ping-kpi-card.amber .ping-kpi-val {
  color: #fbbf24 !important;
  text-shadow: 0 0 14px rgba(251, 191, 36, 0.35) !important;
}

.ping-kpi-card.purple .ping-kpi-val {
  color: #c084fc !important;
  text-shadow: 0 0 14px rgba(192, 132, 252, 0.35) !important;
}

.ping-kpi-card.purple .ping-kpi-val.text-best {
  font-size: 1.15rem !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.ping-kpi-sub {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 0.72rem !important;
  color: #64748b !important;
}

/* Cyber Oscilloscope */
.ping-oscilloscope-wrap {
  background: rgba(11, 18, 34, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 16px !important;
  padding: 14px 18px !important;
  margin-bottom: 1.8rem !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2) !important;
}

.ping-oscilloscope-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 10px !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.ping-osc-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: 0.04em !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.ping-osc-title i {
  color: #34d399 !important;
}

.ping-osc-legend {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.72rem !important;
  color: #94a3b8 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.legend-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  display: inline-block !important;
}

.legend-dot.green { background: #34d399 !important; box-shadow: 0 0 6px #34d399 !important; }
.legend-dot.yellow { background: #fbbf24 !important; box-shadow: 0 0 6px #fbbf24 !important; }
.legend-dot.red { background: #f43f5e !important; box-shadow: 0 0 6px #f43f5e !important; }

.ping-canvas-container {
  width: 100% !important;
  height: 160px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border: 1px solid rgba(56, 189, 248, 0.2) !important;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5) !important;
}

#jitterOscilloscope {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* 4 User Experience Rating Cards */
.ping-app-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  margin-bottom: 2rem !important;
}

@media (max-width: 900px) {
  .ping-app-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 520px) {
  .ping-app-grid {
    grid-template-columns: 1fr !important;
  }
}

.ping-app-card {
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 13px !important;
  padding: 12px 14px !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transition: all 0.2s !important;
}

.ping-app-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-1px) !important;
}

.ping-app-head {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 8px !important;
}

.ping-app-icon {
  width: 26px !important;
  height: 26px !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.8rem !important;
  flex-shrink: 0 !important;
}

.ping-app-icon.icon-game { background: rgba(56, 189, 248, 0.15) !important; color: #38bdf8 !important; }
.ping-app-icon.icon-call { background: rgba(52, 211, 153, 0.15) !important; color: #34d399 !important; }
.ping-app-icon.icon-stream { background: rgba(251, 191, 36, 0.15) !important; color: #fbbf24 !important; }
.ping-app-icon.icon-web { background: rgba(192, 132, 252, 0.15) !important; color: #c084fc !important; }

.ping-app-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  color: #ffffff !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.ping-app-chip {
  display: inline-block !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  border-radius: 5px !important;
  margin-bottom: 3px !important;
}

.ping-app-chip.waiting { background: rgba(255, 255, 255, 0.08) !important; color: #94a3b8 !important; }
.ping-app-chip.optimal { background: rgba(52, 211, 153, 0.16) !important; color: #34d399 !important; border: 1px solid rgba(52, 211, 153, 0.3) !important; }
.ping-app-chip.moderate { background: rgba(251, 191, 36, 0.16) !important; color: #fbbf24 !important; border: 1px solid rgba(251, 191, 36, 0.3) !important; }
.ping-app-chip.slow { background: rgba(244, 63, 94, 0.16) !important; color: #f43f5e !important; border: 1px solid rgba(244, 63, 94, 0.3) !important; }

.ping-app-desc {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 0.72rem !important;
  color: #94a3b8 !important;
  line-height: 1.35 !important;
}

/* Precision Server Targets Table (100% Zero Truncation) */
.ping-table-header-bar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 10px !important;
  padding: 0 2px !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.ping-table-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  color: #ffffff !important;
  letter-spacing: 0.04em !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.ping-table-title i {
  color: var(--net-cyan) !important;
}

.ping-table-count {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.12) !important;
  padding: 2px 8px !important;
  border-radius: 5px !important;
  border: 1px solid rgba(56, 189, 248, 0.25) !important;
}

.ping-table-wrapper {
  background: rgba(11, 18, 34, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 14px !important;
  overflow-x: auto !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ping-table-wrapper::-webkit-scrollbar {
  height: 6px !important;
}

.ping-table-wrapper::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.6) !important;
  border-radius: 4px !important;
}

.ping-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.35) !important;
  border-radius: 4px !important;
}

.ping-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(56, 189, 248, 0.65) !important;
}

.ping-data-table {
  width: 100% !important;
  min-width: 860px !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  text-align: left !important;
}

.ping-data-table thead th {
  background: rgba(11, 18, 34, 0.38) !important;
  color: #94a3b8 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 12px 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  white-space: nowrap !important;
  line-height: 1.3 !important;
}

.ping-data-table thead th:last-child,
.ping-data-table tbody td:last-child {
  padding-right: 18px !important;
  text-align: left !important;
}

.ping-data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: background 0.15s !important;
}

.ping-data-table tbody tr:hover {
  background: rgba(56, 189, 248, 0.06) !important;
}

.ping-data-table td {
  padding: 12px 14px !important;
  vertical-align: middle !important;
  font-size: 0.84rem !important;
  color: #cbd5e1 !important;
  white-space: nowrap !important;
  overflow: visible !important;
}

.ping-target-cell {
  white-space: nowrap !important;
}

.ping-target-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.ping-target-flag {
  font-size: 1.25rem !important;
  flex-shrink: 0 !important;
}

.ping-target-info {
  min-width: 0 !important;
}

.ping-target-name {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  color: #ffffff !important;
  display: block !important;
  white-space: nowrap !important;
}

.ping-target-host {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.7rem !important;
  color: #64748b !important;
  display: block !important;
  white-space: nowrap !important;
}

.ping-region-chip {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 0.78rem !important;
  color: #94a3b8 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: inline-block !important;
  white-space: nowrap !important;
}

.ping-pill {
  display: inline-flex !important;
  align-items: center !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  padding: 4px 10px !important;
  border-radius: 7px !important;
  white-space: nowrap !important;
  transition: all 0.2s !important;
}

.ping-pill.waiting {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #64748b !important;
}

.ping-pill.optimal {
  background: rgba(52, 211, 153, 0.14) !important;
  color: #34d399 !important;
  border: 1px solid rgba(52, 211, 153, 0.3) !important;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.15) !important;
}

.ping-pill.moderate {
  background: rgba(251, 191, 36, 0.14) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(251, 191, 36, 0.3) !important;
}

.ping-pill.slow {
  background: rgba(244, 63, 94, 0.14) !important;
  color: #f43f5e !important;
  border: 1px solid rgba(244, 63, 94, 0.3) !important;
}

.ping-pill.timeout {
  background: rgba(239, 68, 68, 0.2) !important;
  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.4) !important;
}

.ping-dual-chip {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

.ping-dual-chip .ping-min { color: #34d399 !important; }
.ping-dual-chip .ping-sep { color: #64748b !important; }
.ping-dual-chip .ping-max { color: #f87171 !important; }

.ping-jit-val {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  color: #fbbf24 !important;
  white-space: nowrap !important;
}

.ping-status-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  padding: 3px 9px !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  letter-spacing: 0.02em !important;
}

.ping-status-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  display: inline-block !important;
}

.ping-status-pill.ready {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.ping-status-pill.ready .ping-status-dot { background: #94a3b8 !important; }

.ping-status-pill.optimal {
  background: rgba(52, 211, 153, 0.14) !important;
  color: #34d399 !important;
  border: 1px solid rgba(52, 211, 153, 0.35) !important;
}
.ping-status-pill.optimal .ping-status-dot {
  background: #34d399 !important;
  box-shadow: 0 0 6px #34d399 !important;
}

.ping-status-pill.moderate {
  background: rgba(251, 191, 36, 0.14) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(251, 191, 36, 0.35) !important;
}
.ping-status-pill.moderate .ping-status-dot {
  background: #fbbf24 !important;
  box-shadow: 0 0 6px #fbbf24 !important;
}

.ping-status-pill.slow {
  background: rgba(244, 63, 94, 0.14) !important;
  color: #f43f5e !important;
  border: 1px solid rgba(244, 63, 94, 0.35) !important;
}
.ping-status-pill.slow .ping-status-dot {
  background: #f43f5e !important;
  box-shadow: 0 0 6px #f43f5e !important;
}

.ping-status-pill.error {
  background: rgba(239, 68, 68, 0.18) !important;
  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.4) !important;
}
.ping-status-pill.error .ping-status-dot {
  background: #ef4444 !important;
  box-shadow: 0 0 6px #ef4444 !important;
}

/* ==========================================================================
   CCTV CAPACITY & POE PLANNER - PURE FROSTED GLASS COCKPIT SYSTEM
   ========================================================================== */

.cctv-presets-bar {
  display: flex !important;
  gap: 10px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-bottom: 1.8rem !important;
}

.cctv-preset-pill {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  color: #e2e8f0 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.cctv-preset-pill:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

.cctv-main-grid {
  display: grid !important;
  grid-template-columns: 1.24fr 0.76fr !important;
  gap: 22px !important;
  max-width: 1080px !important;
  margin: 0 auto 2.5rem auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 1024px) {
  .cctv-main-grid {
    grid-template-columns: 1fr !important;
  }
}

.cctv-card {
  background: rgba(11, 18, 34, 0.22) !important;
  backdrop-filter: blur(28px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 20px !important;
  padding: 24px 26px !important;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
  box-sizing: border-box !important;
  position: relative !important;
}

.cctv-card-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 1.2rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-bottom: 0.8rem !important;
}

.cctv-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: 0.03em !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
}

.cctv-btn-add {
  background: rgba(56, 189, 248, 0.14) !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  color: #38bdf8 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  border-radius: 9px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
}

.cctv-btn-add:hover {
  background: rgba(56, 189, 248, 0.25) !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.35) !important;
  transform: translateY(-1px) !important;
}

.cctv-group-card {
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  position: relative !important;
  margin-bottom: 14px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.2s ease !important;
}

.cctv-group-card:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.cctv-group-top {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 12px !important;
  gap: 10px !important;
}

.cctv-name-input {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  color: #ffffff !important;
  background: rgba(11, 18, 34, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 9px !important;
  padding: 7px 12px !important;
  width: 65% !important;
  outline: none !important;
  transition: all 0.2s ease !important;
}

.cctv-name-input:focus {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3) !important;
}

.cctv-grp-badge {
  font-family: 'JetBrains Mono', monospace !important;
  background: rgba(56, 189, 248, 0.14) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-radius: 7px !important;
  padding: 3px 9px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.cctv-btn-del {
  background: rgba(239, 68, 68, 0.12) !important;
  border: 1px solid rgba(239, 68, 68, 0.35) !important;
  color: #ef4444 !important;
  border-radius: 8px !important;
  padding: 5px 9px !important;
  cursor: pointer !important;
  font-size: 0.78rem !important;
  transition: all 0.2s ease !important;
}

.cctv-btn-del:hover {
  background: rgba(239, 68, 68, 0.25) !important;
  border-color: #ef4444 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.35) !important;
}

.cctv-fields-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
}

.cctv-field-label {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.71rem !important;
  font-weight: 700 !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 5px !important;
  display: block !important;
  white-space: nowrap !important;
}

.cctv-select,
select.tech-select.cctv-select {
  width: 100% !important;
  background-color: rgba(11, 18, 34, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 9px !important;
  padding: 7px 20px 7px 7px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.79rem !important;
  font-weight: 600 !important;
  color: #f1f5f9 !important;
  outline: none !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2338bdf8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 6px center !important;
  background-size: 11px 11px !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  text-overflow: clip !important;
}

.cctv-select:focus,
select.tech-select.cctv-select:focus {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.35) !important;
  background-color: rgba(11, 18, 34, 0.55) !important;
}

.cctv-select option {
  background-color: #0b1324 !important;
  color: #ffffff !important;
  padding: 6px 10px !important;
}

.cctv-input {
  width: 100% !important;
  background: rgba(11, 18, 34, 0.32) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 9px !important;
  padding: 7px 9px !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
}

.cctv-input:focus {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.35) !important;
  background: rgba(11, 18, 34, 0.5) !important;
}

/* Storage & RAID Section */
.cctv-storage-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 1.2rem !important;
  margin-top: 0.5rem !important;
}

.cctv-storage-notice {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 9px 14px !important;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 0.78rem !important;
  color: #cbd5e1 !important;
  margin-top: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* Right Column: Total Badges & Results */
.cctv-total-badge {
  font-family: 'JetBrains Mono', monospace !important;
  background: rgba(52, 211, 153, 0.14) !important;
  color: #34d399 !important;
  border: 1px solid rgba(52, 211, 153, 0.35) !important;
  border-radius: 8px !important;
  padding: 4px 12px !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.2) !important;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.cctv-kpi-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 1.4rem !important;
}

.cctv-kpi-card {
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.2s ease !important;
}

.cctv-kpi-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  transform: translateY(-2px) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.cctv-kpi-card.cyan { border-left: 3px solid #38bdf8 !important; }
.cctv-kpi-card.cyan .cctv-kpi-val { color: #38bdf8 !important; text-shadow: 0 0 14px rgba(56, 189, 248, 0.35) !important; }
.cctv-kpi-card.emerald { border-left: 3px solid #34d399 !important; }
.cctv-kpi-card.emerald .cctv-kpi-val { color: #34d399 !important; text-shadow: 0 0 14px rgba(52, 211, 153, 0.35) !important; }
.cctv-kpi-card.amber { border-left: 3px solid #fbbf24 !important; }
.cctv-kpi-card.amber .cctv-kpi-val { color: #fbbf24 !important; text-shadow: 0 0 14px rgba(251, 191, 36, 0.35) !important; }
.cctv-kpi-card.rose { border-left: 3px solid #ec4899 !important; }
.cctv-kpi-card.rose .cctv-kpi-val { color: #ec4899 !important; text-shadow: 0 0 14px rgba(236, 72, 153, 0.35) !important; }

.cctv-kpi-label {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #94a3b8 !important;
  letter-spacing: 0.03em !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.cctv-kpi-val {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-bottom: 4px !important;
}

.cctv-kpi-val small {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  margin-left: 3px !important;
  color: #94a3b8 !important;
}

.cctv-kpi-sub {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 0.72rem !important;
  color: #cbd5e1 !important;
  line-height: 1.35 !important;
}

/* Technical Advice Box */
.cctv-advice-card {
  background: rgba(11, 18, 34, 0.25) !important;
  border: 1px solid rgba(56, 189, 248, 0.25) !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.cctv-advice-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #38bdf8 !important;
  letter-spacing: 0.03em !important;
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
}

.cctv-advice-list {
  margin: 0 !important;
  padding-left: 18px !important;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 0.8rem !important;
  color: #cbd5e1 !important;
  line-height: 1.6 !important;
}

.cctv-advice-list li {
  margin-bottom: 5px !important;
}

.cctv-advice-list strong {
  color: #ffffff !important;
}

/* Action Buttons */
.cctv-actions-wrap {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.cctv-btn-copy {
  background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
  border: 1px solid rgba(56, 189, 248, 0.5) !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  padding: 10px 20px !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.35) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cctv-btn-copy:hover {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.55) !important;
  transform: translateY(-1px) !important;
}

.cctv-btn-download {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #e2e8f0 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  padding: 10px 18px !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.2s !important;
}

.cctv-btn-download:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

