* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html,
  body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei",
      sans-serif;
    background: radial-gradient(circle at top, #050816 0%, #020617 55%, #000 100%);
    color: #e5e7eb;
  }
  #app {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* 顶部导航条 */
  .top-bar {
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(16px);
  }
  .top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo-badge {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: radial-gradient(circle at 30% 30%, #38bdf8, #0ea5e9, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #e5e7eb;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.8), 0 8px 24px rgba(56, 189, 248, 0.4);
  }
  .brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .brand-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  .brand-sub {
    font-size: 11px;
    color: #9ca3af;
  }
  .top-bar-center {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 32px;
  }
  .top-tab {
    font-size: 13px;
    color: #9ca3af;
    padding: 6px 16px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.18s ease-in-out;
    text-decoration: none;
  }
  .top-tab.active {
    background: radial-gradient(circle at top, #0ea5e9, #1d4ed8);
    color: #e5e7eb;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.5);
  }
  .top-tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
  }
  .top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #9ca3af;
  }
  .top-bar-right .pill {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.75);
  }

  /* 主体区域布局 */
  .main {
    flex: 1;
    display: flex;
    padding: 16px 32px 24px;
    gap: 16px;
  }

  /* 左侧侧边栏 */
  .sidebar-left {
    width: 56px;
    flex-shrink: 0;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-left-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    align-items: center;
  }
  .nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
  }
  .nav-icon span {
    font-size: 18px;
  }
  .nav-icon.active {
    color: #e5e7eb;
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 10px 24px rgba(56, 189, 248, 0.65);
    background: radial-gradient(circle at 20% 0, rgba(56, 189, 248, 0.65), rgba(15, 23, 42, 0.9));
  }

  /* 中间地图卡片 */
  .map-card {
    flex: 1;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: #020617;
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.95);
    display: flex;
    flex-direction: column;
  }
  .map-toolbar {
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 10;
    display: flex;
    gap: 8px;
  }
  .map-toolbar-pill {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .map-toolbar-pill strong {
    font-weight: 600;
    color: #f97316;
  }
  .map-footer {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }
  .map-footer-inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.92);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.65);
    padding: 6px 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
  }
  .map-footer-inner button {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 500;
    background: radial-gradient(circle at top, #22c55e, #16a34a);
    color: #e5e7eb;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.6);
  }
  .map-footer-label {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    gap: 4px;
  }
  .map-footer-label span.value {
    color: #e5e7eb;
  }

  #mapContainer {
    flex: 1;
    width: 100%;
    height: 100%;
  }

  /* 右侧飞行列表面板 */
  .panel-right {
    width: 320px;
    flex-shrink: 0;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.97);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.95);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .panel-header {
    padding: 12px 14px 8px;
    border-bottom: 1px solid rgba(31, 41, 55, 1);
  }
  .panel-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .panel-title {
    font-size: 14px;
    font-weight: 600;
  }
  .panel-sub {
    font-size: 11px;
    color: #9ca3af;
  }
  .tag-count {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: #cbd5f5;
  }
  .panel-tabs {
    margin-top: 10px;
    display: flex;
    gap: 6px;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 999px;
    padding: 3px;
    border: 1px solid rgba(31, 41, 55, 1);
  }
  .panel-tab {
    flex: 1;
    font-size: 12px;
    text-align: center;
    padding: 4px 0;
    border-radius: 999px;
    cursor: pointer;
    color: #9ca3af;
    transition: all 0.15s;
  }
  .panel-tab.active {
    background: radial-gradient(circle at top, #22c55e, #16a34a);
    color: #e5e7eb;
  }

  .panel-list {
    flex: 1;
    overflow-y: auto;
    padding: 4px 6px 8px;
  }
  .flight-item {
    display: flex;
    padding: 8px 8px;
    margin: 4px 0;
    border-radius: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s;
    background: linear-gradient(
      to right,
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.94)
    );
  }
  .flight-item:hover {
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.9);
  }
  .flight-item.active {
    border-color: rgba(56, 189, 248, 1);
    box-shadow: 0 12px 28px rgba(56, 189, 248, 0.5);
    background: radial-gradient(circle at left, rgba(56, 189, 248, 0.25), #020617);
  }
  .flight-time {
    font-size: 12px;
    color: #9ca3af;
    width: 46px;
    flex-shrink: 0;
  }
  .flight-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .flight-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
  }
  .flight-name {
    font-size: 13px;
    font-weight: 500;
    color: #e5e7eb;
  }
  .flight-status {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 999px;
    border: 1px solid transparent;
    width: 52px;
    text-align: center;
  }
  .status-flying {
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.7);
    background: rgba(22, 163, 74, 0.18);
  }
  .status-waiting {
    color: #facc15;
    border-color: rgba(250, 204, 21, 0.7);
    background: rgba(250, 204, 21, 0.16);
  }
  .status-done {
    color: #9ca3af;
    border-color: rgba(148, 163, 184, 0.65);
    background: rgba(31, 41, 55, 0.7);
  }
  .flight-meta {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
  }
  .flight-meta span.label {
    color: #6b7280;
  }
  .panel-footer {
    padding: 8px 12px;
    border-top: 1px solid rgba(31, 41, 55, 1);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #9ca3af;
  }
  .panel-footer strong {
    color: #e5e7eb;
  }

  /* 简单滚动条美化 */
  .panel-list::-webkit-scrollbar {
    width: 4px;
  }
  .panel-list::-webkit-scrollbar-track {
    background: transparent;
  }
  .panel-list::-webkit-scrollbar-thumb {
    background: rgba(55, 65, 81, 0.9);
    border-radius: 999px;
  }

  /* 全局轻量级提示框 */
  .global-toast {
    position: fixed;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    max-width: 90vw;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(34, 197, 94, 0.7);
    color: #bbf7d0;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.95);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
  }
  .global-toast.success {
    border-color: rgba(34, 197, 94, 0.8);
    color: #bbf7d0;
  }
  .global-toast.error {
    border-color: rgba(248, 113, 113, 0.9);
    color: #fee2e2;
  }
  .global-toast__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
    flex-shrink: 0;
  }
  .global-toast__text {
    white-space: normal;
    text-align: center;
  }

  @media (max-width: 1200px) {
    .main {
      padding: 8px;
    }
    .panel-right {
      display: none;
    }
  }


  /* 左侧场景类型面板 */
  .panel-left {
    width: 240px;
    flex-shrink: 0;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .panel-header {
    padding: 16px 14px 12px;
    border-bottom: 1px solid rgba(31, 41, 55, 1);
  }
  .panel-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .panel-sub {
    font-size: 11px;
    color: #9ca3af;
  }
  .panel-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
  }
  .scene-type-item {
    padding: 10px 12px;
    margin: 4px 0;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s;
    background: linear-gradient(
      to right,
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.94)
    );
  }
  .scene-type-item:hover {
    border-color: rgba(56, 189, 248, 0.5);
    background: rgba(15, 23, 42, 0.98);
  }
  .scene-type-item.active {
    border-color: rgba(56, 189, 248, 1);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
    background: radial-gradient(circle at left, rgba(56, 189, 248, 0.25), #020617);
  }
  .scene-type-name {
    font-size: 13px;
    font-weight: 500;
    color: #e5e7eb;
    margin-bottom: 4px;
  }
  .scene-type-count {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .scene-type-count .count-value {
    color: #38bdf8;
    font-weight: 600;
  }

  /* 中间地图区域 */
  .map-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
  }
  .map-card {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #020617;
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.95);
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .map-toolbar {
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 10;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .map-toolbar-pill {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
  }
  .map-toolbar-pill strong {
    font-weight: 600;
    color: #f97316;
  }
  #mapContainer {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  /* 底部案例展示区域 */
  .cases-section {
    height: 180px;
    flex-shrink: 0;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
    padding: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .cases-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  .cases-title {
    font-size: 14px;
    font-weight: 600;
  }
  .cases-more {
    font-size: 12px;
    color: #38bdf8;
    cursor: pointer;
  }
  .cases-list {
    flex: 1;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
  }
  .case-item {
    flex-shrink: 0;
    width: 200px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.3);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
  }
  .case-item:hover {
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
  }
  .case-image {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
  }
  .case-info {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .case-name {
    font-size: 12px;
    font-weight: 500;
    color: #e5e7eb;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .case-meta {
    font-size: 11px;
    color: #9ca3af;
  }

  /* 右侧预警信息面板 */
  .panel-right {
    width: 320px;
    flex-shrink: 0;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .alert-item {
    display: flex;
    padding: 10px 12px;
    margin: 4px 8px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s;
    background: linear-gradient(
      to right,
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.94)
    );
  }
  .alert-item:hover {
    border-color: rgba(248, 113, 113, 0.5);
    background: rgba(15, 23, 42, 0.98);
  }
  .alert-item.active {
    border-color: rgba(248, 113, 113, 1);
    box-shadow: 0 8px 20px rgba(248, 113, 113, 0.3);
    background: radial-gradient(circle at left, rgba(248, 113, 113, 0.2), #020617);
  }
  .alert-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-right: 10px;
  }
  .alert-icon.level-high {
    background: rgba(248, 113, 113, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.5);
  }
  .alert-icon.level-medium {
    background: rgba(250, 204, 21, 0.2);
    border: 1px solid rgba(250, 204, 21, 0.5);
  }
  .alert-icon.level-low {
    background: rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.5);
  }
  .alert-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .alert-title {
    font-size: 13px;
    font-weight: 500;
    color: #e5e7eb;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .alert-meta {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .alert-time {
    font-size: 11px;
    color: #6b7280;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .alert-level-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 999px;
    flex-shrink: 0;
  }
  .alert-level-badge.level-high {
    background: rgba(248, 113, 113, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.5);
  }
  .alert-level-badge.level-medium {
    background: rgba(250, 204, 21, 0.2);
    color: #fde047;
    border: 1px solid rgba(250, 204, 21, 0.5);
  }
  .alert-level-badge.level-low {
    background: rgba(56, 189, 248, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(56, 189, 248, 0.5);
  }
  .panel-footer {
    padding: 10px 14px;
    border-top: 1px solid rgba(31, 41, 55, 1);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #9ca3af;
  }
  .panel-footer strong {
    color: #e5e7eb;
  }

  /* 滚动条美化 */
  .panel-list::-webkit-scrollbar,
  .cases-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .panel-list::-webkit-scrollbar-track,
  .cases-list::-webkit-scrollbar-track {
    background: transparent;
  }
  .panel-list::-webkit-scrollbar-thumb,
  .cases-list::-webkit-scrollbar-thumb {
    background: rgba(55, 65, 81, 0.9);
    border-radius: 999px;
  }

  @media (max-width: 1400px) {
    .panel-left {
      width: 200px;
    }
    .panel-right {
      width: 280px;
    }
  }
  @media (max-width: 1200px) {
    .main {
      flex-direction: column;
    }
    .panel-left {
      width: 100%;
      height: 120px;
      flex-direction: row;
    }
    .panel-left .panel-list {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      overflow-y: hidden;
    }
    .panel-right {
      width: 100%;
      height: 200px;
    }
    .cases-section {
      height: 150px;
    }
  }

  /* 对话框样式 */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .modal-overlay.show {
    opacity: 1;
    pointer-events: all;
  }
  .modal-content {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
  }
  .modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
  }
  .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(31, 41, 55, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }
  .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .modal-title-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  .modal-title-icon.level-high {
    background: rgba(248, 113, 113, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.5);
  }
  .modal-title-icon.level-medium {
    background: rgba(250, 204, 21, 0.2);
    border: 1px solid rgba(250, 204, 21, 0.5);
  }
  .modal-title-icon.level-low {
    background: rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.5);
  }
  .modal-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.8);
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.15s;
  }
  .modal-close:hover {
    border-color: rgba(248, 113, 113, 0.5);
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
  }
  .modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .modal-image-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .modal-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 14px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%);
  }
  .modal-image-placeholder-icon {
    font-size: 48px;
    opacity: 0.6;
  }
  .modal-info-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .modal-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .modal-info-label {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .modal-info-value {
    font-size: 14px;
    color: #e5e7eb;
    line-height: 1.6;
  }
  .modal-info-value.description {
    padding: 12px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
  }
  .modal-info-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .modal-badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
  }
  .modal-badge.level {
    background: rgba(248, 113, 113, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.5);
  }
  .modal-badge.level.level-medium {
    background: rgba(250, 204, 21, 0.2);
    color: #fde047;
    border: 1px solid rgba(250, 204, 21, 0.5);
  }
  .modal-badge.level.level-low {
    background: rgba(56, 189, 248, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(56, 189, 248, 0.5);
  }
  .modal-badge.location {
    background: rgba(56, 189, 248, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(56, 189, 248, 0.3);
  }
  .modal-badge.time {
    background: rgba(148, 163, 184, 0.15);
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.3);
  }