/* Start custom CSS for html, class: .elementor-element-wid_lp_html */:root {
  --lp-bg: #0a1020;
  --lp-surface: #111a2e;
  --lp-text: #f2f6ff;
  --lp-muted: #a8b6d4;
  --lp-border: rgba(140, 167, 218, 0.26);
  --lp-accent: #f3b23a;
  --lp-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

body.light-mode {
  --lp-bg: #eef0f4;
  --lp-surface: #f8f6f2;
  --lp-text: #171c26;
  --lp-muted: #5d667a;
  --lp-border: rgba(112, 122, 142, 0.3);
  --lp-accent: #d1ac3d;
  --lp-shadow: 0 14px 30px rgba(19, 30, 50, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--lp-text);
  background:
    radial-gradient(circle at 8% 0%, rgba(243, 178, 58, 0.12), transparent 26%),
    radial-gradient(circle at 95% 0%, rgba(78, 135, 255, 0.14), transparent 30%),
    var(--lp-bg);
}

.shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sub {
  margin: 8px 0 18px;
  color: var(--lp-muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--lp-accent);
}

.cover {
  aspect-ratio: 16 / 8;
  background-size: cover;
  background-position: center;
}

.body { padding: 12px; }

.name {
  margin: 0;
  font-size: 20px;
}

.desc {
  margin: 4px 0 0;
  color: var(--lp-muted);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .cards { grid-template-columns: 1fr; }
}/* End custom CSS */