/* Landing Page Specific Styles */

/* ─── Hero ────────────────────────────────────────────────── */
.lp-hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 860px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
  }
  .lp-hero-right {
    width: 100%;
  }
}

/* Version badge above title */
.lp-version-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.25rem;
}

.lp-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-mint);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px rgba(0, 230, 118, 0.6);
}

/* Hero Title */
.lp-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.lp-hero-accent {
  color: var(--accent-mint);
}

/* Hero description */
.lp-hero-desc {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

/* CTA Buttons */
.lp-hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1.5px solid var(--accent-emerald);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lp-btn-primary:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--accent-mint);
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-btn-ghost:hover {
  color: #ffffff;
}

/* Footer hero links */
.lp-hero-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lp-hero-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-hero-links a:hover {
  color: var(--accent-mint);
}

/* ─── Version Card (right side) ──────────────────────────── */
.lp-hero-right {
  width: 280px;
  flex-shrink: 0;
}

.lp-version-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.lp-version-card {
  background: #111712;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-version-card-row {
  margin-bottom: 0.25rem;
}

.lp-version-card-section-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.lp-version-card-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.lp-version-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.lp-dot-green  { background: #22c55e; }
.lp-dot-amber  { background: #f97316; }
.lp-dot-red    { background: #ef4444; }
.lp-dot-blue   { background: #3b82f6; }
.lp-dot-yellow { background: #eab308; }
.lp-dot-gold   { background: #f59e0b; }

.lp-version-info {
  flex: 1;
}

.lp-version-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e5e7eb;
}

.lp-version-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.lp-version-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-mint);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  white-space: nowrap;
}

.lp-version-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0.25rem 0;
}

.lp-version-card-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 0.25rem;
}

.lp-version-card-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #22c55e;
}

/* ─── Feature Cards Row ───────────────────────────────────── */
.lp-features {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-section-label {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .lp-feature-grid {
    grid-template-columns: 1fr;
  }
}

.lp-feature-card {
  background: #0f1410;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-feature-card-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e5e7eb;
  line-height: 1.4;
}

.lp-feature-card p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.65;
  flex: 1;
}

.lp-feature-link {
  font-size: 0.82rem;
  color: var(--accent-emerald);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lp-feature-link:hover {
  color: var(--accent-mint);
}

/* ─── Content Sections ────────────────────────────────────── */
.lp-content-section {
  padding: 3rem 0;
}

.lp-content-narrow {
  max-width: 780px;
}

.lp-content-h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.lp-content-h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #e5e7eb;
  margin: 2rem 0 0.75rem;
}

.lp-content-section p {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.lp-inline-link {
  color: var(--accent-emerald);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-inline-link:hover {
  color: var(--accent-mint);
  text-decoration: underline;
}

/* Ordered list */
.lp-ordered-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lp-ordered-list li {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.65;
}

/* Games table */
.lp-table-wrapper {
  margin: 1rem 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.lp-table thead {
  background: #0d1410;
}

.lp-table th {
  text-align: left;
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-table td {
  padding: 0.7rem 1rem;
  color: #c9d1d9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.lp-table tr:last-child td {
  border-bottom: none;
}

.lp-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.lp-game-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  margin-right: 0.5rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* FAQ */
.lp-faq {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1rem 0;
}

.lp-faq-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-faq-item:last-child {
  border-bottom: none;
}

.lp-faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.lp-faq-a {
  font-size: 0.925rem;
  color: #9ca3af;
  line-height: 1.65;
}

/* Link list */
.lp-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  margin: 0.75rem 0;
}

.lp-link-list li::before {
  content: "→ ";
  color: var(--accent-emerald);
  font-weight: 600;
  margin-right: 0.25rem;
}
