:root {
  --nav-height: 48px;
  --footer-height: 44px;
  --hero-visible-height: calc(100vh - var(--nav-height) - var(--footer-height));
  --nav-bg: rgba(1, 4, 10, 0.95);
  --nav-border: rgba(255, 255, 255, 0.15);
  --loader-bg: rgba(0, 0, 0, 0.9);
  --loader-color: #0ff;
  --loader-size: 60px;
  --scrollbar-track: rgba(255, 255, 255, 0.06);
  --scrollbar-thumb: linear-gradient(180deg, #0ff 0%, #08c 100%);
  --scrollbar-thumb-hover: linear-gradient(180deg, #66ffff 0%, #0a9cff 100%);
}

@supports (height: 100dvh) {
  :root {
    --hero-visible-height: calc(100dvh - var(--nav-height) - var(--footer-height));
  }
}

/* loader styles */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--loader-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 150px;
  aspect-ratio: 1;
  border: 2px solid;
  box-sizing: border-box;
  border-radius: 50%;
  border-color: #0ff;
  box-shadow:
    white 0 0 1px,
    white 0 0 2px,
    white 0 0 4px,
    white 0 0 8px,
    white 0 0 28px;
  display: grid;
  animation: l11 2.5s infinite linear;
  transform-origin: 50% 80%;
}

.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  border: inherit;
  border-radius: 50%;
  box-shadow:
    white 0 0 1px,
    white 0 0 2px,
    white 0 0 4px,
    white 0 0 8px,
    white 0 0 28px;
  animation: inherit;
  animation-duration: 2s;
  transform-origin: inherit;
}

.loader:after {
  --s: -1;
}

@keyframes l11 {
  100% {
    transform: rotate(calc(var(--s, 1) * 1turn));
  }
}

body {
  margin: 0;
  padding-top: var(--nav-height);
  font-family: "Rajdhani", sans-serif;
  background: radial-gradient(#111, #000);
  color: #eee !important;
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-color: #08c var(--scrollbar-track);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 999px;
  border: 3px solid rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

.site-navbar {
  --bs-navbar-padding-y: 0;
  --bs-navbar-brand-padding-y: 0;
  --bs-navbar-brand-margin-end: 0.65rem;
  --bs-navbar-brand-font-size: 0.95rem;
  --bs-navbar-toggler-padding-y: 0.15rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--nav-height);
  padding-top: 0;
  padding-bottom: 0;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.site-navbar .container-fluid {
  min-height: var(--nav-height);
  align-items: center;
}

.site-navbar .navbar-brand,
.site-navbar__brand {
  letter-spacing: 0.1rem;
  font-size: 0.95rem;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.site-navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: #fff;
}

.site-navbar__brand:hover,
.site-navbar__brand:focus {
  color: #0ff;
}

.site-navbar__logo {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.35));
}

.site-navbar__name {
  display: inline-block;
  line-height: 1;
  padding-top: 0.1em;
  font-size: 0.95rem;
}

.site-navbar .navbar-nav {
  align-items: center;
}

.site-navbar .nav-item {
  display: flex;
  align-items: center;
}

.site-navbar .nav-link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.78rem;
  padding: 0.35rem 0.45rem;
  transition: color 0.2s ease;
  position: relative;
  line-height: 1.2;
}

.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0ff, #08c);
  transition: width 0.3s ease;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link:focus::after {
  width: 100%;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  color: #0ff;
}

.site-navbar .nav-link.active::after {
  width: 100%;
}

.site-navbar .btn-info {
  background: #0ff;
  color: #000;
  border: none;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem !important;
}

.site-navbar .btn-info:hover,
.site-navbar .btn-info:focus {
  background: #0cc;
  color: #fff;
}

.site-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.lang-switcher--nav {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.lang-switcher__btn,
.lang-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  color: #b8c4e6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switcher__btn:hover,
.lang-switcher__btn:focus,
.lang-switcher__link:hover,
.lang-switcher__link:focus {
  color: #fff;
  text-decoration: none;
}

.lang-switcher__btn.is-active,
.lang-switcher__link.is-active {
  color: #001018;
  background: #0ff;
}

.lang-switcher__sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  user-select: none;
}

.lang-switcher--footer .lang-switcher__link {
  min-width: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.lang-switcher--footer .lang-switcher__link.is-active {
  color: #0ff;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.hosting-email-standby-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 1rem 0 1.25rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 193, 7, 0.28);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 255, 255, 0.03));
  color: #f4f7ff;
}

.hosting-email-standby-notice__icon {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.16);
  color: #ffd76a;
  font-size: 1rem;
}

.hosting-email-standby-notice__title {
  display: block;
  margin-bottom: 0.25rem;
  color: #ffe08a;
  font-size: 0.95rem;
}

.hosting-email-standby-notice__body {
  color: #d7def2;
  font-size: 0.92rem;
  line-height: 1.6;
}

.hosting-email-standby-notice--dashboard {
  margin-top: 0;
}

.hosting-email-standby-notice--inline {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.9rem;
}

.hosting-email-standby-notice--inline .hosting-email-standby-notice__icon {
  width: 1.7rem;
  height: 1.7rem;
  font-size: 0.85rem;
}

.hosting-email-standby-notice--inline .hosting-email-standby-notice__title {
  font-size: 0.88rem;
}

.hosting-email-standby-notice--inline .hosting-email-standby-notice__body {
  font-size: 0.84rem;
}

.login_form_submit,
.compare_order_link,
.domain_search_submit,
.signupFormButton,
.domain_search_order_btn,
.small_button,
.LPFormButton {
  background: #0ff !important;
  color: #000;
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  font-weight: 700;
  border: none;
  transition: background 0.2s ease;
}
.login_form_submit:hover,
.compare_order_link:hover,
.domain_search_submit:hover,
.signupFormButton:hover,
.domain_search_order_btn:hover,
.small_button:hover {
  background: #0cc !important;
  color: #fff;
}

.domain_search_order_btn {
  line-height: normal;
  padding-top: 2px;
  padding-bottom: 2px;
}

h1,
h2,
h3 {
  font-family: "Audiowide", cursive;
}

/* --- HERO WITH VIDEO --- */
body.fixed-hero-page header.fixed-hero {
  min-height: var(--hero-visible-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.fixed-hero-page header.fixed-hero.home-hero {
  height: var(--hero-visible-height);
  min-height: var(--hero-visible-height);
  max-height: var(--hero-visible-height);
}

body.fixed-hero-page header.short-hero {
  display: none;
}

body.fixed-hero-page #hero-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

body.fixed-hero-page header.fixed-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

body.fixed-hero-page header.fixed-hero .content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  margin: 0;
}

body.fixed-hero-page header.fixed-hero.home-hero .content {
  height: 100%;
  min-height: 0;
  max-height: 100%;
  flex: 1 1 auto;
}

body.fixed-hero-page {
  position: relative;
}

body.fixed-hero-page header.fixed-hero h1,
body.fixed-hero-page header.fixed-hero p,
body.fixed-hero-page section h2,
body.fixed-hero-page section p,
body.fixed-hero-page section li,
body.fixed-hero-page .cookie-notice__text,
body.fixed-hero-page .dashboard-hero h2,
body.fixed-hero-page .dashboard-hero p,
body.fixed-hero-page .support-hero h1,
body.fixed-hero-page .support-hero p {
  text-shadow:
    0 1px 0 #000,
    0 2px 2px #000,
    0 4px 6px #000,
    0 0 10px #000;
}

/* Logo dentro do hero (sub-páginas) */
.hero-logo {
  width: 15vw;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px #0ff);
}

/* Slider do hero (frontpage) */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 clamp(0.75rem, 3vw, 2.5rem) 2.75rem;
  box-sizing: border-box;
}

.hero-slider__viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vh, 1.25rem);
  padding: 0 clamp(3.5rem, 8vw, 6rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
  text-align: center;
}

.hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-slider__icon {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  min-height: 5rem;
  max-width: 5rem;
  max-height: 5rem;
  aspect-ratio: 1 / 1;
  flex: 0 0 5rem;
  align-self: center;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  color: #0ff;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.35);
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.25);
  overflow: hidden;
}

.hero-slider__icon i {
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-size: 2rem;
  text-align: center;
}

.hero-slider__badge {
  margin: 0;
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fd7ff;
  font-weight: 600;
}

.hero-slider__title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.08;
  color: #0ff;
  text-shadow: 0 0 20px #0ff;
  max-width: 18ch;
}

.hero-slider__text {
  margin: 0;
  max-width: min(760px, 88vw);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  line-height: 1.55;
  color: #d5d9e8;
}

.hero-slider__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: clamp(0.5rem, 2vh, 1rem);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider__arrow i {
  display: block;
  line-height: 1;
  font-size: 1rem;
  pointer-events: none;
}

.hero-slider__arrow--prev {
  left: clamp(0.35rem, 2vw, 1.25rem);
}

.hero-slider__arrow--next {
  right: clamp(0.35rem, 2vw, 1.25rem);
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus {
  border-color: #0ff;
  background: rgba(0, 255, 255, 0.15);
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.35);
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(0.75rem, 3vh, 1.75rem);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.hero-slider__dot {
  width: 0.7rem;
  height: 0.7rem;
  min-width: 0.7rem;
  min-height: 0.7rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider__dot.is-active {
  background: #0ff;
  transform: scale(1.15);
  box-shadow: 0 0 10px #0ff;
}

body.fixed-hero-page header.fixed-hero .hero-slider__title,
body.fixed-hero-page header.fixed-hero .hero-slider__text,
body.fixed-hero-page header.fixed-hero .hero-slider__badge {
  text-shadow:
    0 1px 0 #000,
    0 2px 2px #000,
    0 4px 6px #000,
    0 0 10px #000;
}

header.fixed-hero h1:not(.hero-slider__title) {
  font-size: 6vh;
  color: #0ff;
  text-shadow: 0 0 20px #0ff;
}

header.fixed-hero p {
  font-size: 1.3em;
  color: #ccc;
}

@media (max-width: 767px) {
  .hero-slider {
    padding-bottom: 4rem;
  }

  .hero-slider__slide {
    padding: 0 3rem;
  }

  .hero-slider__icon {
    width: 4.25rem;
    height: 4.25rem;
    min-width: 4.25rem;
    min-height: 4.25rem;
    max-width: 4.25rem;
    max-height: 4.25rem;
    flex-basis: 4.25rem;
    font-size: 1.65rem;
  }

  .hero-slider__icon i {
    font-size: 1.65rem;
  }

  .hero-slider__arrow {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}

/* Botão com gradiente */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #0ff, #08c);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 15px #0ff;
  transition: 0.3s;
}

.btn:hover {
  background: linear-gradient(90deg, #08c, #0aa);
  box-shadow: 0 0 20px #0ff;
}

/* ---- DASHBOARD LAYOUT ---- */
.dashboard-shell {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 5vw 4rem;
  min-height: calc(100vh - var(--nav-height));
}
.dashboard-sidebar {
  width: 260px;
  padding: 1.5rem;
  background: rgba(1, 4, 10, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.sidebar-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px #0ff);
}
.sidebar-brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  color: #fff;
}
.sidebar-desc {
  color: #a6b3c8;
  line-height: 1.4;
  font-size: 0.95rem;
}
.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.dashboard-menu a {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08rem;
  color: #d4e1ff;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  text-decoration: none;
}
.dashboard-menu a:hover,
.dashboard-menu a.active {
  background: rgba(0, 255, 255, 0.15);
  color: #0ff;
  text-decoration: none;
}
.sidebar-footer {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1rem;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.4;
}
.sidebar-footer strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.sidebar-footer__billing-link {
  color: inherit;
  text-decoration: none;
}
.sidebar-footer__billing-link:hover {
  color: var(--bh-accent, #f5c451);
  text-decoration: underline;
}
.dashboard-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dashboard-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.12),
    rgba(3, 6, 18, 0.95)
  );
  border: 1px solid rgba(0, 255, 255, 0.3);
}
.dashboard-hero h2 {
  color: #0ff;
  font-size: 2rem;
}
.dashboard-hero p {
  color: #cfd5ff;
}
.dashboard-hero-actions {
  display: flex;
  gap: 0.7rem;
}
.dashboard-btn {
  background: #0ff;
  color: #000;
  font-weight: 700;
  padding: 0.65rem 1.3rem;
  border-radius: 24px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}
.dashboard-btn.secondary {
  background: #08c;
  color: #fff;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}
.dashboard-card {
  background: rgba(10, 10, 20, 0.9);
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}
.dashboard-card h3 {
  margin-top: 0;
  color: #8dc8ff;
}
.stat-value {
  font-size: 2.2rem;
  margin: 0.4rem 0;
  color: #fff;
}
.stat-value.danger {
  color: #ff6a6a;
}
.stat-value.highlight {
  color: #7dffcb;
}
.affiliate-profit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.75rem;
  border-radius: 1.2rem;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition:
    background 0.4s ease,
    color 0.4s ease,
    box-shadow 0.4s ease;
}
.affiliate-profit.profit-low {
  background: linear-gradient(120deg, #e74c3c, #c0392b);
  color: #fff;
  box-shadow: 0 0 15px rgba(231, 76, 60, 0.6);
}
.affiliate-profit.profit-mid {
  background: linear-gradient(120deg, #e67e22, #d35400);
  color: #fff;
  box-shadow: 0 0 15px rgba(230, 126, 34, 0.6);
}
.affiliate-profit.profit-high {
  background: linear-gradient(120deg, #f1c40f, #f39c12);
  color: #111;
  box-shadow: 0 0 15px rgba(241, 196, 15, 0.6);
}
.affiliate-profit.profit-max {
  background: linear-gradient(120deg, #2ecc71, #27ae60);
  color: #fff;
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.6);
}
.dashboard-section {
  padding: 1.5rem;
  background: rgba(8, 8, 16, 0.92);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.section-heading h3 {
  margin: 0;
  color: #0ff;
}
.section-actions {
  display: flex;
  gap: 0.5rem;
}
.dashboard-pill {
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  background: #0ff;
  border: none;
}
.dashboard-pill.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dashboard-table-wrapper {
  overflow-x: auto;
}
.dashboard-table {
  min-width: 520px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.dashboard-table th,
.dashboard-table td {
  border: none;
  padding: 0.8rem 1.2rem;
}
.dashboard-dotted {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px dashed rgba(0, 255, 255, 0.4);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
}
.dashboard-status {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.dashboard-status strong {
  font-size: 1.4rem;
  color: #0ff;
}
.dashboard-status span {
  color: #c7d6ff;
  font-size: 0.9rem;
}
.dashboard-alerts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #f5f5f5;
}
.dashboard-alerts li {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.9rem;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1100px) {
  .dashboard-shell {
    flex-direction: column;
    padding: 1.5rem 2vw 3rem;
  }
  .dashboard-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
  }
  .dashboard-sidebar nav {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .dashboard-hero-actions {
    width: 100%;
    flex-direction: column;
  }
  .dashboard-status {
    flex-direction: column;
  }
  .sidebar-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Under Construction Message */
.construction-message {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #0ff;
  font-size: 1.2em;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px #0ff;
  z-index: 4;
  text-align: center;
}

.disabled {
  pointer-events: none;
  opacity: 0.6;
}

section {
  padding: 60px 20px;
  /* max-width: 1000px; */
  margin: auto;
  scroll-margin-top: calc(var(--nav-height) + 20px);
  overflow: hidden;
}

section h2 {
  text-align: center;
  font-size: 2.5em;
  color: #0ff;
  margin-bottom: 20px;
}

section p {
  text-align: center;
  color: white;
  font-size: 1.1em;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #111;
  text-align: center;
  transition: transform 0.3s;
}

.plan-section {
  background: linear-gradient(
    135deg,
    rgba(3, 6, 18, 0.9),
    rgba(8, 16, 40, 0.85)
  );
  border-top: 1px solid rgba(0, 255, 255, 0.4);
  border-bottom: 1px solid rgba(0, 255, 255, 0.4);
  padding: 60px 30px;
  margin-top: 60px;
}

.plan-section h2 {
  margin-bottom: 10px;
}

.plan-section .text-muted {
  color: #cfdcff;
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.plan-grid .card {
  background: rgba(8, 16, 32, 0.8);
  border-radius: 22px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.08);
  text-align: left;
}

.plan-grid .card h3 {
  color: #0ff;
  margin-bottom: 10px;
}

.plan-price-banner {
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan-price-value {
  font-size: 2rem;
  font-weight: 700;
  color: #0ff;
  line-height: 1.1;
}
.plan-price-note {
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  color: #a5d2ff;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.plan-feature-list {
  margin-top: 16px;
}

.plan-details {
  width: 100%;
  border-collapse: collapse;
}

.plan-details td {
  padding: 6px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #d7e5ff;
  font-size: 0.95rem;
}

.plan-details td:first-child {
  color: #0ff;
  font-weight: 600;
  text-align: left;
}

.plan-details td:last-child {
  text-align: right;
}

.plan-details tbody tr:last-child td {
  border-bottom: none;
}

.plan-details tbody tr:hover {
  background: rgba(0, 255, 255, 0.08);
  transition: background 0.2s ease;
}

.plan-action {
  margin-top: 18px;
  text-align: right;
}

.plan-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0ff;
  color: #000;
  padding: 0.45rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  border: none;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.plan-order-btn:hover,
.plan-order-btn:focus {
  background: #08c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #0ff;
}

.card h3 {
  color: #0ff;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 30px;
  color: #666;
  background: #0a0a0a;
}

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 3.75rem;
  transform: translateX(-50%) translateY(20px);
  width: min(92vw, 760px);
  z-index: 1100;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.cookie-notice.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-notice__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  background: rgba(6, 10, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.cookie-notice__text {
  margin: 0;
  text-align: left;
  color: #d7def8;
  font-size: 0.96rem;
  line-height: 1.55;
}

.cookie-notice__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.cookie-notice__link {
  color: #9ed6ff;
  text-decoration: none;
  font-weight: 600;
}

.cookie-notice__link:hover,
.cookie-notice__link:focus {
  color: #0ff;
}

.cookie-notice__button {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, #0ff, #08c);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.25);
}

.cookie-notice__button:hover,
.cookie-notice__button:focus {
  background: linear-gradient(90deg, #08c, #0aa);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal.up {
  transform: translateY(40px);
}

.reveal.up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.left {
  transform: translateX(-40px);
}

.reveal.left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal.right {
  transform: translateX(40px);
}

.reveal.right.active {
  opacity: 1;
  transform: translateX(0);
}

/***********************************************/
table.compare_tbl {
  font-family: Arial, Helvetica, Sans-Serif;
  border-width: 1px;
  border-style: solid;
  border-color: #084793;
}

table.compare_tbl td {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #000;
  text-align: center;

  background-color: #ffffff;

  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #084793;

  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #084793;

  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
}

table.compare_tbl td.plan_name {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;

  background: #084793;

  border-top-width: 0px;
  border-top-style: none;
  border-top-color: #cccccc;

  border-left-width: 0px;
  border-left-style: none;
  border-left-color: #cccccc;

  padding-top: 15px;
  padding-right: 5px;
  padding-bottom: 15px;
  padding-left: 5px;
}

table.compare_tbl th.plan_name,
table.compare_tbl th.compare_parameter {
  font-family: Arial, Helvetica, Sans-Serif;

  font-size: 12px;
  color: #000;
  text-align: left;
  font-weight: bold;

  background-color: #eeeeee;

  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #084793;

  padding-top: 5px;
  padding-right: 0px;
  padding-bottom: 5px;
  padding-left: 10px;
}
table.compare_tbl th,
table.compare_tbl th.compare_button_td {
  background-color: #eeeeee;

  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #084793;
}
table.compare_tbl td.compare_parameter {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #000;
  text-align: start;
  font-weight: bold;

  background-color: #cdcbcb;

  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #084793;

  border-left-width: 1px;
  border-left-style: none;
  border-left-color: #cccccc;

  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
}

.tip {
  background: #000000;
  border-width: 1px;
  border-style: solid;
  border-color: #eee !important;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.tip a {
  color: #ffffff;
}

.LPFormText {
  font-family: Arial, Helvetica, Sans-Serif;
  background: #ffffff;

  border-width: 0px;
  border-style: none;
  border-color: #ffffff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}
.LPsmall_text {
  font-family: Arial, Helvetica, Sans-Serif;

  font-size: 10px;
  color: #999999;
  text-align: left;
  font-weight: normal;
}
.LPFormTitle {
  display: table-cell;
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 15px;
  color: #000000;
  text-align: center;
  font-weight: bold;
}
.LPFormHR {
  height: 1px;
  background: #2a72c9;
  border-width: 1px;
  border-style: solid;
  border-color: #2a72c9;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.LPFormLabel {
  display: block;
  width: 160px;
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 14px;
  color: #000000;
  text-align: center;
  font-weight: normal;

  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.LPFormInputField,
.LPFormSecurityCode {
  display: block;
  text-align: center;
}
input.LPFormInputbox,
.LPFormInputbox[name="verifcode"] {
  font-family: Arial, Helvetica, Sans-Serif;
  width: 150px;
  font-size: 12px;
  color: #333333;
  text-align: start;
  font-weight: normal;
  background: #ffffff;

  border-width: 1px;
  border-style: solid;
  border-color: #999999;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 1px;
  padding-right: 2px;
  padding-bottom: 1px;
  padding-left: 2px;

  margin-top: 0px;
  margin-bottom: 1px;
}
.LPFormInputbox::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #333333;
}
.LPFormInputbox::-moz-placeholder {
  /* Firefox 19+ */
  color: #333333;
}
.LPFormInputbox:-ms-input-placeholder {
  /* IE 10+ */
  color: #333333;
}
.LPFormInputbox:-moz-placeholder {
  /* Firefox 18- */
  color: #333333;
}

.LP_error_box {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #cc0000;
  text-align: center;
  font-weight: bold;
  background: #f6f6f6;

  border-width: 1px;
  border-style: solid;
  border-color: #818181;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}
.login_form_tbl {
  font-family: Arial, Helvetica, Sans-Serif;
  background: #f6f6f6;

  border-width: 0px;
  border-style: none;
  border-color: #ffffff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-spacing: 25px;
  border-collapse: separate;
}

td.login_form_title {
  font-family: Arial, Helvetica, Sans-Serif;
  display: block;
  font-size: 14px;
  color: #333333;
  text-align: center;
  font-weight: normal;
}

td.login_form_text {
  display: block;
  text-align: center;
}
input.login_form_input {
  font-family: Arial, Helvetica, Sans-Serif;
  width: 150px;
  font-size: 12px;
  color: #333333;
  text-align: start;
  font-weight: normal;
  background-color: rgba(0, 0, 0, 0);

  border-width: 1px;
  border-style: solid;
  border-color: #999999;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 1px;
  padding-right: 2px;
  padding-bottom: 1px;
  padding-left: 2px;

  margin-top: 0px;
  margin-bottom: 1px;
}
input.login_form_input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #333333;
}
input.login_form_input::-moz-placeholder {
  /* Firefox 19+ */
  color: #333333;
}
input.login_form_input:-ms-input-placeholder {
  /* IE 10+ */
  color: #333333;
}
input.login_form_input:-moz-placeholder {
  /* Firefox 18- */
  color: #333333;
}

span.lost_pass a {
  font-family: Arial, Helvetica, Sans-Serif;
  display: block;
  font-size: 11px;
  color: #666666;
  text-align: center;
  font-weight: normal;
  text-decoration: underline;
}
span.login_form_btn {
  display: block;
  text-align: center;

  margin-left: 0px;
}

.login_form_error_msg {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #cc0000;
  text-align: center;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0);

  border-width: 1px;
  border-style: solid;
  border-color: #818181;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}

.text,
.signupFormViewCartLink {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 11px;
  color: #5f5f5f;
}

.signupFormTermsLinks {
  margin-top: 0px;
  margin-bottom: 10px;
}
.signupFormTermsLinks a {
  font-size: 11px;
  color: #1b0000;
  font-weight: normal;
  text-decoration: none;

  background-color: #ffffff;

  border-width: 0px;
  border-style: none;
  border-color: #999999;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.signupFormViewCartBox {
  font-size: 11px;
  color: #5f5f5f;

  background-color: #ffffff;

  border-width: 1px;
  border-style: solid;
  border-color: #084793;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 4px;
  padding-right: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
}

.signupFormStepOff {
  font-size: 11px;
  color: #5f5f5f;
  font-weight: normal;
  vertical-align: top;

  background-color: #f9f9f9;

  padding-top: 3px;
  padding-right: 0px;
  padding-bottom: 3px;
  padding-left: 0px;
}
.signupFormStepOn {
  font-size: 11px;
  color: #5f5f5f;
  font-weight: normal;
  vertical-align: top;

  background-color: #f9f9f9;

  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #084793;

  padding-top: 3px;
  padding-right: 0px;
  padding-bottom: 3px;
  padding-left: 0px;
}

.sectionDiv {
  background-color: #ffffff;

  border-width: 1px;
  border-style: solid;
  border-color: #084793;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.signupSectionTbl {
  padding-top: 10px;
  padding-right: 5px;
  padding-bottom: 10px;
  padding-left: 5px;
}

.signupFormSectionTitle {
  font-family: Arial, Helvetica, Sans-Serif;

  font-size: 12px;
  color: #ffffff;
  font-weight: bold;

  background-color: #084793;

  border-width: 0px;
  border-style: none;
  border-color: #999999;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 15px;
  padding-right: 0px;
  padding-bottom: 15px;
  padding-left: 5px;
}

.signupFormDomainResults {
  padding: 0;
}
.signupFormDomainResultsTitle,
.signupFormDomainResultsRegisterTitle,
.signupFormDomainResultsTransferTitle {
  margin: 0;
}

.signupSectionProductTbl th,
.signupFormDomainResultsTitle,
.signupFormDomainResultsRegisterTitle,
.signupFormDomainResultsTransferTitle {
  font-size: 12px;
  color: #5f5f5f;
  text-align: left;
  font-weight: bold;

  background-color: #eeeeee;

  padding-top: 5px;
  padding-right: 2px;
  padding-bottom: 5px;
  padding-left: 5px;
}

.signupSectionProductTbl .productTd,
.signupSectionTbl .SectionTblTd {
  font-size: 11px;
  color: #5f5f5f;
  font-weight: normal;

  background-color: #ffffff;

  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #084793;

  padding-top: 7px;
  padding-right: 2px;
  padding-bottom: 7px;
  padding-left: 2px;
}

.signupFormDomainResultsTbl td {
  padding-top: 7px;
  padding-right: 2px;
  padding-bottom: 7px;
  padding-left: 2px;
}

.bonusBox,
.sslDetailsBox {
  font-size: 11px;
  color: #5f5f5f;
  font-weight: bold;

  background-color: #ffffec;

  border-width: 1px;
  border-style: solid;
  border-color: #5f5f5f;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 7px;
  padding-right: 7px;
  padding-bottom: 7px;
  padding-left: 7px;
}
.note_ssls,
.note_vps,
.vat_note {
  font-size: 11px;
  color: #5f5f5f;
  font-weight: normal;

  background-color: #ffffec;

  border-width: 1px;
  border-style: solid;
  border-color: #5f5f5f;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 7px;
  padding-right: 7px;
  padding-bottom: 7px;
  padding-left: 7px;
}

.productOn {
  background-color: #c5d9fc !important;

  padding-top: 7px;
  padding-right: 2px;
  padding-bottom: 7px;
  padding-left: 2px;
}

table.domain_search_tbl {
  background: #ffffff !important;

  border-width: 0px;
  border-style: none;
  border-color: #999999;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-spacing: 25px;
  border-collapse: separate;
}

td.domain_search_label {
  display: table-cell;

  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 14px;
  color: #333333;
}

input.domain_search_input,
select.domain_search_select {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #333333;
  text-align: start;
  font-weight: normal;

  background-color: #ffffff;

  border-width: 1px;
  border-style: solid;
  border-color: #999999;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 2px;
  padding-right: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
}

.domain_search_results_tbl {
  width: 100%;
  background-color: #ffffff;

  border-width: 1px;
  border-style: solid;
  border-color: #084793;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.domain_search_results_tbl td {
  font-family: Arial, Helvetica, Sans-Serif;

  color: #000000;

  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
}

.domain_search_register_label,
.domain_search_transfer_label {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px !important;
  color: #ffffff !important;
  text-align: center !important;
  font-weight: bold;

  background-color: #084793;

  border-top-width: 1px;
  border-top-style: none;
  border-top-color: #000000;

  border-bottom-width: 1px;
  border-bottom-style: none;
  border-bottom-color: #000000;

  padding-top: 15px !important;
  padding-right: 5px !important;
  padding-bottom: 15px !important;
  padding-left: 5px !important;
}

.domain_search_register_checkbox_on,
.domain_search_transfer_checkbox_on,
.domain_search_register_checkbox_on,
.domain_search_register_domain_on,
.domain_search_register_domain_on .domain_search_domain_reg,
.domain_search_transfer_domain_on,
.domain_search_transfer_domain_on .domain_search_domain_tr,
.domain_search_register_period_on,
.domain_search_transfer_period_on,
.domain_search_register_price_on,
.domain_search_transfer_price_on {
  color: #000000 !important;

  background: #cdcbcb;
}

.domain_search_error {
  font-size: 12px !important;
  color: #cc0000 !important;
  text-align: start !important;
  font-weight: bold;

  background-color: #f6f6f6;

  border-width: 1px !important;
  border-style: solid !important;
  border-color: #818181 !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;

  padding-top: 5px !important;
  padding-right: 5px !important;
  padding-bottom: 5px !important;
  padding-left: 5px !important;
}
table.compare_servers_tbl {
  font-family: Arial, Helvetica, Sans-Serif;
  border-width: 1px;
  border-style: solid;
  border-color: #084793;
}
table.compare_servers_tbl td {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #000000;
  text-align: center;
  background-color: #eeeeee;

  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #084793;

  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #084793;

  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
}

table.compare_servers_tbl td.server_name {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;

  background: #084793;

  border-top-width: 0px;
  border-top-style: none;
  border-top-color: #cccccc;

  border-left-width: 0px;
  border-left-style: none;
  border-left-color: #cccccc;

  padding-top: 15px;
  padding-right: 5px;
  padding-bottom: 15px;
  padding-left: 5px;
}
table.compare_servers_tbl th,
table.compare_servers_tbl th.compare_servers_tbl_section_title {
  font-family: Arial, Helvetica, Sans-Serif;

  font-size: 12px;
  color: #000000;
  text-align: left;
  font-weight: bold;

  background-color: #eeeeee;

  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #084793;

  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
}
table.compare_servers_tbl td.server_compare_parameter,
table.compare_servers_tbl td.server_compare_sign_up_first {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #000000;
  text-align: start;
  font-weight: bold;

  background-color: #cdcbcb;

  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #084793;

  border-left-width: 1px;
  border-left-style: none;
  border-left-color: #cccccc;

  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
}
.contact_form_tbl {
  background-color: #ffffff;

  border-width: 1px;
  border-style: none;
  border-color: #999999;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-spacing: 25px;
  border-collapse: separate;
}

.contact_form_tbl td {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #000000;
  text-align: start;
  font-weight: normal;
}

.contact_form_label {
  display: block;

  font-size: 14px !important;
  color: #000000 !important;
  text-align: center !important;
  font-weight: normal !important;
}
.contact_form_inputs_td {
  display: block;
  text-align: center !important;
}
.contact_form_input_box,
.contact_form_select_box,
.contact_form_textarea {
  font-family: Arial, Helvetica, Sans-Serif;
  width: 100%;
  font-size: 12px;
  color: #333333;
  text-align: start;
  font-weight: normal;

  background-color: #ffffff;

  border-width: 1px;
  border-style: solid;
  border-color: #999999;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 1px;
  padding-right: 2px;
  padding-bottom: 1px;
  padding-left: 2px;

  margin-top: 3px;
  margin-bottom: 5px;
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffffff;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ffffff;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ffffff;
}

.contact_form_submit_button {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 13px;
  color: #ffffff;
  font-weight: bold;
  background: #2a72c9;

  border-width: 1px;
  border-style: none;
  border-color: #999999;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 5px;
  padding-right: 15px;
  padding-bottom: 5px;
  padding-left: 15px;
}
.contact_form_submit_td {
  text-align: center !important;
}

.contact_form_error {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #cc0000;
  text-align: center;
  font-weight: bold;

  background: #ffffee;

  border-width: 1px;
  border-style: solid;
  border-color: #cc0000;

  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}

/* Input fields with error class */
.contact_form_input_box_error,
.contact_form_select_box_error,
.contact_form_textarea_error {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #333333;
  text-align: start;
  font-weight: normal;

  background: #ffffee;

  border-width: 1px;
  border-style: solid;
  border-color: #cc0000;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 1px;
  padding-right: 2px;
  padding-bottom: 1px;
  padding-left: 2px;

  margin-top: 3px;
  margin-bottom: 5px;
}

/* Fixed Chat Button */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100000;
}

.chat-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  color: #0ff;
  padding: 0.75rem;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 255, 255, 0.3);
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    color 0.3s ease;
}

.chat-button a:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #0cc;
  transform: scale(1.05);
}

.signupForm {
  font-family: Arial, Helvetica, Sans-Serif;

  border-width: 0px;
  border-style: none;
  border-color: #ffffff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.signupFormTermsSimple {
  padding-top: 10px;
  padding-right: 5px;
  padding-bottom: 10px;
  padding-left: 5px;
}
.signupFormRequirementsTd {
  display: table-cell;
}
.signupFormTitle {
  display: table-cell;
  font-size: 14px;
  color: #000000;
  text-align: center;
  font-weight: normal;
}

.support-shell {
  padding: 4rem 5vw 9rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.support-hero {
  background: linear-gradient(
    160deg,
    rgba(0, 255, 255, 0.1),
    rgba(2, 12, 20, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.support-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #0ff;
  margin-bottom: 0.5rem;
}

.support-hero p {
  color: #b6c6f2;
  font-size: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.support-section {
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}

.support-tickets-panel {
  display: block;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(3, 6, 18, 0.92);
  border: 1px solid rgba(0, 255, 255, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.support-form {
  background: rgba(3, 6, 18, 0.9);
  border-radius: 24px;
}

.support-form .card-body {
  background: transparent;
}

.support-form .form-select,
.support-form .form-control {
  background-color: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.support-form .form-select option {
  background-color: #05070c;
  color: #fefefe;
}

.support-form .form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 255, 0.25);
}

.support-ticket-list {
  width: 100%;
  position: relative;
  z-index: 2;
}

.support-ticket-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  background: rgba(8, 8, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.support-ticket-table {
  width: 100%;
  margin-bottom: 0;
  min-width: 0;
  table-layout: auto;
  color: #d4deff;
  --bs-table-bg: transparent;
  --bs-table-color: #d4deff;
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.015);
  --bs-table-hover-bg: rgba(255, 255, 255, 0.03);
}

.support-ticket-table thead th {
  padding: 1rem 1.1rem;
  border-bottom-width: 1px;
  font-size: 0.78rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: #8cc8ff;
  white-space: nowrap;
}

.ticket-table-row td,
.ticket-table-detail-row td {
  padding: 1rem 1.1rem;
  vertical-align: top;
}

.ticket-table-row td {
  border-top: 0;
  white-space: normal;
}

.ticket-table-row td:first-child,
.ticket-table-row td:nth-child(4),
.ticket-table-row td:nth-child(5),
.ticket-table-row td:nth-child(6),
.ticket-table-row td:last-child,
.ticket-table-detail-row td {
  white-space: nowrap;
}

.ticket-table-row td:nth-child(2),
.ticket-table-row td:nth-child(3),
.ticket-table-detail-row td {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ticket-table-title {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.ticket-collapsible-body > td {
  overflow: visible;
}

.ticket-collapsible-body .row,
.ticket-collapsible-body form,
.ticket-collapsible-body .col-12,
.ticket-collapsible-body .col-md-4,
.ticket-collapsible-body .col-md-8,
.ticket-thread,
.ticket-card-actions {
  min-width: 0;
}

.ticket-table-group.is-collapsed .ticket-table-row {
  border-bottom: 0;
}

.ticket-table-detail-row > td {
  background: rgba(255, 255, 255, 0.02);
}

.ticket-table-group + .ticket-table-group .ticket-table-row td {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-card {
  background: rgba(8, 8, 16, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.ticket-card-topbar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.ticket-collapse-toggle {
  min-width: 0;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.03rem;
  border-radius: 999px;
}

.ticket-card .form-select,
.ticket-card .form-control {
  background-color: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.ticket-collapsible-body .form-select,
.ticket-collapsible-body .form-control {
  background-color: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.ticket-card .form-select option {
  background-color: #05070c;
  color: #fefefe;
}

.ticket-collapsible-body .form-select option {
  background-color: #05070c;
  color: #fefefe;
}

.ticket-card .form-select:focus,
.ticket-card .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 255, 0.25);
}

.ticket-collapsible-body .form-select:focus,
.ticket-collapsible-body .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 255, 0.25);
}

.ticket-card-message {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 100%;
  box-sizing: border-box;
}

.ticket-card-message strong {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
  color: #8cc8ff;
  text-transform: uppercase;
}

.ticket-message-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.ticket-message-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.ticket-message-role {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  color: #9fb0d8;
}

.ticket-card-message p {
  margin-bottom: 0;
  color: #d4deff;
}

.ticket-thread {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ticket-message-user {
  margin-right: auto;
  border-left: 3px solid rgba(129, 193, 255, 0.35);
}

.ticket-message-admin {
  margin-left: auto;
  background: rgba(0, 255, 255, 0.06);
  border-left: 3px solid rgba(0, 255, 255, 0.35);
}

.ticket-message-admin .ticket-message-head {
  justify-content: flex-end;
}

.ticket-message-admin .ticket-message-head > div {
  text-align: right;
}

.ticket-message-meta {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #8ea6d6;
}

.ticket-card-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ticket-card-actions form {
  margin: 0;
  width: 100%;
}

.ticket-card-actions button {
  letter-spacing: 0.08rem;
}
.ticket-card h3 {
  margin-bottom: 0.25rem;
  color: #fff;
}

.ticket-card p {
  margin-bottom: 0;
}

.ticket-collapsed-rating {
  margin-top: 0.65rem;
  color: #d4deff;
}

.ticket-collapsed-rating strong {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 0.3rem;
}

.ticket-card.is-collapsed .ticket-collapsible-body {
  display: none;
}

.ticket-table-group.is-collapsed .ticket-collapsible-body {
  display: none;
}

.ticket-rating-summary {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d4deff;
}

.ticket-rating-summary strong {
  color: #8cc8ff;
}

.ticket-rating-stars {
  display: inline-flex;
  gap: 0.2rem;
  margin-left: 0.45rem;
  vertical-align: middle;
}

.ticket-rating-stars .is-filled {
  color: #f5c542;
}

.ticket-rating-stars .is-empty {
  color: rgba(255, 255, 255, 0.28);
}

.ticket-rating-summary p {
  margin-top: 0.5rem;
}

.ticket-badge {
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.75rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
}

.ticket-badge.status-open {
  background: rgba(0, 255, 255, 0.15);
  color: #0ff;
}

.ticket-badge.status-waiting {
  background: rgba(255, 235, 59, 0.15);
  color: #fdd835;
}

.ticket-badge.status-resolved {
  background: rgba(76, 175, 80, 0.2);
  color: #b2ff59;
}

.ticket-badge.status-closed {
  background: rgba(255, 99, 71, 0.2);
  color: #ff8a65;
}

.ticket-badge.priority-low {
  background: rgba(46, 204, 113, 0.18);
  color: #7bed9f;
}

.ticket-badge.priority-medium {
  background: rgba(255, 235, 59, 0.16);
  color: #ffe082;
}

.ticket-badge.priority-high {
  background: rgba(255, 152, 0, 0.18);
  color: #ffb74d;
}

.ticket-badge.priority-urgent {
  background: rgba(244, 67, 54, 0.2);
  color: #ff8a80;
}

.support-empty {
  padding: 2rem;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  font-size: 1rem;
  color: #d4deff;
}

.support-admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
}

.support-admin-toolbar .form-select {
  min-width: 220px;
  background-color: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.support-admin-toolbar .form-select option {
  background-color: #05070c;
  color: #fefefe;
}

.support-admin-user {
  color: #8cc8ff;
  font-size: 0.9rem;
}

.support-admin-message {
  white-space: pre-wrap;
}

@media (max-width: 768px) {
  .cookie-notice {
    bottom: 4.5rem;
    width: min(94vw, 760px);
  }

  .cookie-notice__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-notice__actions {
    justify-content: space-between;
  }

  .ticket-card-topbar {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .support-ticket-table {
    min-width: 640px;
  }

  .ticket-table-row td,
  .ticket-table-detail-row td {
    padding: 0.85rem 0.9rem;
  }

  .support-admin-toolbar {
    align-items: stretch;
  }

  .support-admin-toolbar .form-select,
  .support-admin-toolbar .btn {
    width: 100%;
  }
  .support-shell {
    padding: 3rem 1.5rem 3rem;
  }

  .support-hero {
    padding: 2rem 1.25rem;
  }
}

.signupFormInputbox,
.signupFormDropdown {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #333333;
  text-align: start;
  font-weight: normal;
  background-color: #ffffff;

  border-width: 1px;
  border-style: solid;
  border-color: #999999;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 1px;
  padding-right: 2px;
  padding-bottom: 1px;
  padding-left: 2px;

  margin-top: 5px;
  margin-bottom: 10px;
}
.signupFormInputbox::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
}
.signupFormInputbox:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333333;
}
.signupFormInputbox::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #333333;
}

.signupFormMainButtonBox {
  margin-top: 20px;
  text-align: center;
}

.signupFormErrorBox {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #cc0000;
  text-align: left;
  font-weight: bold;

  background-color: #f6f6f6;
  background-image: none;

  border-width: 1px;
  border-style: solid;
  border-color: #818181;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 25px;
}
.signupFormErrorInputbox {
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 12px;
  color: #333333;
  background-color: #f6f6f6;

  border-width: 1px;
  border-style: solid;
  border-color: #818181;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  padding-top: 1px;
  padding-right: 2px;
  padding-bottom: 1px;
  padding-left: 2px;

  margin-top: 5px;
  margin-bottom: 10px;
}

/* Blog */
body.fixed-hero-page header.fixed-hero.blog-hero {
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 1.25rem 1rem 1rem;
}

.blog-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.blog-hero__title {
  font-family: "Audiowide", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.blog-hero__lead {
  font-size: 0.95rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.blog-hero__meta {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-hero__title,
.blog-hero__lead,
.blog-hero__meta,
.blog-shell :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  a,
  strong,
  label,
  .text-muted,
  .blog-card__date,
  .blog-card__excerpt,
  .blog-comment__meta,
  .blog-comment__text,
  .message
) {
  text-shadow:
    0 1px 0 #000,
    0 2px 2px #000,
    0 4px 6px #000,
    0 0 10px #000;
}

.blog-shell {
  max-width: 960px;
  position: relative;
  z-index: 2;
}

.blog-title {
  font-family: "Audiowide", sans-serif;
  letter-spacing: 0.04em;
}

.blog-lead {
  font-size: 1.05rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  border-color: rgba(0, 255, 255, 0.45);
  transform: translateY(-2px);
}

.blog-card__title a {
  color: #fff;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: #0ff;
}

.blog-card__link {
  color: #0ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-back-link {
  color: #0ff;
  text-decoration: none;
}

.blog-post__title {
  font-family: "Audiowide", sans-serif;
  line-height: 1.25;
}

.blog-post__content {
  line-height: 1.75;
  color: #e2e8f0;
}

.blog-post__content h2,
.blog-post__content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.blog-post__content p {
  margin-bottom: 1rem;
}

.blog-post__content a {
  color: #0ff;
}

.blog-comment-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-comment {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.blog-comment__avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-comment__text {
  color: #cbd5e1;
  white-space: pre-wrap;
}
