:root {
  --bg: #000;
  --panel: #080c12;
  --panel-2: #0d1219;
  --line: rgba(255,255,255,.18);
  --line-soft: rgba(255,255,255,.12);
  --text: #fff;
  --muted: rgba(255,255,255,.68);
  --muted-2: rgba(255,255,255,.52);
  --cyan: #59dcff;
  --blue: #2588ff;
  --pink: #ff33cc;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--text);
  font-family: "Titillium Web", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

body {
  background:
    radial-gradient(circle at 42% 0%, rgba(89,220,255,.13), transparent 310px),
    radial-gradient(circle at 78% 4%, rgba(255,51,204,.08), transparent 350px),
    #000;
}

button,
input,
select,
textarea,
a {
  font: inherit;
  touch-action: manipulation;
}

button { cursor: pointer; }

.hidden { display: none !important; }

.app {
  width: 800px;
  max-width: 800px;
  margin: 0 auto;
  padding: 34px 0 40px;
  min-height: 760px;
}

/* ===== Landing layout. Fixed 800 desktop, fixed 380 mobile. ===== */

.landing {
  width: 800px;
  max-width: 800px;
  display: grid;
  grid-template-columns: 360px 400px;
  grid-template-areas:
    "intro login";
  column-gap: 40px;
  row-gap: 22px;
  align-items: start;
}

.intro {
  grid-area: intro;
  width: 360px;
  padding-top: 8px;
}

.loginCard {
  grid-area: login;
  width: 400px;
  max-width: 400px;
}

.secretTestCard {
  width: 360px;
  margin-top: 28px;
}

/* ===== Brand ===== */

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.logo.secretLogo {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  display: grid;
  place-items: center;
  color: var(--cyan);
}

.logo.secretLogo svg {
  display: block;
  width: 78px;
  height: 78px;
}

.brandWord,
.brandWord span {
  font-family: "Titillium Web", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .9;
  text-rendering: geometricPrecision;
}

.brandWord {
  font-size: 52px;
  color: #fff;
}

.brandWord span { color: var(--blue); }

/* ===== Hero ===== */

h1 {
  width: 360px;
  max-width: 360px;
  margin: 0;
  font-size: 39px;
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 700;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

h1 span { color: var(--blue); }

.lede {
  width: 360px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
}

.secretLine {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 360px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 17px;
  line-height: 1.18;
  font-weight: 700;
}

.secretBadge {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 3px solid var(--blue);
  border-radius: 14px;
  color: var(--cyan);
  font-family: "Titillium Web", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

/* ===== Cards and forms ===== */

.card,
.loginCard,
.modalCard {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 12, 18, .92);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}

.loginCard {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.view { width: 100%; }

label {
  display: block;
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(0,0,0,.66);
  color: #fff;
  font-size: 16px;
}

textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.35;
}

button {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border: 0;
  border-radius: 12px;
  padding: 13px 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

button.secondary,
.modeButton {
  background: #0e141d;
  color: #fff;
  border: 1px solid var(--line);
}

button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .62;
}

a {
  color: var(--cyan);
  font-weight: 700;
}

.tinyHelp,
.unlockHint,
small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.tinyHelp { margin: -8px 0 20px; }
.unlockHint { margin: 14px 0 0; text-align: center; }
small { display: block; margin-top: 5px; }

.optionalCode {
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.035);
}

.optionalCode summary {
  cursor: pointer;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 700;
}

.optionalCode label { margin: 14px 0 0; }
.optionalCode:not([open]) label { display: none; }

/* ===== Test accordion. Single clean box. ===== */

.secretTestCard {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

details.edit-test-details {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8,12,18,.92);
  box-shadow: none;
  overflow: hidden;
}

details.edit-test-details > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 20px;
  margin: 0;
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

details.edit-test-details > summary::-webkit-details-marker { display: none; }
details.edit-test-details > summary::before { content: "▸"; font-size: 13px; }
details.edit-test-details[open] > summary::before { content: "▾"; }

details.edit-test-details .testDetailsInner {
  margin: 0;
  padding: 0 20px 20px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.simpleInstruction {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.copyRow {
  display: grid;
  grid-template-columns: 1fr 74px;
  gap: 10px;
  margin-top: 12px;
}

.copyRow input,
.copyRow button { margin-top: 0; min-width: 0; }
.reportButton { margin-top: 10px; }

.textButton {
  min-height: auto;
  height: auto;
  margin-top: 10px;
  padding: 0;
  background: transparent;
  color: var(--cyan);
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Compose/edit screen ===== */

.connected {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(89,220,255,.35);
  border-radius: 12px;
  background: rgba(89,220,255,.08);
}

.connected span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
}

.connected strong {
  color: var(--cyan);
  font-size: 18px;
  font-weight: 700;
}

.modeTabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 18px;
}

.modeButton {
  margin-top: 0;
}

.modeButton.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(89,220,255,.08);
}

.mediaPanel {
  margin: -6px 0 16px;
  padding: 14px;
  border: 1px dashed rgba(89,220,255,.35);
  border-radius: 12px;
  background: rgba(89,220,255,.045);
}

.fileBox input { padding: 12px; }
.logoutButton { margin-top: 12px; }

.result,
.loadedSkeetBox {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(89,220,255,.35);
  border-radius: 12px;
  background: rgba(89,220,255,.08);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.loadedSkeetBox { margin: -4px 0 18px; }
.result strong,
.loadedSkeetBox strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-weight: 700;
}

.result a { color: var(--cyan); }

/* ===== Modals ===== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,.72);
}

.modalCard {
  position: relative;
  width: min(520px, calc(100vw - 44px));
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 24px;
  background: rgba(8,12,18,.98);
}

.modalClose {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  min-height: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background: #0e141d;
  border: 1px solid var(--line);
}

.modalCard h3 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.modalIntro {
  margin: 0 0 18px;
  color: var(--muted);
}

.directoryShell { display: grid; gap: 12px; }

.azLegend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.azLegend a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
}

.testedTable {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.testedHead,
.testedRow {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.testedHead {
  color: var(--muted);
  font-size: 13px;
}

.testedRow:last-child { border-bottom: 0; }
.testedRow strong { color: var(--muted); }
.testedRow.works strong { color: var(--cyan); }
.testedRow.no strong { color: var(--pink); }

/* ===== Toasts, footer, accessibility ===== */

.message,
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 40px));
  z-index: 10001;
  padding: 14px 18px;
  border: 1px solid var(--cyan);
  border-radius: 14px;
  background: #0c0c10;
  color: #fff;
  text-align: center;
}

footer {
  width: 800px;
  margin: 30px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

footer p { margin: 0 0 4px; }
footer a { color: var(--cyan); font-weight: 700; }

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(89,220,255,.22);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (forced-colors: active) {
  button, input, select, textarea, .card, .modalCard {
    border: 1px solid ButtonText !important;
  }
}

/* ===== Mobile snap. No fluid responsive layout. ===== */

@media (max-width: 799px) {
  .app {
    width: 380px;
    max-width: 380px;
    padding: 22px 0 34px;
  }

  .landing {
    width: 380px;
    max-width: 380px;
    grid-template-columns: 380px;
    grid-template-areas:
      "intro"
      "login";
    gap: 18px;
  }

  .intro,
  .loginCard,
  .secretTestCard,
  footer {
    width: 380px;
    max-width: 380px;
  }

  .intro {
    padding-top: 0;
    text-align: center;
  }

  .brand {
    justify-content: center;
    gap: 9px;
    margin-bottom: 22px;
  }

  .logo.secretLogo,
  .logo.secretLogo svg {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .brandWord { font-size: 40px; }

  h1 {
    width: 380px;
    max-width: 380px;
    font-size: 34px;
    text-align: center;
  }

  .lede {
    width: 380px;
    font-size: 15px;
    text-align: center;
  }

  .secretLine {
    justify-content: center;
    width: 380px;
    margin-top: 22px;
    padding-top: 20px;
    text-align: left;
    font-size: 16px;
  }

  .secretBadge {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .loginCard { padding: 18px; }

  label,
  input,
  select,
  textarea,
  button {
    font-size: 15px;
  }

  .copyRow,
  .modeTabs,
  .testedHead,
  .testedRow {
    grid-template-columns: 1fr;
  }

  .testedHead,
  .testedRow { gap: 4px; }

  .message,
  .toast { width: 352px; }
}


/* ===== Payment and usage. Matches the SkyShred control treatment while keeping Secret Skies separate. ===== */
.usageText {
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.buyButton {
  width: 100%;
  min-height: 44px;
  margin: 0 0 18px;
  border: 1px solid var(--pink);
  border-radius: 14px;
  background: rgba(255, 51, 204, .12);
  color: #fff;
  font-weight: 700;
  letter-spacing: -.01em;
}

.buyButton:hover {
  background: rgba(255, 51, 204, .2);
  box-shadow: 0 0 18px rgba(255, 51, 204, .18);
}

strong { color: var(--pink); }

@media (max-width: 799px) {
  .app,
  .landing {
    width: 380px;
    max-width: 380px;
  }

  .app {
    padding-left: 0;
    padding-right: 0;
  }
}

/* =========================================================
   SECRET SKIES LOCKED LAYOUT REPAIR
   Deploy stamp: 20260520124820
   Purpose: fixed 800px desktop / fixed 380px mobile only.
   ========================================================= */

html,
body {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
}

body {
  display: block;
}

.app {
  width: 800px !important;
  min-width: 800px !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 44px 0 40px !important;
}

.landing {
  width: 800px !important;
  min-width: 800px !important;
  max-width: 800px !important;
  display: grid !important;
  grid-template-columns: 360px 400px !important;
  grid-template-areas: "intro login" !important;
  column-gap: 40px !important;
  row-gap: 0 !important;
  align-items: start !important;
}

.intro {
  grid-area: intro !important;
  width: 360px !important;
  max-width: 360px !important;
  min-width: 360px !important;
  padding-top: 8px !important;
  text-align: left !important;
}

.loginCard {
  grid-area: login !important;
  width: 400px !important;
  max-width: 400px !important;
  min-width: 400px !important;
  justify-self: start !important;
}

.secretTestCard {
  grid-area: auto !important;
  width: 360px !important;
  max-width: 360px !important;
  min-width: 360px !important;
  margin: 28px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.secretLine {
  width: 360px !important;
  max-width: 360px !important;
  display: flex !important;
  align-items: center !important;
}

.secretLine span:last-child {
  white-space: normal !important;
}

details.edit-test-details {
  width: 360px !important;
  max-width: 360px !important;
}

details.edit-test-details > summary {
  white-space: nowrap !important;
}

.simpleInstruction {
  white-space: normal !important;
}

footer {
  width: 800px !important;
  max-width: 800px !important;
}

@media (max-width: 799px) {
  html,
  body {
    overflow-x: auto;
  }

  .app {
    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    padding: 26px 0 34px !important;
  }

  .landing {
    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important;
    display: grid !important;
    grid-template-columns: 380px !important;
    grid-template-areas:
      "intro"
      "login" !important;
    gap: 18px !important;
  }

  .intro,
  .loginCard,
  .secretTestCard,
  details.edit-test-details,
  footer {
    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important;
  }

  .intro {
    text-align: left !important;
  }

  .brand {
    justify-content: flex-start !important;
  }

  h1,
  .lede,
  .secretLine {
    width: 380px !important;
    max-width: 380px !important;
  }

  .secretLine {
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  details.edit-test-details > summary {
    white-space: nowrap !important;
  }
}

/* =========================================================
   SECRET SKIES MOBILE BOTTOM INFO FIX
   Deploy stamp: 20260520125927
   Purpose: on mobile, keep logo/headline first, editor second,
   then move the 3-free-edits line and community check above footer.
   ========================================================= */

@media (max-width: 799px) {
  .landing {
    display: flex !important;
    flex-direction: column !important;
  }

  .intro {
    display: contents !important;
  }

  .brand {
    order: 1 !important;
  }

  h1 {
    order: 2 !important;
  }

  .lede {
    order: 3 !important;
  }

  .intro > hr,
  .intro .rule,
  .intro .divider {
    order: 4 !important;
  }

  .loginCard {
    order: 5 !important;
  }

  .mobileBottomInfo.secretLine {
    order: 6 !important;
    margin-top: 24px !important;
  }

  .mobileBottomInfo.secretTestCard {
    order: 7 !important;
    margin-top: 18px !important;
  }

  footer {
    order: 8 !important;
    margin-top: 18px !important;
  }
}

/* =========================================================
   SECRET SKIES MOBILE CENTER LOGO FIX
   Deploy stamp: 20260520130022
   Purpose: center the logo/brand at the top on mobile only.
   ========================================================= */

@media (max-width: 799px) {
  .brand {
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }
}


/* SecretSkies footer layout update */
.skyFooterInner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.footerAboutLink {
  color: #39d9ff;
  text-decoration: none;
  font-weight: 600;
}

.footerAboutLink:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.skyFooterMeta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.4;
}

.skyFooterMeta a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.skyFooterMeta a:hover {
  color: #39d9ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 520px) {
  .skyFooterMeta {
    flex-direction: column;
    gap: 6px;
  }
}

/* Main logo PNG replacement */
img.logo.secretLogo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
}


/* ===== ShredTweets static site additions ===== */
.fullWidthLink {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 14px;
}

.secondaryButton {
  background: rgba(255,51,204,.18);
  border: 1px solid var(--pink);
  color: #fff;
}

.homeSeoLinks {
  width: 800px;
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

.siteFooter {
  width: 800px;
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 13px;
}

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

@media (max-width: 700px) {
  .homeSeoLinks,
  .siteFooter {
    width: 380px;
    max-width: 380px;
  }
}

/* ShredTweets button polish */
.button,
.fullWidthLink,
.secondaryButton,
a.button,
button.button {
  border-radius: 14px !important;
  border: 1px solid rgba(79, 211, 255, 0.9) !important;
  overflow: hidden;
}

.secondaryButton,
.button.secondaryButton {
  background: linear-gradient(90deg, rgba(255, 56, 214, 0.28), rgba(47, 140, 255, 0.22)) !important;
  color: #ffffff !important;
  border-color: rgba(255, 56, 214, 0.95) !important;
}

.fullWidthLink:hover,
.button:hover,
.secondaryButton:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(79, 211, 255, 0.28);
}

/* ShredTweets nav cleanup */
.homeSeoLinks,
.siteFooter,
.seoFooter {
  width: 800px;
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.homeSeoLinks {
  margin-top: 30px !important;
  padding: 12px 14px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 18px !important;
  background: rgba(8, 11, 16, .72) !important;
}

.homeSeoLinks a,
.seoFooter a,
.siteFooter a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(79, 211, 255, .45) !important;
  color: #4fd3ff !important;
  text-decoration: none !important;
  font-size: 13px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  background: rgba(79, 211, 255, .06) !important;
}

.homeSeoLinks a:hover,
.seoFooter a:hover,
.siteFooter a:hover {
  color: #ffffff !important;
  border-color: rgba(79, 211, 255, .95) !important;
  background: rgba(79, 211, 255, .16) !important;
  box-shadow: 0 0 16px rgba(79, 211, 255, .2) !important;
}

.siteFooter,
.seoFooter {
  margin-top: 18px !important;
  padding-bottom: 28px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  color: rgba(255,255,255,.62) !important;
  font-size: 13px !important;
}

.siteFooter span,
.seoFooter span {
  color: rgba(255,255,255,.62) !important;
}

@media (max-width: 700px) {
  .homeSeoLinks,
  .siteFooter,
  .seoFooter {
    width: 380px !important;
    max-width: calc(100vw - 24px) !important;
  }

  .homeSeoLinks {
    justify-content: flex-start !important;
  }

  .homeSeoLinks a,
  .seoFooter a,
  .siteFooter a {
    font-size: 12px !important;
    padding: 0 10px !important;
  }
}

/* Final ShredTweets nav cleanup */
.homeSeoLinks,
.seoFooter {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.homeSeoLinks {
  margin-top: 30px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.homeSeoLinks a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(79, 211, 255, .7) !important;
  color: #4fd3ff !important;
  text-decoration: none !important;
  font-size: 13px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  background: rgba(0, 0, 0, .38) !important;
}

.homeSeoLinks a:hover {
  color: #ffffff !important;
  border-color: rgba(79, 211, 255, 1) !important;
  background: rgba(79, 211, 255, .13) !important;
}

.siteFooter,
.seoFooter {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.siteFooter a,
.seoFooter a {
  display: inline !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255,255,255,.72) !important;
  text-decoration: underline !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.siteFooter a:hover,
.seoFooter a:hover {
  color: #4fd3ff !important;
  background: transparent !important;
  box-shadow: none !important;
}

.siteFooter,
.seoFooter {
  margin-top: 18px !important;
  padding-bottom: 28px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
  color: rgba(255,255,255,.62) !important;
  font-size: 13px !important;
}
