:root {
  --bg-main: #050510;
  --bg-soft: #0b0b1a;
  --accent: #00f0ff;
  --accent-hover: #4df6ff;
  --text-main: #ffffff;
  --text-soft: #a6b0ff;
  --border-soft: rgba(0,240,255,0.15);
}

html, body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: Inter, system-ui, sans-serif;
}

.header, .footer {
  background: var(--bg-soft);
  border-color: var(--border-soft);
}

.hero {
  min-height: 540px;
  background: radial-gradient(circle at top, rgba(0,240,255,.25), transparent 60%);
}

.heroTitle {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  text-shadow: 0 0 18px rgba(0,240,255,.6);
}

.heroSubtitle {
  color: var(--text-soft);
}

.ctaButton {
  background: linear-gradient(135deg, #00f0ff, #7b6cff);
  box-shadow: 0 0 30px rgba(0,240,255,.6);
  border-radius: 10px;
}

.ctaButton:hover {
  box-shadow: 0 0 40px rgba(0,240,255,.9);
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}
/* Центрирование всех изображений */
.media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mediaImg {
  display: block;
  margin: 0 auto;
}
/* Таблицы с разделителями */
.tableWrap table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,240,255,0.25);
}

.tableWrap th,
.tableWrap td {
  padding: 14px 18px;
  border: 1px solid rgba(0,240,255,0.18);
  text-align: left;
}

.tableWrap th {
  background: rgba(0,240,255,0.08);
  color: #ffffff;
  font-weight: 700;
}

.tableWrap td {
  color: #cfd7ff;
}
.tableWrap {
  display: flex;
  justify-content: center;
}

.tableWrap table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.tableWrap th {
  text-align: center;
}

.tableWrap td {
  text-align: left;
}
/* =========================
   MEDIA
========================= */

.media {
  margin: 40px 0;
}

.mediaImg {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* =========================
   TABLE
========================= */

.tableWrap {
  margin-top: 40px;
  overflow-x: auto;
}

.tableWrap table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-soft);
  border-radius: 14px;
  overflow: hidden;
}

.tableWrap th,
.tableWrap td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
}

.tableWrap th {
  text-align: left;
  font-weight: 600;
  color: var(--text-main);
}

.tableWrap td {
  color: var(--text-soft);
}

/* =========================
   FOOTER
========================= */

.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
}

.footerInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-size: 14px;
  color: var(--text-soft);
}
/* ================================
   Content CTA buttons (under cards)
   ================================ */

.ctaButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 26px;

  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;

  background: linear-gradient(180deg, #18f3ff 0%, #00bcd4 100%);
  color: #021018;

  box-shadow:
    0 0 0 0 rgba(24, 243, 255, 0.0),
    0 6px 18px rgba(0, 188, 212, 0.35);

  transition: 
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.ctaButton:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 0 rgba(24, 243, 255, 0.0),
    0 10px 26px rgba(0, 188, 212, 0.55);
  filter: brightness(1.05);
}

.ctaButton:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(0, 188, 212, 0.35);
}
