 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #0a0a0a;
      color: #ffffff;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Animated background */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 20%, rgba(241, 44, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 171, 22, 0.1) 0%, transparent 50%);
      animation: pulse 8s ease-in-out infinite alternate;
      z-index: -1;
    }

    @keyframes pulse {
      0% { opacity: 0.3; }
      100% { opacity: 0.8; }
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid #333;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
    }

 .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 50px; /* Constrain logo height */
}


.logo-icon {
  width: auto;  /* Adjust size as needed */
  height: 120px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(241, 44, 18, 0.4));
}

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: #b3b3b3;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 0.5rem 1rem;
      border-radius: 8px;
    }

    .nav-links a:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
    }

    .nav-credit {
      color: #666;
      font-size: 0.9rem;
      font-weight: 400;
    }

    .nav-name {
      background: linear-gradient(135deg, #f12c12, #f0ab16);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 600;
    }

    /* Hero Section */
    .hero {
      padding: 8rem 2rem 6rem;
      text-align: center;
      background: #0a0a0a;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero-title {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .hero-title .highlight {
      background: linear-gradient(135deg, #f12c12, #f0ab16);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 20px rgba(241, 44, 18, 0.4));
    }

    .hero-subtitle {
      font-size: 1.25rem;
      color: #b3b3b3;
      margin-bottom: 4rem;
      font-weight: 300;
    }

    /* Search Section */
    .search-section {
      margin-bottom: 6rem;
      display: flex;
      justify-content: center;
    }

    .search-container {
      display: flex;
      background: #111111;
      border: 2px solid #333;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      transition: all 0.3s ease;
      max-width: 500px;
      width: 100%;
    }

    .search-container:hover,
    .search-container:focus-within {
      border-color: #f12c12;
      box-shadow: 0 0 30px rgba(241, 44, 18, 0.3);
      transform: translateY(-2px);
    }

    .search-input {
      flex: 1;
      padding: 1.25rem 2rem;
      border: none;
      background: transparent;
      color: #ffffff;
      font-size: 1rem;
      outline: none;
    }

    .search-input::placeholder {
      color: #666;
    }

    .search-btn {
      padding: 1.25rem 2.5rem;
      background: linear-gradient(135deg, #f12c12, #f0ab16);
      color: white;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
    }

    .search-btn:hover {
      transform: scale(1.05);
      filter: brightness(1.1);
      box-shadow: 0 0 25px rgba(241, 44, 18, 0.5);
    }

    /* Map Section */
    .map-section {
      padding: 4rem 2rem 6rem;
      background: #111111;
      border-top: 1px solid rgba(241, 44, 18, 0.2);
    }

    .map-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(135deg, #f12c12, #f0ab16);
      border-radius: 2px;
    }

    .map-container {
      width: 1500px;
  height: 450px;  /* Smaller height */
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #333;
  background: #1a1a1a;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  padding: 10px;
  margin: 0 auto;  /* Center the map */
  max-width: 700px;  /* Don't let it get too wide */
    }

    .map-container:hover {
      transform: translateY(-5px);
      border-color: #f12c12;
      box-shadow: 0 0 40px rgba(241, 44, 18, 0.3);
    }

    #map {
      width: 673px !important;
      height: 430px !important;
      border: none;
      border-radius: 15px !important;
    }

    /* Info Section */
    .info-section {
      padding: 6rem 2rem;
      background: #0a0a0a;
    }

    .info-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .info-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 3rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .info-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, #f12c12, #f0ab16);
    }

    .info-card:hover {
      transform: translateY(-5px);
      border-color: rgba(241, 44, 18, 0.3);
      box-shadow: 0 0 40px rgba(241, 44, 18, 0.2);
    }

    .info-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .info-title::before {
      content: '⚠️';
      font-size: 1.2rem;
    }

    .info-text {
      color: #b3b3b3;
      line-height: 1.8;
      font-size: 1rem;
    }

    .info-text strong {
      color: #ffffff;
      font-weight: 600;
      background: linear-gradient(135deg, #f12c12, #f0ab16);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Footer - Hidden since credits are in nav */
    .footer {
      display: none;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        right: 2rem;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid #333;
        border-radius: 10px;
        padding: 1rem;
        display: none;
      }
      
      .nav-credit {
        border-top: 1px solid #333;
        padding-top: 0.5rem;
        margin-top: 0.5rem;
      }
      
      .hero {
        padding: 6rem 1rem 4rem;
      }
      
      .search-container {
        flex-direction: column;
        border-radius: 20px;
      }
      
      .search-btn {
        border-radius: 0 0 18px 18px;
      }
      
      .map-section,
      .info-section {
        padding: 4rem 1rem;
      }
      
      .info-card {
        padding: 2rem;
      }
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-title,
    .hero-subtitle,
    .search-container,
    .map-container,
    .info-card {
      animation: fadeInUp 0.8s ease forwards;
    }

    .hero-subtitle { animation-delay: 0.2s; }
    .search-container { animation-delay: 0.4s; }
    .map-container { animation-delay: 0.6s; }
    .info-card { animation-delay: 0.8s; }

    /* Leaflet customization */
    .amber-popup img {
      max-width: 150px;
      border-radius: 8px;
      display: block;
      margin: 8px 0;
    }
    
    .amber-popup {
      font-size: 14px;
      line-height: 1.3;
    }

    .leaflet-tooltip {
      max-height: 200px;
      overflow-y: auto;
      border-radius: 10px;
    }

  .leaflet-container {
  border-radius: 15px !important;
  overflow: hidden !important;
}

.leaflet-control-container {
  border-radius: 15px !important;
}
