:root {
  --bg: #060a10;
  --bg-soft: #0b121d;
  --panel: #0f1927;
  --panel-2: #111f31;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f3f7fc;
  --muted: #a9b7ca;
  --brand: #2ecc71;
  --brand-dark: #26b763;
  --brand-soft: rgba(46, 204, 113, 0.16);
  --shadow: 0 22px 42px rgba(2, 8, 15, 0.45);
  --glow: 0 0 0 1px rgba(46, 204, 113, 0.35), 0 0 28px rgba(46, 204, 113, 0.22);
  --radius: 18px;
  --maxw: 1120px;
  --section-gap: 1.5rem;
  --content-gap: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(70rem 40rem at 90% -20%, rgba(46, 204, 113, 0.16), transparent 55%),
    radial-gradient(50rem 30rem at -10% 0%, rgba(38, 101, 204, 0.2), transparent 62%),
    linear-gradient(180deg, #05080e, #060a10 35%, #05080e 100%);
  line-height: 1.65;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 64px, var(--maxw));
  margin-inline: auto;
}

body.mapkalo-page {
  --maxw: 1280px;
}

.section {
  padding: 0;
}

.section-tight {
  padding: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background: rgba(7, 12, 18, 0.82);
}

.topbar-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 0 6px var(--brand-soft);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

main {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  padding: var(--section-gap) 0;
}

.topnav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.topnav a:hover {
  color: #eaf7ef;
}

.topnav a[aria-current="page"] {
  color: #eaf7ef;
  font-weight: 700;
}

.hero {
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  border: 1px solid rgba(46, 204, 113, 0.35);
  background: rgba(46, 204, 113, 0.11);
  border-radius: 999px;
  padding: 0.45rem 0.86rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d6f7e4;
}

h1,
h2,
h3 {
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0 0 var(--content-gap);
}

h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(2.2rem, 2.6vw, 2.65rem);
  letter-spacing: 0;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
}

h3 {
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
}

p {
  margin: 0 0 var(--content-gap);
}

.hero-lead {
  width: 100%;
  max-width: none;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero .container > :last-child,
.steps-intro > :last-child {
  margin-bottom: 0;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent), var(--panel);
  box-shadow: var(--shadow);
}

.card-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent), var(--panel-2);
}

.pill-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem 0.65rem;
  color: #dce7f5;
  font-size: 0.87rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(46, 204, 113, 0.55);
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 1.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary {
  color: #03110a;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  box-shadow: var(--glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 0 0 1px rgba(46, 204, 113, 0.55), 0 0 34px rgba(46, 204, 113, 0.42);
}

.btn-secondary {
  color: #e8f1fe;
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(46, 204, 113, 0.55);
  box-shadow: 0 0 0 1px rgba(46, 204, 113, 0.2), 0 0 28px rgba(46, 204, 113, 0.24);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--content-gap);
}

.btn-row-full {
  justify-content: center;
  width: 100%;
}

.btn-row-full .btn {
  width: 100%;
}

.colombia-btn {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, #f8d447 0%, #e0a900 34%, #1746a2 58%, #0f2e78 72%, #d52836 100%);
  box-shadow: 0 18px 34px rgba(2, 8, 15, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 2px 4px rgba(0, 0, 0, 0.55);
}

.colombia-btn:hover,
.colombia-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 18px 34px rgba(2, 8, 15, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 0 42px rgba(248, 212, 71, 0.24),
    0 0 54px rgba(23, 70, 162, 0.22),
    0 0 46px rgba(213, 40, 54, 0.24);
}

.btn-row-center {
  justify-content: center;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

.tutorial-list {
  display: grid;
  gap: var(--section-gap);
}

.tutorial-card {
  padding: 1.6rem;
}

.tutorial-card > :last-child {
  margin-bottom: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stats-top {
  margin-top: 1rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.stat strong {
  display: block;
  font-size: 1.15rem;
}

.cta-center {
  text-align: center;
}

.steps-section {
  padding-top: 0;
}

.steps-intro {
  width: 100%;
  max-width: none;
  color: var(--muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: var(--content-gap);
}

.step-card {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  min-height: 160px;
  text-decoration: none;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto -35% 1rem auto;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(46, 204, 113, 0.35), rgba(46, 204, 113, 0));
}

.steps-grid .step-card:last-child::after {
  display: none;
}

.step-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(46, 204, 113, 0.14);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #cbf7dd;
  margin-bottom: 0.7rem;
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.2rem;
}

.why-main,
.why-side {
  padding: 1.6rem;
}

.support-banner {
  border: 1px solid rgba(174, 102, 255, 0.42);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(64, 54, 112, 0.22), rgba(24, 24, 56, 0.72));
  padding: 1.1rem 1.3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--content-gap);
}

.support-banner + .social-panel {
  margin-top: var(--section-gap);
}

.support-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(197, 120, 255, 0.62);
  border-radius: 10px;
  color: #dca7ff;
  background: rgba(163, 67, 255, 0.08);
}

.support-icon svg {
  width: 20px;
  height: 20px;
}

.support-banner h2 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.kofi-copy p {
  margin-bottom: 0;
}

.support-btn {
  border: 1px solid rgba(238, 188, 255, 0.7);
  border-radius: 12px;
  padding: 0.72rem 1.2rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(180deg, #d653ff, #8729de);
  box-shadow: 0 0 22px rgba(174, 69, 255, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.support-btn:hover,
.support-btn:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(238, 188, 255, 0.34), 0 0 34px rgba(174, 69, 255, 0.48);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.proof-card {
  text-align: center;
  min-height: 110px;
  display: grid;
  place-items: center;
}

.social-panel {
  border: 1px solid rgba(130, 93, 214, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(72, 67, 130, 0.16), rgba(20, 28, 50, 0.28));
  padding: 2rem;
}

.social-card {
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--content-gap);
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
  transform: translateY(-3px);
}

.social-card h3,
.social-card p {
  margin-bottom: 0;
}

.social-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.07);
}

.social-icon svg {
  width: 28px;
  height: 28px;
}

.social-btn {
  margin-top: 0;
  border: 1px solid currentColor;
  border-radius: 12px;
  padding: 0.58rem 1rem;
  color: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-btn:hover,
.social-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

.social-youtube .social-btn:hover,
.social-youtube .social-btn:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 141, 141, 0.22), 0 0 24px rgba(255, 68, 88, 0.34);
}

.social-whatsapp .social-btn:hover,
.social-whatsapp .social-btn:focus-visible {
  box-shadow: 0 0 0 1px rgba(101, 240, 162, 0.22), 0 0 24px rgba(46, 204, 113, 0.36);
}

.social-youtube {
  color: #ff8d8d;
  background: linear-gradient(180deg, rgba(115, 45, 67, 0.34), rgba(52, 31, 48, 0.78));
}

.social-youtube:hover {
  border-color: rgba(255, 141, 141, 0.68);
  box-shadow: 0 0 0 1px rgba(255, 141, 141, 0.2), 0 0 32px rgba(255, 68, 88, 0.26);
}

.social-youtube h3,
.social-whatsapp h3 {
  color: #fff;
}

.social-whatsapp {
  color: #65f0a2;
  background: linear-gradient(180deg, rgba(31, 94, 79, 0.4), rgba(21, 62, 64, 0.78));
}

.social-whatsapp:hover {
  border-color: rgba(101, 240, 162, 0.68);
  box-shadow: 0 0 0 1px rgba(101, 240, 162, 0.2), 0 0 32px rgba(46, 204, 113, 0.28);
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-top: 0.8rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #09111b;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

ul {
  margin: 0 0 1rem 1.15rem;
}

.legal h2 {
  margin-top: 1.5rem;
}

.small-note {
  margin-top: 2rem;
  text-align: left;
  color: var(--muted);
  font-size: 0.86rem;
}

.redirect-shell {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.redirect-card {
  width: min(100% - 2rem, 760px);
  text-align: left;
}

.mapkalo-page .hero {
  padding-top: 0;
}

.mapkalo-block {
  margin-top: 0;
}

.mapkalo-callout {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.mapkalo-preset {
  border-color: rgba(217, 70, 239, 0.2);
  background: linear-gradient(180deg, rgba(38, 14, 58, 0.88), rgba(14, 17, 32, 0.96));
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.16);
}

.mapkalo-preset .mapkalo-badge {
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5d0fe;
}

.mapkalo-preset h2,
.mapkalo-kofi h2,
.mapkalo-server h2,
.mapkalo-version h2,
.mapkalo-mods h2,
.mapkalo-install h2,
.mapkalo-related h2 {
  margin-bottom: 0.5rem;
}

.mapkalo-preset .mapkalo-strong {
  color: #d1fae5;
  font-weight: 800;
}

.mapkalo-preset .mapkalo-mini {
  margin-bottom: 0.35rem;
  color: #f3e8ff;
  font-size: 0.9rem;
}

.mapkalo-kofi {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.mapkalo-kofi p:last-of-type {
  margin-bottom: 0;
}

.mapkalo-kofi .btn {
  white-space: nowrap;
}

.mapkalo-description,
.mapkalo-disclaimer,
.mapkalo-server,
.mapkalo-version,
.mapkalo-mods,
.mapkalo-install,
.mapkalo-related {
  margin-top: 1rem;
}

.mapkalo-disclaimer {
  border-color: rgba(252, 209, 22, 0.2);
  background: linear-gradient(180deg, rgba(57, 44, 13, 0.78), rgba(24, 18, 9, 0.88));
}

.mapkalo-description {
  border-color: rgba(46, 204, 113, 0.18);
}

.mapkalo-server {
  display: grid;
  gap: 1rem;
}

.mapkalo-server-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.mapkalo-server-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.mapkalo-copy-status {
  min-height: 1.4rem;
  margin-bottom: 0;
  color: #65f0a2;
  font-weight: 700;
}

.mapkalo-version {
  text-align: center;
}

.mapkalo-version .btn {
  width: 100%;
}

.mapkalo-version h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

.mapkalo-mod-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.mapkalo-download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(432px, 1.29fr);
  gap: 1.35rem;
  align-items: stretch;
}

.mapkalo-server-cta-wrap {
  display: flex;
}

.mapkalo-server-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 118px;
  border-width: 2px;
  border-radius: 28px;
  padding: 1.65rem 1.8rem;
  text-align: center;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  background-size: 220% 100%, 180% 100%;
  box-shadow:
    0 24px 48px rgba(2, 8, 15, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 34px rgba(248, 212, 71, 0.26),
    0 0 44px rgba(23, 70, 162, 0.24),
    0 0 38px rgba(213, 40, 54, 0.24);
  animation:
    mapkalo-cta-flag 4.8s linear infinite,
    mapkalo-cta-breathe 1.9s ease-in-out infinite;
}

.mapkalo-server-cta::before {
  content: "";
  position: absolute;
  inset: -70% -18%;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.22) 22%, transparent 54%),
    linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.32) 42%, transparent 66%);
  opacity: 0.75;
  transform: translateX(-62%) rotate(-8deg);
  animation: mapkalo-cta-wave 2.35s ease-in-out infinite;
}

.mapkalo-server-cta::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.14) 14% 16%, transparent 18% 32%) 0 0 / 22% 100% repeat-x;
  opacity: 0.85;
  animation: mapkalo-cta-ripple 1.6s linear infinite;
  pointer-events: none;
}

@keyframes mapkalo-cta-flag {
  0% {
    background-position: 0% 50%, 0% 50%;
  }

  100% {
    background-position: 220% 50%, 180% 50%;
  }
}

@keyframes mapkalo-cta-wave {
  0%,
  100% {
    transform: translateX(-62%) rotate(-8deg);
  }

  50% {
    transform: translateX(62%) rotate(-8deg);
  }
}

@keyframes mapkalo-cta-ripple {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 44%;
  }
}

@keyframes mapkalo-cta-breathe {
  0%,
  100% {
    filter: brightness(1) saturate(1);
    transform: translateY(0) scale(1);
  }

  50% {
    filter: brightness(1.14) saturate(1.2);
    transform: translateY(-2px) scale(1.012);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mapkalo-server-cta,
  .mapkalo-server-cta::before,
  .mapkalo-server-cta::after {
    animation: none;
  }
}

.mapkalo-download-layout .mapkalo-mods,
.mapkalo-download-layout .mapkalo-install {
  margin-top: 0;
  padding: 1.65rem;
}

.mapkalo-download-layout .mapkalo-mod-grid {
  grid-template-columns: 1fr;
  gap: 1.32rem;
}

.mapkalo-download-layout .mapkalo-install {
  align-self: start;
  font-size: 1.25rem;
  line-height: 1.72;
}

.mapkalo-download-layout .mapkalo-mod-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(158px, 24vw, 196px);
  grid-template-areas:
    "order image"
    "label image";
  align-items: center;
  gap: 0.8rem 1.58rem;
  padding: 1.49rem 1.55rem;
  border-radius: 24px;
  min-height: 164px;
}

.mapkalo-download-layout .mapkalo-mod-card img {
  grid-area: image;
  width: 100%;
  max-width: 196px;
  aspect-ratio: 16 / 9;
  justify-self: end;
  align-self: center;
  object-fit: cover;
}

.mapkalo-download-layout .mapkalo-mod-order {
  grid-area: order;
  font-size: 0.95rem;
}

.mapkalo-download-layout .mapkalo-mod-label {
  grid-area: label;
  font-size: 1.12rem;
  line-height: 1.4;
}

.mapkalo-download-layout .mapkalo-install h2 {
  font-size: clamp(2.25rem, 3.3vw, 2.75rem);
  line-height: 1.04;
}

.mapkalo-download-layout .mapkalo-install .muted {
  font-size: 1.08rem;
  margin-bottom: 1.875rem;
}

.mapkalo-download-layout .mapkalo-steps {
  gap: 1.05rem;
  font-size: 1rem;
}

.mapkalo-download-layout .mapkalo-steps li {
  padding: 1rem 1.05rem 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.mapkalo-download-layout .mapkalo-steps strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #ffffff;
  font-size: 1.02rem;
}

.mapkalo-download-layout .mapkalo-steps span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.mapkalo-mod-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 25, 39, 0.96), rgba(10, 14, 24, 0.98));
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(2, 8, 15, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mapkalo-mod-card:hover,
.mapkalo-mod-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(217, 70, 239, 0.34);
  box-shadow: 0 20px 36px rgba(2, 8, 15, 0.3), 0 0 28px rgba(217, 70, 239, 0.16);
}

.mapkalo-mod-card.core {
  border-color: rgba(46, 204, 113, 0.25);
  background: linear-gradient(180deg, rgba(16, 40, 28, 0.96), rgba(10, 20, 16, 0.98));
}

.mapkalo-mod-order {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d6f7e4;
}

.mapkalo-mod-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.mapkalo-mod-label {
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
}

.mapkalo-steps {
  margin: 1rem 0 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.8rem;
}

.mapkalo-steps li {
  padding-left: 0.2rem;
}

.mapkalo-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 8, 15, 0.45);
  padding: 1.2rem 0 1.8rem;
}

.final-cta {
  padding-top: 2.5rem;
}

.final-cta-btn {
  margin-top: 40px;
}

@media (max-width: 960px) {
  .grid-2,
  .mapkalo-mod-grid,
  .mapkalo-download-layout,
  .stats,
  .steps-grid,
  .proof-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .topnav {
    display: none;
  }

  .step-card::after {
    display: none;
  }

  .support-banner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .mapkalo-kofi,
  .mapkalo-server-head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .mapkalo-kofi .btn,
  .mapkalo-server .btn,
  .mapkalo-version .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--maxw));
  }

  .section {
    padding: 0;
  }

  .section-tight,
  .steps-section {
    padding: 0;
  }

  .hero {
    padding: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.45rem);
  }

  .social-panel {
    padding: 1rem;
  }

  .support-btn {
    width: 100%;
    text-align: center;
  }
}
