/* ==========================================
   1. Base Setup & Layout Centering
   ========================================== */
body {
  margin: 0;
  min-height: 100vh;

  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 20px;
  box-sizing: border-box;

  font-family: "Segoe UI", Arial, sans-serif;
  color: #ffffff;

  background:
    radial-gradient(circle at top right, #2563eb 0%, transparent 35%),
    radial-gradient(circle at bottom left, #06b6d4 0%, transparent 35%),
    linear-gradient(135deg, #020617, #0f172a, #1e293b);
}

.container {
  width: 100%;
  max-width: 950px;

  padding: 40px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(59, 130, 246, 0.15);

  display: flex;
  flex-direction: column;


  margin-bottom: 20px;
}


h1 {
  margin: 0 0 12px;
  text-align: center;

  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: #ffffff;
}

h1::before {
  content: "🌍 ";
}

p {
  text-align: center;
  color: #dbeafe;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 35px;
}


select {
  display: block;
  width: auto; 
  min-width: 250px;       
  margin: 0 auto 35px; 


  padding: 12px 40px 12px 18px; 
  border-radius: 12px;    
  font-size: 1rem;
  font-family: inherit;

  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;

 
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;


  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center; 
  background-size: 16px;
}

select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
  
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2338bdf8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}


select option {
  background-color: #0f172a;
  color: #ffffff;
}


.city {
  display: flex;
  justify-content: space-between; 
  align-items: center;           
  flex-wrap: wrap;               
  
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}


.city h2 {
  margin: 0 0 6px 0;
  font-size: 1.65rem;
  font-weight: 600;
  color: #7dd3fc;
  
 
  display: block; 
  width: 100%;
}


.date {
  color: #cbd5e1;
  font-size: 0.95rem;
  display: block;
}


.time {
  font-size: 2.7rem;
  font-weight: 700;
  font-family: "Courier New", monospace;
  letter-spacing: 3px;