:root {
  --cw-bg-main: #020812;
  --cw-bg-panel: rgba(5, 17, 28, 0.94);
  --cw-bg-panel-alt: rgba(9, 25, 39, 0.92);
  --cw-bg-hover: rgba(18, 52, 72, 0.72);
  --cw-border: #17455d;
  --cw-border-light: #237699;
  --cw-cyan: #29c6f6;
  --cw-cyan-muted: #167596;
  --cw-gold: #f1b52b;
  --cw-gold-light: #ffd75c;
  --cw-text: #e7f0f5;
  --cw-text-muted: #8ea4b1;
  --cw-positive: #77c63b;
  --cw-negative: #e05252;
  --cw-warning: #f1b52b;
  --cw-radius: 2px;
  --cw-panel-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(41, 198, 246, 0.13), transparent 25%),
    linear-gradient(180deg, #030d18 0%, #020812 100%);
  color: var(--cw-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(2, 8, 18, 0.78);
  border-bottom: 1px solid rgba(41, 198, 246, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--cw-text);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(41, 198, 246, 0.9);
  border-radius: 4px;
  color: var(--cw-gold);
  background: rgba(41, 198, 246, 0.08);
  box-shadow: 0 0 20px rgba(41, 198, 246, 0.18);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--cw-text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--cw-cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 2px;
  border: 1px solid transparent;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, var(--cw-gold-light) 0%, var(--cw-gold) 100%);
  color: #0d1420;
  box-shadow: 0 0 22px rgba(241, 181, 43, 0.25);
}

.button-secondary {
  background: rgba(7, 22, 34, 0.7);
  color: var(--cw-cyan);
  border-color: rgba(41, 198, 246, 0.45);
}

.button.large {
  min-height: 52px;
  padding: 0 28px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(41, 198, 246, 0.2);
  border-radius: 2px;
  width: 46px;
  height: 46px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cw-text);
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 15% 20%, rgba(41, 198, 246, 0.14), transparent 20%),
    radial-gradient(circle at 80% 15%, rgba(241, 181, 43, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.6), rgba(2, 8, 18, 0.9));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 1.2px, transparent 1.6px),
    radial-gradient(circle at 20% 30%, rgba(41, 198, 246, 0.1), transparent 30%);
  background-size: 200px 200px, 100% 100%;
  opacity: 0.7;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 36px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cw-cyan);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-band h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 620px;
}

.lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--cw-text-muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 42px 0 0;
}

.hero-metrics li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  border: 1px solid rgba(41, 198, 246, 0.18);
  background: rgba(5, 17, 28, 0.7);
  border-radius: 2px;
  box-shadow: var(--cw-panel-shadow);
}

.hero-metrics strong {
  color: var(--cw-gold);
  font-size: 0.95rem;
}

.hero-metrics span {
  color: var(--cw-text-muted);
  font-size: 0.75rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-panel {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1.1;
  border-radius: 24px;
  border: 1px solid rgba(41, 198, 246, 0.26);
  background:
    radial-gradient(circle at center, rgba(41, 198, 246, 0.14), rgba(7, 20, 32, 0.85) 35%, rgba(2, 8, 18, 1) 75%);
  overflow: hidden;
  box-shadow: 0 0 68px rgba(41, 198, 246, 0.13);
}

.system-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(41, 198, 246, 0.28);
  border-radius: 50%;
}

.orbit-1 {
  width: 82%;
  height: 82%;
}

.orbit-2 {
  width: 60%;
  height: 60%;
  border-color: rgba(241, 181, 43, 0.3);
}

.planet {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(41, 198, 246, 0.2);
}

.planet-large {
  width: 165px;
  height: 165px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, #7adfff, #197ca0 42%, #0d2d43 100%);
}

.planet-small {
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at 35% 35%, #ffe2a7, #d79d39 46%, #4b2d00 100%);
}

.planet-one {
  top: 24%;
  left: 17%;
}

.planet-two {
  right: 18%;
  bottom: 18%;
}

.fleet-signal {
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(241, 181, 43, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(241, 181, 43, 0.2);
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.cta-band h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  max-width: 760px;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center h2 {
  margin: 0 auto;
}

.gameplay-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  align-items: start;
  gap: 12px;
}

.flow-step {
  position: relative;
  padding: 24px 18px 18px;
  background: rgba(5, 17, 28, 0.7);
  border: 1px solid rgba(41, 198, 246, 0.16);
  box-shadow: var(--cw-panel-shadow);
}

.step-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cw-gold);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.flow-step h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.flow-step p {
  margin: 0;
  color: var(--cw-text-muted);
  font-size: 0.8rem;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--cw-cyan);
  opacity: 0.85;
  padding-top: 34px;
}

.features-section {
  background: rgba(5, 17, 28, 0.25);
  border-top: 1px solid rgba(41, 198, 246, 0.08);
  border-bottom: 1px solid rgba(41, 198, 246, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  padding: 28px 24px;
  background: rgba(7, 22, 34, 0.8);
  border: 1px solid rgba(41, 198, 246, 0.12);
  box-shadow: var(--cw-panel-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(41, 198, 246, 0.4);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(41, 198, 246, 0.26);
  background: rgba(41, 198, 246, 0.08);
  color: var(--cw-gold);
  font-size: 1.6rem;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--cw-text);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--cw-text-muted);
  font-size: 0.9rem;
}

.screenshot-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.screenshot-card {
  overflow: hidden;
  border: 1px solid rgba(41, 198, 246, 0.14);
  background: rgba(7, 22, 34, 0.8);
  box-shadow: var(--cw-panel-shadow);
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-featured {
  min-height: 520px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.status-section {
  padding-top: 36px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.status-card {
  padding: 26px 20px;
  border: 1px solid rgba(41, 198, 246, 0.14);
  background: rgba(7, 22, 34, 0.8);
  box-shadow: var(--cw-panel-shadow);
}

.status-label {
  display: block;
  margin-bottom: 10px;
  color: var(--cw-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.status-card strong {
  font-size: 1.1rem;
  color: var(--cw-text);
}

.cta-band {
  padding: 32px 0 96px;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 34px;
  background:
    linear-gradient(90deg, rgba(41, 198, 246, 0.08), rgba(241, 181, 43, 0.08)),
    rgba(7, 22, 34, 0.9);
  border: 1px solid rgba(41, 198, 246, 0.14);
  box-shadow: var(--cw-panel-shadow);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 24px 0 56px;
  border-top: 1px solid rgba(41, 198, 246, 0.12);
  background: rgba(2, 8, 18, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  margin-top: 10px;
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cw-cyan);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--cw-text-muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cw-cyan);
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(41, 198, 246, 0.12), transparent 25%),
    linear-gradient(180deg, #020812 0%, #030d18 100%);
}

.auth-shell {
  width: min(760px, calc(100% - 24px));
  margin: 40px auto;
}

.auth-panel {
  padding: 34px 30px 28px;
  border: 1px solid rgba(41, 198, 246, 0.18);
  background: rgba(7, 22, 34, 0.9);
  box-shadow: var(--cw-panel-shadow);
}

.small-panel {
  max-width: 560px;
  margin: 0 auto;
}

.auth-header {
  margin-bottom: 18px;
}

.auth-panel h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.auth-subtitle {
  margin: 12px 0 24px;
  color: var(--cw-text-muted);
}

.auth-form {
  display: grid;
  gap: 18px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--cw-text);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(41, 198, 246, 0.2);
  background: rgba(2, 8, 18, 0.8);
  color: var(--cw-text);
}

.auth-form input:focus {
  border-color: rgba(41, 198, 246, 0.8);
  outline: none;
  box-shadow: 0 0 0 2px rgba(41, 198, 246, 0.18);
}

.checkbox-group {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cw-text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.94rem;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  min-height: auto;
}

.form-actions {
  margin-top: 8px;
}

.auth-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--cw-text-muted);
}

.auth-links a:hover,
.auth-links a:focus-visible {
  color: var(--cw-cyan);
}

.game-body {
  min-height: 100vh;
  background: #020812;
  color: var(--cw-text);
}

.game-topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(41, 198, 246, 0.12);
  background: rgba(2, 8, 18, 0.87);
}

.game-brand-wrap {
  display: flex;
  align-items: center;
}

.resource-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.resource-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
  padding: 10px 12px;
  border: 1px solid rgba(41, 198, 246, 0.08);
  background: rgba(5, 17, 28, 0.66);
}

.resource-item span,
.resource-item em {
  color: var(--cw-text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

.resource-item strong {
  font-size: 1rem;
}

.game-user {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cw-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 260px;
  min-height: calc(100vh - 82px);
}

.game-sidebar,
.system-sidebar {
  background: rgba(7, 22, 34, 0.88);
  border-right: 1px solid rgba(41, 198, 246, 0.1);
  padding: 18px 16px;
}

.system-sidebar {
  border-left: 1px solid rgba(41, 198, 246, 0.1);
  border-right: 0;
}

.sidebar-section + .sidebar-section {
  margin-top: 28px;
}

.sidebar-title,
.system-header {
  margin-bottom: 16px;
  color: var(--cw-cyan);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sidebar-nav {
  display: grid;
  gap: 8px;
}

.sidebar-nav a {
  padding: 10px 12px;
  color: var(--cw-text-muted);
  border-left: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sidebar-nav a.active,
.sidebar-nav a:hover,
.sidebar-nav a:focus-visible {
  background: rgba(18, 52, 72, 0.72);
  border-left-color: var(--cw-gold);
  color: var(--cw-text);
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--cw-text-muted);
}

.game-world {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.galaxy-map-panel {
  padding: 18px 14px 0;
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 10px;
  color: var(--cw-text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.galaxy-map-svg {
  padding: 14px;
  background: rgba(7, 22, 34, 0.7);
  border: 1px solid rgba(41, 198, 246, 0.12);
}

.galaxy-map-svg svg {
  width: 100%;
  height: auto;
  display: block;
}

.game-content {
  padding: 18px 14px 24px;
}

.content-panel {
  background: rgba(7, 22, 34, 0.8);
  border: 1px solid rgba(41, 198, 246, 0.12);
  min-height: 100%;
  padding: 18px;
}

.panel-header h2 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.construction-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  gap: 22px;
}

.building-list {
  display: grid;
  gap: 14px;
}

.building-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(180px, 0.9fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(41, 198, 246, 0.12);
  background: rgba(5, 17, 28, 0.76);
}

.building-thumb {
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, rgba(241, 181, 43, 0.9), rgba(41, 198, 246, 0.5));
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.3);
}

.building-thumb.alt {
  background: linear-gradient(135deg, rgba(41, 198, 246, 0.75), rgba(9, 25, 39, 0.8));
}

.building-meta h3 {
  margin: 0 0 4px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.building-meta p,
.building-meta small,
.building-cost span,
.queue-item small {
  margin: 0;
  color: var(--cw-text-muted);
  font-size: 0.75rem;
}

.building-cost {
  display: grid;
  gap: 6px;
}

.queue-panel {
  padding: 16px;
  border: 1px solid rgba(41, 198, 246, 0.12);
  background: rgba(5, 17, 28, 0.76);
}

.queue-panel h3 {
  margin: 0 0 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cw-text);
}

.queue-item {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(41, 198, 246, 0.08);
}

.queue-item:first-of-type {
  border-top: 0;
}

.queue-item strong {
  font-size: 0.92rem;
}

.progress-track {
  width: 100%;
  height: 12px;
  background: rgba(41, 198, 246, 0.12);
  border: 1px solid rgba(41, 198, 246, 0.14);
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cw-gold), var(--cw-gold-light));
}

.queue-item.muted {
  opacity: 0.82;
}

.system-view {
  padding: 10px 0;
}

.planet-list {
  display: grid;
  gap: 8px;
}

.planet-entry {
  padding: 12px 10px;
  border-left: 2px solid transparent;
  color: var(--cw-text-muted);
  background: rgba(5, 17, 28, 0.45);
}

.planet-entry.active {
  border-left-color: var(--cw-gold);
  color: var(--cw-text);
  background: rgba(18, 52, 72, 0.72);
}

@media (max-width: 980px) {
  .game-topbar {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 14px 20px;
  }

  .game-layout {
    grid-template-columns: 1fr;
  }

  .game-sidebar,
  .system-sidebar {
    border: 0;
    border-bottom: 1px solid rgba(41, 198, 246, 0.12);
  }

  .construction-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .resource-bar,
  .game-user {
    display: none;
  }

  .game-topbar {
    min-height: 72px;
  }

  .building-card {
    grid-template-columns: 1fr;
  }
}  .hero-grid,
  .screenshot-layout,
  .feature-grid,
  .status-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .gameplay-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-arrow {
    display: none;
  }

  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .main-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-metrics,
  .feature-grid,
  .status-grid,
  .screenshot-layout,
  .mini-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gameplay-flow {
    grid-template-columns: 1fr;
  }

  .button,
  .button.large {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    width: 100%;
  }

  .cta-wrap {
    padding: 28px 20px;
  }
}
