* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #00b4db, #0083b0);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.weather-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 30px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-align: center;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 6px 12px;
  margin-bottom: 25px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 8px 10px;
  width: 100%;
  font-size: 15px;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-box button {
  border: none;
  background: #ffffff;
  color: #0083b0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box button:hover {
  transform: scale(1.05);
  background: #e6f7ff;
}

.search-box .icon {
  margin-left: 6px;
  opacity: 0.8;
}

/* Weather Info Section */
.weather-info {
  margin-bottom: 30px;
}

.weather-icon i {
  font-size: 70px;
  margin-bottom: 15px;
  color: #ffe600;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.temp {
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.city {
  font-size: 22px;
  font-weight: 500;
  margin-top: 8px;
}

.condition {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 4px;
  text-transform: capitalize;
}

/* Details Section */
.details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 20px;
}

.col {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.col i {
  font-size: 24px;
}

.humidity, .wind {
  font-size: 18px;
  font-weight: 600;
}

.label {
  font-size: 12px;
  opacity: 0.8;
}