/* roulang page: index */
:root {
  --primary-color: #2D6A4F;
  --secondary-color: #E76F51;
  --bg-warm: #F8F9FA;
  --bg-green-soft: #F0FDF4;
  --dark-surface: #1B4332;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --radius-card: 16px;
  --shadow-soft: 0 10px 30px -5px rgba(45, 106, 79, 0.08);
}
body {
  background-color: var(--bg-warm);
  color: var(--text-main);
  line-height: 1.8;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}
.header-glass {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-gradient {
  background: linear-gradient(135deg, rgba(240, 253, 244, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
}
.dark-gradient {
  background: linear-gradient(160deg, #1B4332 0%, #0F291E 100%);
}
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -10px rgba(45, 106, 79, 0.15);
}
.coupon-dash {
  background-image: radial-gradient(circle at 0 50%, transparent 10px, #ffffff 11px), radial-gradient(circle at 100% 50%, transparent 10px, #ffffff 11px);
}
.tag-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
