* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', sans-serif;
  background: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 400px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.icon {
  font-size: 64px;
  text-align: center;
  margin-bottom: 10px;
}

h1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #555;
}

.status {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.weather-info {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.weather-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 10px;
}

.rain-alert {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
}

.items-section {
  margin-bottom: 25px;
}

.items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.item-tag {
  background: #fff3e0;
  color: #e65100;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.item-tag:hover {
  background: #ffe0b2;
  transform: translateY(-1px);
}

.item-tag:active {
  transform: translateY(0);
}

.item-tag.active {
  background: #e65100;
  color: white;
  border-color: #e65100;
}

.tips-section {
  margin-bottom: 25px;
}

.tips {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tip-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  border-left: 3px solid #4CAF50;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tip-item strong {
  color: #4CAF50;
  display: block;
  margin-bottom: 5px;
}

.check-btn {
  width: 100%;
  padding: 16px;
  background: #2196f3;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.check-btn:hover {
  background: #1976d2;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.check-btn:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .card {
    padding: 20px;
  }

  h1 {
    font-size: 20px;
  }

  .icon {
    font-size: 48px;
  }
}