/* NeueWelle app-v2.css — dumped most of the old inline soup here 02.09.2026
   @mike: Inter self-hosted, do NOT point back at fonts.googleapis (client UK, GDPR)
   @tom: cookie bar z-index must stay above the drawer (drawer 90, cookies 120) */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  ascent-override: 90.2%;
  descent-override: 22.48%;
  line-gap-override: 0%;
  size-adjust: 107.4%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

[hidden] {
  display: none !important;
}

.svgSprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body {
  margin: 0;
  background: #0d0b26;
  color: #f5f3ff;
  font-family: "Inter", "Inter Fallback", sans-serif;
  overflow-x: hidden;
}

body.nw-lock {
  overflow: hidden;
}

a {
  color: #17e6ff;
  text-decoration: none;
}
a:hover {
  color: #ff2ea6;
}

:focus-visible {
  outline: 2px solid #17e6ff;
  outline-offset: 2px;
}

#particles-js {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: #17e6ff;
  color: #0d0b26;
  font-weight: 700;
  padding: 8px 12px;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
}

.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* header — same markup on every page, don't fork it */
.main-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #0d0b26;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  /* max-width: 480px; */
  margin: 0 auto;
}
.nw-logo {
  display: flex;
  align-items: center;
}
.nw-logo img {
  height: 26px;
  width: 125px;
  aspect-ratio: 125 / 26;
  display: block;
}

.desktopNav {
  display: none;
}
.nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: #f5f3ff;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.nav-list a:hover {
  color: #17e6ff;
}

.hamburgerBtn {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.navOverlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 7, 26, 0.72);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.navOverlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobileDrawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: #09071a;
  z-index: 90;
  transform: translateX(100%);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobileDrawer.is-open {
  transform: translateX(0);
  opacity: 1;
}
.drawerHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.drawerTitle {
  font-weight: 700;
  font-size: 16px;
  color: #f5f3ff;
}
.drawerClose {
  background: none;
  border: none;
  color: #f5f3ff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  line-height: 1;
}
.drawerNav {
  display: flex;
  flex-direction: column;
}
.drawerNav a {
  color: #f5f3ff;
  font-weight: 700;
  font-size: 20px;
  padding: 14px 4px;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.drawerNav a:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .headerInner {
    max-width: 720px;
    width: 100%;
    padding: 12px 24px;
  }
  .desktopNav {
    display: block;
  }
  .hamburgerBtn {
    display: none;
  }
  .navOverlay,
  .mobileDrawer {
    display: none !important;
  }

  .footerInner {
    max-width: 720px;
    width: 100%;
  }

  .hero-baner {
    padding: 28px 24px 20px;
    gap: 18px;
  }
  .heroThumb {
    width: 140px;
  }

  .hero-title {
    font-size: 22px;
    line-height: 1.25;
  }
  .heroLead {
    font-size: 15px;
  }

  .games-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 8px 24px 28px;
  }
  .gameCard {
    max-height: none;
    padding: 14px 16px 12px;
  }
  .gameBlurb {
    font-size: 14px;
  }
  .card-btn {
    font-size: 14px;
    padding: 10px 8px;
  }

  .secton-dark {
    padding: 32px 24px;
  }
  .blockTitle {
    font-size: 26px;
  }
  .whyCard h3 {
    font-size: 16px;
  }
  .whyCard p {
    font-size: 14px;
  }

  .faq-section {
    padding: 32px 24px;
  }
  .faq-q {
    font-size: 15px;
    padding: 16px;
  }
  .faq-panel p {
    font-size: 14px;
  }

  .contactLead {
    font-size: 15px;
  }

  .site-footer {
    padding: 40px 24px 28px;
  }
  .footNav {
    grid-template-columns: repeat(5, auto);
    justify-content: start;
    gap: 12px 24px;
  }
  .legalStack {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .legal-body {
    padding: 36px 24px 16px;
  }
  .legal-body h1 {
    font-size: 28px;
  }
  .legalCopy {
    font-size: 15px;
  }

  .cookieBaner {
    padding: 16px 24px 18px;
  }
  .cookieBaner p {
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .heroThumb {
    display: none !important;
  }
  .headerInner {
    padding: 6px 18px !important;
  }
}

.pageWrap {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: 50vh;
  overflow-x: hidden;
}
@media (max-width: 1023px) {
  .pageWrap,
  .headerInner {
    max-width: 720px !important;
    width: 100% !important;
  }
}

/* landing bits */
.hero-baner {
  padding: 16px 18px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  overflow: hidden;
}
.heroThumb {
  width: 96px;
  height: auto;
  aspect-ratio: 96 / 103;
  flex-shrink: 0;
}
.heroCopy {
  flex: 1;
  min-width: 0;
}
.hero-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
  margin: 4px 0 8px;
  color: #f5f3ff;
}
.heroLead {
  font-size: 14px;
  line-height: 1.45;
  color: #c9c4ea;
  margin: 0 0 8px;
}
.tagRow {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ui-chip {
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 8px;
}
.ui-chip.cyan {
  color: #17e6ff;
  background: rgba(23, 230, 255, 0.1);
  border: 1px solid rgba(23, 230, 255, 0.35);
}
.ui-chip.pink {
  color: #ff2ea6;
  background: rgba(255, 46, 166, 0.1);
  border: 1px solid rgba(255, 46, 166, 0.35);
}
.ui-chip.gold {
  color: #ffe14d;
  background: rgba(255, 225, 77, 0.1);
  border: 1px solid rgba(255, 225, 77, 0.35);
}

.games-section {
  padding: 4px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-x: hidden;
}
.gameCard {
  background: #1b1547;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 12px 8px;
  /* max-height: 132px; */
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gameCard.gold {
  border-top: 3px solid #ffe14d;
}
.gameCard.cyan {
  border-top: 3px solid #17e6ff;
}
.gameCard.pink {
  border-top: 3px solid #ff2ea6;
}
.gameCard {
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.gameCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(23, 230, 255, 0.16);
}
.gameCard.gold:hover {
  box-shadow: 0 12px 28px rgba(255, 225, 77, 0.22);
}
.gameCard.cyan:hover {
  box-shadow: 0 12px 28px rgba(23, 230, 255, 0.28);
}
.gameCard.pink:hover {
  box-shadow: 0 12px 28px rgba(255, 46, 166, 0.28);
}
.gameCard:hover .gameIco {
  transform: scale(1.08);
}
.gameCard:hover .card-btn {
  box-shadow: 0 0 22px rgba(23, 230, 255, 0.55);
}
.gameCard:hover .card-btn.glowPink {
  box-shadow: 0 0 22px rgba(255, 46, 166, 0.55);
}
@media (prefers-reduced-motion: reduce) {
  .gameCard {
    transition: none;
  }
  .gameCard:hover,
  .gameCard:hover .gameIco {
    transform: none;
  }
}
.gameCard__top {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.gameIco {
  width: 44px;
  height: 44px;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}
.gameMeta {
  flex: 1;
  min-width: 0;
}
.gameNameRow {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.gameName {
  font-weight: 700;
  font-size: 15px;
  color: #f5f3ff;
  margin: 0;
}
.gp-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 700;
  color: #c9c4ea;
}
.gameStars {
  font-size: 13px;
  color: #ffe14d;
  font-weight: 700;
  margin: 2px 0 0;
}
.gameStars span {
  color: #c9c4ea;
  font-weight: 600;
}
.gameBlurb {
  font-size: 14px;
  line-height: 1.4;
  color: #c4bfe0;
  margin: 0;
}
.card-btn {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #ff2ea6, #17e6ff);
  color: #0d0b26;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 8px;
  min-height: 44px;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(23, 230, 255, 0.35);
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.28s ease;
  text-decoration: none;
}
.card-btn:hover,
.card-btn:focus-visible {
  color: #0d0b26;
}
.card-btn.flip {
  background: linear-gradient(90deg, #17e6ff, #ff2ea6);
}
.card-btn.glowPink {
  box-shadow: 0 0 16px rgba(255, 46, 166, 0.35);
}

.secton-dark {
  padding: 24px 18px;
  background: #100c33;
  overflow-x: hidden;
}
.blockTitle {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 16px;
  color: #f5f3ff;
}
.whyStack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.whyCard {
  background: #1b1547;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  overflow: hidden;
}
.whyCard svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.whyCard h3 {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 4px;
  color: #f5f3ff;
}
.whyCard p {
  font-size: 14px;
  line-height: 1.5;
  color: #c4bfe0;
  margin: 0;
}

.faq-section {
  padding: 24px 18px;
  overflow-x: hidden;
}
.faqList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #1b1547;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.faq-h {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px;
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #f5f3ff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", "Inter Fallback", sans-serif;
}
.faq-chevron {
  flex-shrink: 0;
  color: #17e6ff;
  font-size: 16px;
  transition: transform 0.28s ease;
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}
.faq-panel-inner {
  overflow: hidden;
}
.faq-panel p {
  margin: 0;
  padding: 0 14px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #c4bfe0;
}

.contactTitle {
  margin-bottom: 8px;
}
.contactLead {
  font-size: 14px;
  line-height: 1.5;
  color: #c4bfe0;
  margin: 0 0 16px;
}
.addrBox {
  background: #1b1547;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #c9c4ea;
}
.addrBox p {
  margin: 0;
}
.addrBox p + p {
  margin-top: 10px;
}
.mapLink {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
}
.addrBox strong {
  color: #f5f3ff;
  display: block;
  margin-bottom: 4px;
}
.thanksNote {
  background: rgba(23, 230, 255, 0.1);
  border: 1px solid rgba(23, 230, 255, 0.35);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  font-size: 14px;
  color: #17e6ff;
  font-weight: 600;
}
.contactForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.fld label {
  font-size: 14px;
  color: #c9c4ea;
  margin-bottom: 4px;
  display: block;
}
.fld input,
.fld textarea {
  width: 100%;
  background: #1b1547;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px;
  color: #f5f3ff;
  font-size: 16px;
  font-family: "Inter", "Inter Fallback", sans-serif;
}
.fld textarea {
  resize: vertical;
}
.checkLine {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.4;
  color: #c4bfe0;
}
.checkLine input {
  margin-top: 4px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.checkLine label {
  flex: 1;
}
.checkLine a,
.addrBox a,
.footAddr a {
  text-decoration: underline;
}
.sendBtn {
  background: linear-gradient(90deg, #ff2ea6, #17e6ff);
  color: #0d0b26;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 0;
  min-height: 48px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(23, 230, 255, 0.35);
  cursor: pointer;
  margin-top: 4px;
  font-family: "Inter", "Inter Fallback", sans-serif;
}

.site-footer {
  background: #0a0820;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 18px 22px;
  color: #c4bfe0;
}
.footerInner {
  /* max-width: 480px; */
  margin: 0 auto;
}
.footLogoLink {
  display: inline-block;
  margin-bottom: 24px;
}
.footLogo {
  height: 28px;
  width: 134px;
  aspect-ratio: 134 / 28;
  display: block;
}
.footNav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 16px;
  margin-bottom: 24px;
  font-size: 14px;
}
.footNav a,
.legalStack a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.footAddr {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.footAddr p {
  margin: 0;
}
.footAddr strong {
  color: #f5f3ff;
}
.legalStack {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 14px;
  margin-bottom: 20px;
}
.respBox {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-bottom: 18px;
}
.respBox h2 {
  font-weight: 700;
  font-size: 14px;
  color: #f5f3ff;
  margin: 0 0 6px;
}
.respBox p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 12px;
}
.badgeRow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.finePrint {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 14px;
}
.copyLine {
  font-size: 14px;
  color: #c4bfe0;
}

/* legal articles */
.legal-dots {
  background-color: #0d0b26;
  /* dotted texture is a CSS gradient, not a photo url — leave it */
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}
.legal-body {
  padding: 24px 18px 8px;
}
.legal-body h1 {
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 4px;
  color: #f5f3ff;
}
.legalDate {
  font-size: 14px;
  color: #c9c4ea;
  margin: 0 0 18px;
}
.legalCopy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
}
.legalCopy h2 {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 6px;
}
.legalCopy p {
  margin: 0;
}
.legalCopy p + p {
  margin-top: 10px;
}
.legalCopy a {
  color: #ffffff;
  text-decoration: underline;
}
.legalCopy a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.legalCopy strong {
  color: #f5f3ff;
}
.legal-body + .site-footer,
.pageWrap .site-footer {
  margin-top: 24px;
}

/* cookie banner — overlay only, keep it out of document flow */
.cookieBaner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: #1b1547;
  border-top: 1px solid rgba(23, 230, 255, 0.45);
  padding: 14px 16px 16px;
  color: #f5f3ff;
  transform: translateY(0);
  opacity: 1;
  contain: layout paint;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}
.cookieBaner.is-hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookieBaner p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #f5f3ff;
  max-width: 920px;
}
.cookieBaner a {
  color: #17e6ff;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookieAccept {
  background: linear-gradient(90deg, #ff2ea6, #17e6ff);
  color: #0d0b26;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: "Inter", "Inter Fallback", sans-serif;
  font-size: 14px;
}
.cookieClose {
  background: transparent;
  color: #f5f3ff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: "Inter", "Inter Fallback", sans-serif;
  font-size: 14px;
}

.cookieAccept,
.cookieClose {
  min-height: 44px;
}

@media (min-width: 1024px) {
  .headerInner {
    max-width: 1200px;
    width: 100%;
    padding: 14px 32px;
  }
  .nav-list {
    gap: 28px;
  }
  .nav-list a {
    font-size: 15px;
  }

  .pageWrap {
    max-width: 1200px;
    width: 100%;
  }
  .footerInner {
    max-width: 1200px;
    width: 100%;
  }

  .hero-baner {
    padding: 40px 32px 28px;
    gap: 28px;
  }
  .heroThumb {
    width: 180px;
  }
  .hero-title {
    font-size: 32px;
  }
  .heroLead {
    font-size: 16px;
    max-width: 640px;
  }
  .ui-chip {
    font-size: 13px;
    padding: 5px 12px;
  }

  .games-section {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 12px 32px 40px;
    display: grid;
  }
  .gameName {
    font-size: 18px;
  }
  .gameIco {
    width: 56px;
    height: 56px;
  }
  .card-btn {
    font-size: 15px;
    padding: 11px 0;
  }

  .secton-dark {
    padding: 48px 32px;
  }
  .whyStack {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .blockTitle {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .faq-section {
    padding: 48px 32px;
  }
  .faqList {
    max-width: 900px;
  }

  #contact.secton-dark {
    display: block;
  }
  #contact .addrBox {
    max-width: 640px;
  }

  .site-footer {
    padding: 48px 32px 32px;
  }
  .footerInner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 20px 40px;
  }
  .footLogoLink {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }
  .respBox,
  .finePrint,
  .copyLine {
    grid-column: 1 / -1;
  }

  .legal-body {
    padding: 48px 32px 24px;
  }
  .legal-body h1 {
    font-size: 34px;
  }
  .legalCopy {
    font-size: 16px;
    max-width: 860px;
  }

  .cookieBaner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 32px;
  }
  .cookieBaner p {
    margin: 0;
  }
}
