/* ============================================================
   OUTSIDERS — Landing Page Styles
   Design: Cinematic minimalism · Yellow + Black
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #FCB900;
  --black: #0A0A0A;
  --black-soft: #1A1A1A;
  --gray-dark: #2C2C2C;
  --gray-mid: #555;
  --gray-light: #999;
  --white: #FFFFFF;
  --border: rgba(0, 0, 0, 0.12);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 64px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--yellow);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 0;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background-color: var(--black);
  color: var(--white);
  padding: 18px 40px;
  font-size: 0.875rem;
}

.btn--primary:hover {
  background-color: var(--black-soft);
}

.btn--nav {
  background-color: transparent;
  color: var(--black);
  padding: 10px 24px;
  font-size: 0.75rem;
}

.btn--nav:hover {
  background-color: var(--black);
  color: var(--yellow);
}

/* ---- Section labels ---- */
.section__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 5vw, 60px);
  background-color: var(--yellow);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav__logo {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  background: none;
  border: 1.5px solid var(--black);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--black);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-toggle:hover {
  background: var(--black);
  color: var(--yellow);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: var(--section-pad);
  max-width: var(--container);
  margin-inline: auto;
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid rgba(0,0,0,0.35);
  color: var(--black);
  padding: 6px 14px;
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 32px;
  text-transform: uppercase;
  color: var(--white);
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--black);
}

.hero__body {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(0,0,0,0.6);
  margin-bottom: 48px;
  max-width: 46ch;
}

.hero__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__social-proof {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
}

/* Black CTA button on yellow hero background */
.hero__cta .btn--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.hero__cta .btn--primary:hover {
  background: var(--black-soft);
  border-color: var(--black-soft);
}

/* Hero */
.hero {
  gap: 0;
  background: var(--yellow);
}

.hero__content {
  padding-right: clamp(24px, 4vw, 56px);
}

.hero__visual {
  position: relative;
  background: transparent;
  align-self: stretch;
  min-height: 480px;
  overflow: hidden;
}

/* Fade at left edge where hero content meets canvas */
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 0;
  width: 60px;
  background: linear-gradient(to right, var(--yellow), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Canvas fills the full visual panel */
.worldnet-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---- Floating role nodes (restored + adapted) ---- */
.hero__node {
  position: absolute;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  color: var(--black);
  background: transparent;
  animation: nodeFade 6s ease-in-out infinite;
  z-index: 2;
  white-space: nowrap;
  opacity: 0;
}

.hero__node::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--black);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: -12px;
}

.hero__node--1  { top: 5%;     left: 5%;    animation: nodeFade 5.5s ease-in-out infinite 0.0s;   }
.hero__node--2  { top: 5%;     right: 4%;   animation: nodeFade 7.0s ease-in-out infinite 1.2s;   }
.hero__node--3  { top: 22%;    left: 2%;    animation: nodeFade 6.0s ease-in-out infinite 2.5s;   }
.hero__node--4  { top: 22%;    right: 3%;   animation: nodeFade 8.0s ease-in-out infinite 0.8s;   }
.hero__node--5  { top: 40%;    left: 8%;    animation: nodeFade 5.0s ease-in-out infinite 3.5s;   }
.hero__node--6  { top: 40%;    right: 6%;   animation: nodeFade 6.5s ease-in-out infinite 1.8s;   }
.hero__node--7  { top: 58%;    left: 3%;    animation: nodeFade 7.5s ease-in-out infinite 4.2s;   }
.hero__node--8  { top: 58%;    right: 10%;  animation: nodeFade 5.8s ease-in-out infinite 2.2s;   }
.hero__node--9  { top: 75%;    left: 12%;   animation: nodeFade 6.3s ease-in-out infinite 1.5s;   }
.hero__node--10 { top: 75%;    right: 4%;   animation: nodeFade 5.2s ease-in-out infinite 3.1s;   }
.hero__node--11 { bottom: 5%;  left: 5%;    animation: nodeFade 7.1s ease-in-out infinite 0.6s;   }
.hero__node--12 { bottom: 5%;  right: 4%;   animation: nodeFade 6.7s ease-in-out infinite 2.9s;   }

@keyframes nodeFade {
  0%        { opacity: 0;   transform: translateY(10px);  }
  15%, 70%  { opacity: 1;   transform: translateY(0px);   }
  50%       { opacity: 1;   transform: translateY(-6px);  }
  88%, 100% { opacity: 0;   transform: translateY(-14px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  background-color: var(--black);
  padding-block: 16px;
  border-top: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
}

.marquee__track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee__track span {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  padding-block: var(--section-pad);
  background-color: var(--white);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  border: 1.5px solid var(--black);
}

.problem__card {
  padding: 48px 40px;
  background-color: var(--black);
  border-right: 1.5px solid rgba(255,255,255,0.08);
  position: relative;
  transition: background 0.2s ease;
}

.problem__card:last-child {
  border-right: none;
}

.problem__card:hover {
  background-color: var(--black-soft);
}

.problem__number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}

.problem__card-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--yellow);
}

.problem__card-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   STATEMENT
   ============================================================ */
.statement {
  background-color: var(--black);
  padding-block: clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.statement__text {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  flex-wrap: wrap;
  line-height: 1;
}

.statement__strike {
  color: var(--white);
  opacity: 0.5;
}

.statement__arrow {
  color: var(--yellow);
  font-size: clamp(2rem, 6vw, 5rem);
}

.statement__highlight {
  color: var(--yellow);
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution {
  padding-block: var(--section-pad);
  background-color: var(--yellow);
}

.solution__description {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--gray-dark);
  max-width: 60ch;
  margin-top: 24px;
  margin-bottom: 60px;
}

.solution__features {
  list-style: none;
  border-top: 1.5px solid var(--black);
}

.solution__feature {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 28px;
  border-bottom: 1.5px solid var(--black);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: default;
  transition: padding-left 0.2s ease;
}

.solution__feature:hover {
  padding-left: 12px;
}

.solution__feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 32px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background-color: var(--black);
  padding-block: var(--section-pad);
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 20px;
}

.cta-banner__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
}

/* ============================================================
   SIGNUP FORM
   ============================================================ */
.signup {
  padding-block: var(--section-pad);
  background-color: var(--white);
}

.form {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form__required {
  color: var(--black);
}

.form__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.5;
}

.form__input {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--black);
  color: var(--black);
  font-family: var(--font);
  font-size: 1rem;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  border-radius: 0;
}

.form__input::placeholder {
  color: var(--gray-light);
}

.form__input:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.form__input.is-invalid {
  border-color: #c0392b;
}

.form__error {
  font-size: 0.8125rem;
  color: #c0392b;
  font-weight: 500;
  min-height: 18px;
}

/* Select */
.form__select-wrapper {
  position: relative;
}

.form__select {
  cursor: pointer;
  padding-right: 44px;
}

.form__select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1rem;
}

/* Checkboxes */
.form__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.form__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  user-select: none;
}

.form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form__checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.form__checkbox:checked + .form__checkbox-custom {
  background-color: var(--black);
}

.form__checkbox:checked + .form__checkbox-custom::after {
  content: '✓';
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
}

/* Radio buttons — experience level */
.form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.form__radio-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  user-select: none;
}

.form__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form__radio-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.form__radio:checked + .form__radio-custom::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
}

/* Submit */
.form__submit {
  margin-top: 12px;
}

.btn--submit {
  position: relative;
  overflow: hidden;
  padding: 20px 56px;
  font-size: 0.9375rem;
}

.btn__loading {
  display: none;
}

.btn--submit.is-loading .btn__text {
  display: none;
}

.btn--submit.is-loading .btn__loading {
  display: inline;
}

/* Success */
.form__success {
  text-align: center;
  padding: 80px 40px;
  border: 1.5px solid var(--black);
  margin-top: 52px;
  animation: fadeIn 0.4s ease;
}

.form__success-icon {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 24px;
  display: block;
  width: 72px;
  height: 72px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 32px;
}

.form__success-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--yellow);
}

.form__success-body {
  font-size: 1rem;
  color: var(--gray-mid);
  margin-bottom: 24px;
}

.form__success-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
  max-width: 480px;
}

.form__success-steps li {
  font-size: 0.95rem;
  color: var(--black);
  padding: 10px 0 10px 28px;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.form__success-steps li:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.form__success-steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-weight: 700;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CLOSING
   ============================================================ */
.closing {
  background-color: var(--black);
  padding-block: var(--section-pad);
  text-align: center;
}

.closing__line {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.closing__line--bold {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.02em;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 28px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__logo {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--yellow);
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--black);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  border-top: 1px solid rgba(252,185,0,0.15);
  transition: transform 0.3s ease;
}

.sticky-cta.is-hidden {
  transform: translateY(110%);
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-decoration: none;
  min-height: 52px;
}

.sticky-cta__proof {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: calc(var(--nav-h) + 60px) 60px;
  }

  .hero__content {
    padding-right: 0;
  }

  .hero__visual {
    min-height: 280px;
  }

  .hero__visual::before {
    display: none;
  }

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

  .problem__card {
    border-right: none;
    border-bottom: 1.5px solid var(--black);
  }

  .problem__card:last-child {
    border-bottom: none;
  }

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

@media (max-width: 600px) {
  .nav .btn--nav {
    display: none;
  }

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

  .statement__text {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .form__checkboxes,
  .form__radios {
    flex-direction: column;
  }

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

/* ============================================================
   MOBILE-FIRST OPTIMIZATIONS (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: clamp(48px, 10vw, 80px);
  }

  /* Show sticky bar */
  .sticky-cta {
    display: flex;
  }

  /* Space for sticky bar */
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  /* Hero fills the screen, visual removed for focus + performance */
  .hero {
    min-height: calc(100svh - 78px - env(safe-area-inset-bottom));
    padding-block: calc(var(--nav-h) + 32px) 40px;
  }

  .hero__visual {
    display: none;
  }

  /* Full-width primary CTA in hero */
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero__cta .btn--primary {
    width: 100%;
    justify-content: center;
    padding: 20px 24px;
    font-size: 1rem;
  }

  .hero__social-proof {
    text-align: center;
  }

  /* Tighter problem cards */
  .problem__card {
    padding: 32px 24px;
  }

  /* Full-width submit button */
  .btn--submit {
    width: 100%;
    justify-content: center;
    padding: 20px 24px;
    font-size: 1rem;
  }

  /* Larger inputs — prevents iOS zoom, better thumb reach */
  .form__input {
    padding: 18px 16px;
    font-size: 1rem;
    min-height: 52px;
  }

  /* Bigger checkbox + radio hit areas */
  .form__checkbox-custom,
  .form__radio-custom {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .form__checkbox-label,
  .form__radio-label {
    padding: 6px 0;
    gap: 14px;
  }

  /* CTA banner button full-width */
  .cta-banner .btn--primary {
    width: 100%;
    max-width: 360px;
  }
}

/* Fine-tuning for small iPhones (SE, etc.) */
@media (max-width: 390px) {
  .hero__badge {
    font-size: 0.6875rem;
    padding: 5px 10px;
  }

  .problem__card {
    padding: 24px 16px;
  }

  .section__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
