  html,
   body {
      background-color: #080808 !important;
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
   }

   .region-choose-section {
      opacity: 0;
      transition: opacity 0.5s ease;
   }

   .custom-select-wrapper {
      max-width: 400px;
      margin: 20px auto;
   }

   .custom-select {
      width: 100%;
      padding: 16px;
      border-radius: 12px;
      background: #111;
      color: #fff;
      border: 1px solid #222;
      font-size: 16px;
      outline: none;
      transition: all 0.3s ease;
      appearance: none;
      cursor: pointer;
   }

   .custom-select:hover {
      border-color: #ff2d2d;
   }

   .custom-select:focus {
      border-color: #ff2d2d;
      box-shadow: 0 0 12px rgba(255, 45, 45, 0.4);
   }

   .region-submit-btn {
      width: 100%;
      padding: 14px;
      margin-top: 15px;
      border-radius: 12px;
      border: none;
      background: linear-gradient(135deg, #ff2d2d, #cc0000);
      color: #fff;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
   }

   .region-submit-btn:hover {
      transform: scale(1.03);
      box-shadow: 0 0 15px rgba(255, 45, 45, 0.5);
   }

   .region-btn-secondary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      padding: 12px;
      border-radius: 10px;
      background: #1a1a1a;
      color: #fff;
      text-decoration: none;
      border: 1px solid #333;
      transition: all 0.3s ease;
   }

   .region-btn-secondary:hover {
      background: #222;
      border-color: #ff2d2d;
   }
  .alert-danger {
    background: rgba(255, 45, 45, 0.08) !important;
    border: 1px solid rgba(255, 45, 45, 0.4) !important;
    color: #ff4d4d !important;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
}
