:root{
  --bg: #1f2334;
  --text: #e5e7eb;
  --text-grey: #aaa9a9;
  --white: #ffffff;

  --orange-150: #ffe8cd;
  --orange-330: #ffc359;
  --purple-150: #f8d8ff;
  --purple-330: #c13392;
  --blue-330: #48badc;
  --blue-150: #d8efff;
  --gray-050: #aaa9a9;

  --border-mid: rgba(255,255,255,.14);
  --glass: rgba(255,255,255,.06);
  --shadow-soft: 0 18px 50px rgba(0,0,0,.45);

  --overlay-backdrop: rgba(0,0,0,.70);
  --toast-bg: rgba(0,0,0,.55);
  --toast-border: rgba(255,255,255,.14);
  --toast-text: rgba(255,255,255,.95);

  --nav-icon-hover-opacity: .92;

  --status-offline: #ef4444;
  --status-offline-ring: rgba(239,68,68,.10);
  --status-online-ring: rgba(34,197,94,.10);
  --status-online-pulse: rgba(34,197,94,.22);

  --status-online-g1: #66be5e;
  --status-online-g2: #56c738;
  --status-online-g3: #27ff78;

  --card-highlight-1: rgba(255,255,255,.18);
  --card-shadow-1: rgba(0,0,0,.25);

  --social-grad-blue: rgba(69,198,255,.22);
  --social-grad-red: rgba(255,50,50,.18);

  --shop-grad-a: rgb(215 215 215 / 22%);
  --shop-grad-b: rgb(65 63 64 / 20%);

  --cta-bg: rgba(255,255,255,.08);
  --cta-bg-hover: rgba(255,255,255,.10);
  --cta-border: rgba(255,255,255,.14);
  --cta-border-hover: rgba(255,255,255,.18);

  --hero-mobile-gap: 18px;
}

html,
body{
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.max-w-custom-120rem{ max-width: 120rem; }
.max-w-custom-110rem{ max-width: 110rem; }
.max-w-custom-100rem{ max-width: 100rem; }

header{
  position: relative;
  z-index: 1;
}

.header-hero-bg{
  position: absolute;
  inset: 0;
  background: url("/uploads/background.jpg");
  background-size: cover;
  background-position: center -200px;
  pointer-events: none;
}

.header-hero-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 100% at 50% 0%,
    rgba(31,35,52,.85) 0%,
    rgba(31,35,52,.95) 30%,
    rgba(31,35,52,1) 70%
  );
}

.hero-content a,
.hero-content button{
  pointer-events: auto;
}

.dot-accent{
  color: var(--blue-330);
  font-size: 16px;
}

.nav-dot{
  margin-left: 2px;
  display: inline-block;
  transform: translateY(-1px);
}

.topbar{
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.nav-link{
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-size: 16px;
  transition: color .2s ease, opacity .2s ease;
  cursor: pointer;
  user-select: none;
}

.nav-link:hover{
  color: var(--text-grey);
}

.nav-icon{
  color: var(--text);
  font-size: 18px;
  margin-right: 5px;
}

.nav-link:hover .nav-icon{
  color: var(--text) !important;
  opacity: var(--nav-icon-hover-opacity) !important;
}

.nav-link-shop{
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 88px;
  min-height: 56px;
  padding: 14px 26px;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
  cursor: pointer;
  user-select: none;
}

.nav-link-shop::before{
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  border-radius: 18px;
  opacity: .95;
  background:
    radial-gradient(160px 200px at 20% 18%, var(--shop-grad-a), transparent 64%),
    radial-gradient(200px 200px at 69% 37%, var(--shop-grad-b), transparent 64%);
}

.nav-link-shop > *{
  position: relative;
  z-index: 1;
}

.nav-link-shop:hover{
  color: var(--blue-150);
}

.nav-link-shop .nav-icon{
  margin-right: 0;
  transition: transform .25s ease, color .25s ease;
}

.nav-link-shop:hover .nav-icon{
  transform: scale(1.10);
  color: var(--blue-150) !important;
}

.social-box{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 26px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
  min-height: 56px;
}

.social-box::before{
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  opacity: .95;
  background:
    radial-gradient(560px 260px at 20% 18%, var(--social-grad-blue), transparent 64%),
    radial-gradient(560px 260px at 80% 20%, var(--social-grad-red), transparent 64%);
}

.social-box > *{
  position: relative;
  z-index: 1;
}

.social-item{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 88px;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
  cursor: pointer;
  user-select: none;
}

.social-item i{
  font-size: 18px;
  line-height: 1;
  transition: transform .22s ease;
}

.social-item:hover{
  color: var(--blue-150);
}

.social-item:hover i{
  transform: scale(1.10);
}

.divider{
  width: 1px;
  height: 42px;
  background: var(--border-mid);
  opacity: .9;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .social-box,
  .nav-link-shop{
    background: rgba(255,255,255,.08);
  }
}

.menu-link{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem;
  border-radius: 16px;
  font-size: .95rem;
  color: rgba(244,244,245,.92);
  overflow: hidden;
  isolation: isolate;
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.menu-link > *{
  position: relative;
  z-index: 1;
}

.menu-link::before{
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  opacity: .85;
}

#mobileMenuBackdrop{
  background: var(--overlay-backdrop);
}

#mobileMenuPanel{
  background: linear-gradient(-35deg, #121213 0%, #1f2334 100%);
}

.menu-link i{
  font-size: 18px;
  transition: transform .22s ease, color .22s ease;
  color: var(--text);
}

.menu-link:hover i{
  transform: scale(1.10);
  color: var(--blue-150);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
  width: 100%;
  padding-top: 120px;
}

.hero-left{
  width: fit-content;
  min-height: 350px;
}

.hero-title{
  display: inline-flex;
  align-items: center;
  gap: clamp(10px,1vw,10px);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.05;
  font-size: clamp(40px,3.5vw,64px);
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.hero-bee{
  width: clamp(60px,5vw,120px);
  height: auto;
  object-fit: contain;
  transform: translateY(-2%);
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hero-subtitle{
  margin-top: 10px;
  color: var(--gray-050);
  font-size: 16px;
}

.hero-right{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-island{
  width: clamp(400px,50vw,800px);
  height: auto;
  object-fit: contain;
  animation: heroFloat 4.5s ease-in-out infinite;
  filter: drop-shadow(0 26px 60px rgba(0,0,0,.65));
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.server-status-pill{
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.status-dot{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--status-offline);
  box-shadow: 0 0 0 0 rgba(239,68,68,0);
}

.status-dot.online{
  background: radial-gradient(
    circle at 30% 30%,
    var(--status-online-g1) 0%,
    var(--status-online-g2) 55%,
    var(--status-online-g3) 100%
  );
  box-shadow: 0 0 0 6px var(--status-online-ring);
  animation: statusPulse 1.6s ease-in-out infinite;
}

.status-dot.offline{
  background: var(--status-offline);
  box-shadow: 0 0 0 6px var(--status-offline-ring);
}

.status-dot.loading{
  background: rgba(244,244,245,.45);
  box-shadow: 0 0 0 6px rgba(244,244,245,.10);
  animation: none;
}

.status-inline{
  display: inline-flex;
  align-items: center;
  font-size: 19px;
  color: rgba(244,244,245,.88);
}

.status-players{
  margin: 0 4px;
}

.hero-meta{
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.meta-row{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 14px;
  color: rgba(244,244,245,.90);
  background: var(--glass);
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
  transition: transform .18s ease, border-color .18s ease;
}

.meta-row::before{
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  opacity: .85;
  background:
    radial-gradient(200px 140px at 20% 20%, var(--card-highlight-1), transparent 65%),
    radial-gradient(200px 140px at 80% 80%, var(--card-shadow-1), transparent 65%);
}

.meta-row > *{
  position: relative;
  z-index: 1;
}

.meta-row:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
}

.meta-label{
  color: rgba(244,244,245,.62);
}

.meta-value{
  font-weight: 700;
  letter-spacing: .02em;
}

.join-btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--cta-bg);
  border: 1px solid var(--cta-border);
  box-shadow: var(--shadow-soft);
  color: rgba(255,255,255,.95);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.join-btn::before{
  content: "";
  position: absolute;
  inset: -4px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 18%,
    rgba(255,255,255,.55) 26%,
    rgba(255,255,255,.18) 34%,
    rgba(255,255,255,0) 52%
  );
  transform: translateX(-140%) skewX(-18deg);
  opacity: 0;
  animation: joinShine 3s linear infinite;
}

.join-btn > *{
  position: relative;
  z-index: 1;
}

.join-btn:hover{
  transform: translateY(-1px);
  background: var(--cta-bg-hover);
  border-color: var(--cta-border-hover);
}

.join-btn:hover::before{
  animation-duration: 1.2s;
  animation-iteration-count: 1;
}

.join-btn:active{
  transform: translateY(0);
}

.toast-container{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  pointer-events: none;
}

.toast{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 14px;
  background: var(--toast-bg);
  border: 1px solid var(--toast-border);
  backdrop-filter: blur(10px);
  color: var(--toast-text);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
}

.toast::before{
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  opacity: .9;
  background:
    radial-gradient(240px 120px at 20% 20%, rgb(118 255 103 / 20%), #ffffff00 65%),
    radial-gradient(240px 120px at 80% 80%, rgb(43 255 253 / 15%), #29262600 65%);
}

.toast > *{
  position: relative;
  z-index: 1;
}

.toast.show{
  opacity: 1;
  transform: translateY(0);
}

.toast-icon{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #74bf77;
}

.toast-icon::after{
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(34,197,94,.25);
  z-index: -1;
  animation: toastPulse 3s ease-in-out infinite;
}

.scroll-downs{
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 25;
  width: 34px;
  height: 55px;
  animation: scrollBounce 1s ease-in-out infinite;
}

.mousey{
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: .80;
  box-sizing: content-box;
  pointer-events: none;
}

.scroller{
  width: 3px;
  height: 16px;
  border-radius: 25%;
  background-color: var(--blue-330);
  filter: drop-shadow(0 0 3px color-mix(in srgb, var(--purple-330) 40%, transparent));
}

.page-main{
  background: #f4f4f7;
  padding: 4rem 1rem 5rem;
}

.page-main-inner{
  width: 100%;
  margin: 0 auto;
}

.section-block + .section-block{
  margin-top: 3.5rem;
}

.feature-banner{
  background: var(--glass);
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15,23,42,.50);
  overflow: hidden;
  position: relative;
  min-height: 300px;
  border: 1px solid var(--glass);
}

.feature-banner-text{
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

.feature-banner-title{
  font-weight: 800;
  margin-bottom: .5rem;
  font-size: 32px;
  letter-spacing: 0.03em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 0 8px rgba(0, 0, 0, 0.20);
  width: 60%;
  z-index: 4;
}

.feature-banner-body{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-shadow:
    0 2px 3px rgba(0, 0, 0, 0.35),
    0 0 8px rgb(0 0 0 / 16%);
  width: 60%;
  z-index: 4;
}

.feature-banner-image{
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.feature-banner-image img{
  z-index: 3;
}

.feature-banner-image::after{
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  border-radius: 18px;
  opacity: .95;
  background:
    radial-gradient(1200px 440px at 20% 20%, var(--card-highlight-1), transparent 65%),
    radial-gradient(1200px 500px at 80% 80%, var(--card-shadow-1), transparent 65%);
}

.feature-banner-image.battle-pass img{
  position: absolute;
  right: -1px;
  bottom: -33px;
  min-width: 630px;
  height: 130%;
  transform: scalex(-1);
}

.feature-banner-image.battle-pass::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  background: url(/uploads/addons/cube-pattern-orange.png) no-repeat center / cover;
  z-index: 1;
}

.feature-banner-image.creates img{
  position: absolute;
  right: -50px;
  bottom: -75px;
  min-width: 630px;
  height: 130%;
  transform: scalex(-1) rotate(-4deg) scale(1.5);
}

.feature-banner-image.creates::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  background: url(/uploads/addons/cube-pattern-green.png) no-repeat center / cover;
  z-index: 0;
}

.feature-banner-image.mobs img{
  position: absolute;
  right: 80px;
  bottom: -40px;
  min-width: 630px;
  height: 130%;
  transform: scalex(1) rotate(-4deg) scale(1.3);
}

.feature-banner-image.mobs::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  background: url(/uploads/addons/cube-pattern-orange.png) no-repeat center / cover;
  z-index: 0;
}

.promo-banner{
  position: relative;
  min-height: 100px;
  width: calc(100% - 10px);
  margin: 50px 5px 0;
  background:
    #ffc577
    url("/uploads/block-info.png") no-repeat center / cover;
  border-radius: 18px;
  display: flex;
  align-items: center;
}

.promo-banner__inner{
  width: 100%;
  display: flex;
  align-items: center;
}

.promo-banner__title{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #ffffff;
  margin-left: 200px;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.35),
    0 0 8px rgba(0,0,0,0.20);
}

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

.promo-banner__visual--left{}
.promo-banner__visual--right{}

.promo-banner__tree{
  position: absolute;
  margin-bottom: 45px;
  width: 188px;
  height: 144px;
  background-image: url(/uploads/tree-render-01.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  pointer-events: none;
}

.promo-banner__bee{
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  overflow: overlay;
  position: absolute;
  transform: scaleX(-1);
}

.promo-banner__bee--main{
  background-image: url("/uploads/bee-render-01.png");
  width: 200px;
  height: 200px;
  margin-top: -20px;
  right: 132px;
}

.promo-banner__bee--secondary{
  background-image: url("/uploads/bee-render-02.png");
  width: 130px;
  height: 130px;
  margin-top: -42px;
  right: 36px;
}

.promo-banner__code{
  margin-left: 50px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  color: #ffffff;
  background: rgb(78 73 73 / 88%);
  border: 1px solid rgb(255 255 255 / 39%);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.promo-banner__code::before{
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  opacity: .75;
  background:
    radial-gradient(200px 140px at 20% 20%, rgb(255 53 218 / 14%), transparent 65%),
    radial-gradient(200px 140px at 80% 80%, rgb(206 42 105 / 78%), transparent 65%);
}

.promo-banner__code-text{
  position: relative;
  z-index: 1;
  font-size: 18px;
  letter-spacing: .06em;
  font-weight: 800;
}

.promo-banner__code-dot{
  display: inline-block;
  position: relative;
  width: 7px;
  height: 7px;
  margin-left: 1px;
  top: 1px;
  background: linear-gradient(304deg, #ed2f69 0%, #ff2d87 100%);
  border-radius: 2px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 0 8px rgb(255 0 201 / 35%);
  color: transparent;
  overflow: hidden;
}

.site-footer{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 1.5rem 1rem;
  font-size: 15px;
  font-weight: 400;
}

.site-footer-inner{
  margin: 0 auto;
  max-width: 120rem;
  text-align: center;
}

.site-footer-text + .site-footer-text{
}

@keyframes heroFloat{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

@keyframes scrollBounce{
  0%{
    transform: translate(-50%, -25%);
  }
  40%{
    animation-timing-function: cubic-bezier(.8,0,1,1);
    transform: translate(-50%, 0);
  }
  65%{
    animation-timing-function: cubic-bezier(0,0,.2,1);
    transform: translate(-50%, -12%);
  }
  100%{
    transform: translate(-50%, -25%);
  }
}

@keyframes statusPulse{
  0%   { box-shadow: 0 0 0 0 var(--status-online-pulse); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

@keyframes joinShine{
  0%{
    transform: translateX(-140%) skewX(-18deg);
    opacity: 0;
  }
  10%{
    opacity: .9;
  }
  45%{
    transform: translateX(140%) skewX(-18deg);
    opacity: .9;
  }
  55%{
    opacity: 0;
  }
  100%{
    transform: translateX(140%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes toastPulse{
  0%   { transform: scale(.3); opacity: .7; }
  60%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .join-btn::before{
    animation: none;
  }
}

@media (max-width: 1400px){
  .brand-text{ display: none !important; }

  .desktop-nav .social-label,
  .desktop-nav .shop-label{
    display: none !important;
  }

  .nav-link{
    padding: 10px 10px;
    border-radius: 12px;
  }

  .nav-link-shop{
    padding: 14px 14px;
    min-width: auto;
  }

  #mobileMenuOverlay .nav-link-shop{
    display: block;
    position: relative;
    text-align: center;
    font-size: 14px;
    width: 60%;
    margin: 14px auto 0;
  }

  #mobileMenuOverlay .nav-link-shop .shop-label{
    top: 3px;
  }

  #mobileMenuOverlay .nav-link-shop .nav-icon{
    margin-right: unset;
    top: 4px;
  }

  .social-box{
    padding: 12px 14px;
    gap: 12px;
  }

  .social-item{
    min-width: 0;
    gap: 0;
    padding: 6px 6px;
  }

  .divider{
    height: 28px;
  }
}

@media (max-width: 1090px){
  .topbar{
    padding-top: 4rem !important;
    padding-bottom: 5rem !important;
    justify-content: space-between;
    width: 100%;
  }

  .desktop-nav{ display: none !important; }
  .brand-text{ display: flex !important; }

  .mobile-burger{
    display: inline-flex !important;
    margin-left: auto;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: var(--hero-mobile-gap);
    padding-top: 100px;
  }

  .hero-left{
    width: 100%;
    max-width: 680px;
  }

  .hero-right{
    margin-top: 50px;
    width: 100%;
    max-width: 680px;
  }

  .hero-meta{
    justify-content: center;
    flex-wrap: wrap;
  }

  .server-status-pill{
    justify-content: center;
    margin-top: 30px;
  }

  .scroll-downs{
    position: static;
    transform: none;
    margin-top: 24px;
  }
}

@media (max-width: 1665px){
  .promo-banner__title{
    font-size: 24px;
    margin-left: 190px;
  }

  .promo-banner__code-text{
    font-size: 16px;
  }

  .promo-banner__code-dot{
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 1550px){
  .promo-banner__title{
    font-size: 20px;
    margin-left: 165px;
  }

  .promo-banner__code{
    margin-left: 30px;
  }

  .promo-banner__code-text{
    font-size: 16px;
  }

  .promo-banner__code-dot{
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 1360px){
  .promo-banner__code{
    margin-left: 30px;
  }

  .promo-banner__code-text{
    font-size: 16px;
  }

  .promo-banner__code-dot{
    width: 6px;
    height: 6px;
  }

  .promo-banner__bee--main{
    right: 0;
  }

  .promo-banner__bee--secondary{
    visibility: hidden;
  }
}

@media (max-width: 1250px){
  .promo-banner__title{
    font-size: 18px;
  }

  .promo-banner__code{
    margin-left: 20px;
  }

  .promo-banner__bee--main{
    width: 200px;
    height: 200px;
    right: 0;
  }

  .promo-banner__bee--secondary{
    width: 130px;
    height: 130px;
    right: 0;
  }
}

@media (max-width: 1180px){
  .promo-banner{
    min-height: 120px;
    padding: 14px 0;
  }

  .promo-banner__inner{
    align-items: center;
    display: block;
    text-align: center;
  }

  .promo-banner__title{
    margin: 0 10px;
  }

  .promo-banner__code{
    margin: 12px auto 0;
  }

  .promo-banner__tree{
    width: 198px;
    height: 174px;
    margin-bottom: -32px;
  }

  .promo-banner__bee--main{
    width: 180px;
    height: 180px;
    margin-top: -92px;
  }
}

@media (max-width: 980px){
  .promo-banner__tree{
    visibility: hidden;
  }

  .promo-banner__bee--main{
    width: 140px;
    height: 140px;
    margin-top: 0;
  }
}

@media (max-width: 580px){
  .promo-banner__bee--main{
    width: 110px;
    height: 110px;
    right: -20px;
  }
}

@media (max-width: 900px){
  .page-main{
    padding: 3rem 1rem 3.75rem;
  }

  .feature-banner{
    flex-direction: column;
    padding: 20px 18px;
  }

  .feature-banner-body,
  .feature-banner-title{
    width: 100%;
  }
}

@media (max-width: 640px){
  .page-main-inner{
    max-width: 100%;
  }

  .feature-banner{
    border-radius: 18px;
  }
}