    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      background: #0e0e0e;
      font-family: 'Montserrat', sans-serif;
      color: #fff;
      overflow-x: hidden;
    }
    header {
      text-align: center;
      padding: 50px 20px 10px;
      background: radial-gradient(circle, #1e1e1e 0%, #111 100%);
    }
    header img { width: 100px; animation: bounceIn 1s ease; }
    @keyframes bounceIn {
      0% { transform: scale(0.5); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }
    h1 {
      font-size: 2.5rem;
      color: #ffb400;
      margin-top: 10px;
    }
    .city-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }
    .city-card {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
      box-shadow: 0 0 0 rgba(0,0,0,0);
    }
    .city-card:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(255,180,0,0.3);
    }
    .city-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: filter 0.4s ease;
      filter: brightness(70%);
    }
    .city-card span {
      position: absolute;
      bottom: 20px;
      left: 20px;
      font-size: 1.5rem;
      font-weight: 600;
      color: #fff;
      z-index: 2;
    }
    .city-title {
      text-align: center;
      color: #ffb400;
      font-size: 1.8rem;
      margin-top: 30px;
      animation: fadeInUp 1s ease;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .content-section {
      max-width: 1000px;
      margin: 60px auto;
      padding: 30px;
      background: #1a1a1a;
      border-radius: 12px;
      box-shadow: 0 0 30px rgba(0,0,0,0.3);
      animation: fadeIn 1.2s ease;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .content-section h2 {
      color: #ffb400;
      margin-bottom: 20px;
    }
    .content-section p, .content-section li {
      color: #ccc;
      line-height: 1.8;
      font-size: 1rem;
    }
    .content-section ul {
      padding-left: 20px;
    }
    .btn-center {
      text-align: center;
      margin-top: 20px;
    }
    .btn-center button {
      background: #ff5e00;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
    }