.lvst-wrap {
  width: 100%;
  max-width: 480px;
}

.lvst-card {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lvst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 213, 246, 0.15);
}

.lvst-card-header {
  padding: 32px 28px 20px;
  text-align: center;
  position: relative;
}

.lvst-card-header h1,
.lvst-card-header h2,
.lvst-card-header h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--page-text);
  background: linear-gradient(135deg, var(--page-text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lvst-card-header p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
  color: var(--page-text);
}

.lvst-card-body {
  padding: 20px 28px 32px;
}

/* Responsive */
@media (max-width: 520px) {
  .lvst-card-header {
    padding: 24px 20px 16px;
  }

  .lvst-card-body {
    padding: 16px 20px 24px;
  }

  .lvst-card-header h1,
  .lvst-card-header h2,
  .lvst-card-header h3 {
    font-size: 24px;
  }

  .lvst-card-header p {
    font-size: 13px;
  }
}

/* Light theme adjustments */
:root[data-theme="light"] .lvst-card {
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

:root[data-theme="light"] .lvst-card:hover {
  box-shadow: 0 24px 70px rgba(0, 184, 212, 0.12);
}