.event-banner {
  --accent: #fb923c;
  --text-muted: rgba(255, 255, 255, 0.82);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.22);

  width: 100%;
  min-height: 180px;
  border-radius: 14px;
  background: linear-gradient(120deg, #6b21e8 0%, #7c3aed 40%, #9333ea 70%, #a855f7 100%);
  padding: 2rem 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

.event-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.banner-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
  backdrop-filter: blur(6px);
}

.event-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.banner-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw + 0.6rem, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.banner-description {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: #fff;
  color: #6b21e8;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 0.83rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.12s;
}

.banner-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.banner-btn svg {
  width: 14px;
  height: 14px;
}

.banner-stats {
  flex-shrink: 0;
  align-self: flex-start;
  min-width: 160px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.stats-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.stats-value {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.stats-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.stats-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

.stats-subtext {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
}

.action-card {
  --accent: #2563eb;

  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: 3px solid var(--accent);
  border-radius: 10px;
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

.action-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.action-card-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.action-card-title {
  margin: 0.1rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
}

.action-card-description {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #6b7280;
  flex: 1;
}

.action-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.4rem;
  transition: gap 0.15s;
}

.action-card-link:hover {
  gap: 0.5rem;
}

.action-card-link svg {
  width: 14px;
  height: 14px;
}

.update-item {
  --accent: #3b82f6;

  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

.update-item:hover {
  background: #f9f9fb;
}

.update-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.update-icon svg {
  width: 17px;
  height: 17px;
}

.update-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.update-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
}

.update-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.update-description {
  font-size: 0.76rem;
  color: #6b7280;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.update-chevron {
  flex-shrink: 0;
  color: #d1d5db;
  display: flex;
  align-items: center;
}

.update-chevron svg {
  width: 16px;
  height: 16px;
}

.recommendation-card {
  --label-color: #5cd6c8;
  --title-color: #ffffff;
  --body-color: rgba(210, 220, 240, 0.82);
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-border: rgba(255, 255, 255, 0.20);
  --glow: rgba(92, 214, 200, 0.12);

  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(160deg, #1a2340 0%, #141c33 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

.recommendation-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--glow);
  pointer-events: none;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e2e8f7;
  margin-bottom: 1.1rem;
}

.card-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-label {
  margin: 0 0 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--label-color);
}

.card-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--title-color);
}

.card-description {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--body-color);
}

.card-footer {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.btn-meer-info {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.12s;
}

.btn-meer-info:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.btn-meer-info svg {
  width: 13px;
  height: 13px;
  opacity: 0.75;
}

@media (max-width: 640px) {
  .event-banner {
    padding: 1.5rem;
    flex-direction: column;
  }

  .banner-stats {
    width: 100%;
  }
}
