
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .service-locations {
      padding: 64px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .header {
      text-align: center;
      margin-bottom: 48px;
    }

    .badge {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 9999px;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid rgba(239, 68, 68, 0.5);
      color: #ef4444;
      margin-bottom: 16px;
    }

    .title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .title-accent {
      color: #ef4444;
    }

    .subtitle {
      color: #9ca3af;
      max-width: 600px;
      margin: 0 auto;
    }

    .map-container {
      position: relative;
      margin-bottom: 48px;
      aspect-ratio: 2/1;
    }

    .map-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .marker {
      position: absolute;
      cursor: pointer;
      transform: translate(-50%, -50%);
    }

    .marker-ring {
      position: absolute;
      inset: -12px;
      border-radius: 50%;
      border: 2px solid rgba(34, 197, 94, 0.5);
      opacity: 0.6;
      transition: all 0.3s;
    }

    .marker.active .marker-ring {
      border-color: #ef4444;
      transform: scale(1.5);
      opacity: 1;
    }

    .marker-pulse {
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      background: rgba(34, 197, 94, 0.3);
      animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    }

    .marker.active .marker-pulse {
      background: rgba(239, 68, 68, 0.4);
    }

    .marker-dot {
      position: relative;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
      transition: all 0.3s;
    }

    .marker.active .marker-dot {
      background: #ef4444;
      transform: scale(1.25);
      box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    @media (max-width: 1024px) {
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
      .cards-grid { grid-template-columns: 1fr; }
    }

    .card {
      padding: 20px;
      border-radius: 12px;
      border: 1px solid #374151;
      background: #1f2937;
      transition: all 0.3s;
    }

    .card:hover, .card.active {
      border-color: rgba(239, 68, 68, 0.5);
      background: rgba(239, 68, 68, 0.1);
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .card-icon {
      width: 16px;
      height: 16px;
      color: #22c55e;
    }

    .card.active .card-icon {
      color: #ef4444;
    }

    .card-title {
      font-weight: 600;
      color: #e5e7eb;
    }

    .city-list {
      list-style: none;
    }

    .city-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #9ca3af;
      padding: 3px 0;
    }

    .city-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #22c55e;
    }

    .card.active .city-dot {
      background: #ef4444;
    }

    .tooltip {
      position: fixed;
      z-index: 50;
      pointer-events: none;
      transform: translate(-50%, -100%);
      display: none;
    }

    .tooltip.visible {
      display: block;
    }

    .tooltip-content {
      position: relative;
      background: rgba(31, 41, 55, 0.95);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(239, 68, 68, 0.5);
      border-radius: 8px;
      overflow: hidden;
      min-width: 220px;
    }

    .tooltip-scan {
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, #ef4444, transparent);
      opacity: 0.6;
      animation: scan 2s linear infinite;
    }

    .tooltip-header {
      padding: 12px 16px;
      border-bottom: 1px solid rgba(239, 68, 68, 0.3);
    }

    .tooltip-status {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .tooltip-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ef4444;
      animation: pulse 2s infinite;
    }

    .tooltip-label {
      font-size: 12px;
      font-family: monospace;
      color: #ef4444;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .tooltip-title {
      font-size: 18px;
      font-weight: 700;
      color: #e5e7eb;
      margin-top: 4px;
    }

    .tooltip-cities {
      padding: 12px 16px;
    }

    .tooltip-city {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      padding: 4px 0;
      animation: fadeIn 0.3s ease-out forwards;
      opacity: 0;
    }

    .tooltip-city span:first-child {
      color: #22c55e;
    }

    .tooltip-city span:last-child {
      color: #e5e7eb;
      font-family: monospace;
    }

    .tooltip-corner {
      position: absolute;
      width: 8px;
      height: 8px;
      border-color: #ef4444;
      border-style: solid;
    }

    .tooltip-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
    .tooltip-corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
    .tooltip-corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
    .tooltip-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

    .tooltip-arrow {
      position: absolute;
      left: 50%;
      bottom: -8px;
      transform: translateX(-50%);
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 8px solid rgba(239, 68, 68, 0.5);
    }

    @keyframes ping {
      75%, 100% { transform: scale(2); opacity: 0; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    @keyframes scan {
      0% { top: 0%; opacity: 0; }
      10% { opacity: 0.6; }
      90% { opacity: 0.6; }
      100% { top: 100%; opacity: 0; }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateX(-10px); }
      to { opacity: 1; transform: translateX(0); }
    }
