* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  min-height: 100vh;
}

/* Layout */
.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding-top: 40px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 28px;
  font-weight: 600;
}

.header p {
  color: #94a3b8;
  margin-top: 5px;
}

/* Card */
.card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Search */
.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 16px;
}

.search-box button {
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  background: #3b82f6;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.search-box button:hover {
  background: #2563eb;
}

/* Result */
.result-box {
  min-height: 150px;
}

.result-item {
  padding: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  animation: fadeIn 0.5s ease;
}

.result-item:last-child {
  border-bottom: none;
}

.result-item h2 {
  margin-bottom: 8px;
}

.result-item p {
  margin: 5px 0;
  font-size: 14px;
}

/* Insight colors */
.low {
  color: #ef4444;
}

.medium {
  color: #facc15;
}

.high {
  color: #22c55e;
}

/* Placeholder */
.placeholder {
  text-align: center;
  color: #94a3b8;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
