.global-offer-card.popular::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  z-index: -2;
  border-radius: 24px;
  background: linear-gradient(120deg,
    #ffb300,
    #ff6a00,
    #ff006a,
    #a084f7,
    #19bfff,
    #00e1c0,
    #08ba00,
    #eab308,
    #ffb300
  );
  background-size: 400% 400%;
  animation: popular-border-gradient-move 3s linear infinite;
  pointer-events: none;
}

@keyframes popular-border-gradient-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.global-header-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  overflow: hidden;
}
.global-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg,rgba(0,0,0,0.82) 0%,rgba(0,0,0,0.65) 100%), url('../images/backgournds/games/minecraft.webp') center/cover no-repeat;
  opacity: 0.98;
}
.global-header-section h1 {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.global-header-section h1 span {
  color: #08ba00 !important;
  font-weight: 900 !important;
}
.global-header-section p,
.global-header-section span,
.global-header-section a,
.global-header-section .d-flex span {
  color: #fff !important;
}
.global-header-section .theme-btn {
  background: rgba(0,96,254,0.85);
  color: #fff !important;
  border-radius: 8px;
  border: none;
  font-size: 1.08rem;
  font-weight: 600;
}
.global-header-section .theme-btn:hover {
  background: #0050c7;
}
.global-header-section .d-flex.align-items-center img {
  border: 2px solid #fff;
}
.global-header-section .d-flex.flex-wrap span {
  font-weight: 600;
  color: #fff !important;
}
@media (max-width: 991px) {
  .global-header-section h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 600px) {
  .global-header-section {
    min-height: 260px;
    padding: 24px 0 0 0;
  }
  .global-header-section h1 {
    font-size: 1.3rem;
  }
}

.global-offers-board {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin: 40px 0 60px 0;
  align-items: stretch;
  --mo-header-min-height: 64px;
  position: relative;
  z-index: 1;
}
.global-offers-board::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  border-radius: 32px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,96,254,0.10) 0%, rgba(0,96,254,0.07) 40%, rgba(0,0,0,0.04) 100%);
  filter: blur(32px);
}
.global-offer-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  padding: 36px 32px 32px 32px;
  width: 360px;
  max-width: 99vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.25s cubic-bezier(.4,1.4,.6,1), transform 0.22s cubic-bezier(.4,1.4,.6,1), border-color 0.22s cubic-bezier(.4,1.4,.6,1), z-index 0s;
  justify-content: flex-start;
  box-shadow: 0 4px 32px rgba(0,0,0,0.13), 0 0 0 1px #e5f5ff;
  border: 1px solid #e5f5ff;
}

.global-offer-card.popular {
  position: relative;
  z-index: 1;
  border: none;
  box-shadow:
    0 0 0 3px #ffb30033,
    0 0 16px 4px #19bfff44,
    0 0 32px 8px #eab30833,
    0 0 48px 12px #a084f744;
}
.global-offer-card.popular::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  z-index: -2;
  border-radius: 24px;
  background: conic-gradient(from var(--angle, 0deg),
    #ffb300 0deg,
    #ff6a00 45deg,
    #ff006a 90deg,
    #a084f7 135deg,
    #19bfff 180deg,
    #00e1c0 225deg,
    #08ba00 270deg,
    #eab308 315deg,
    #ffb300 360deg
  );
  pointer-events: none;
  transition: filter 0.2s;
}
.global-offer-card.popular::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  z-index: -1;
  border-radius: 20px;
  background: #fff;
  pointer-events: none;
}

@keyframes global-offer-hover-bounce {
  0% { transform: scale(1.045) translateY(-6px); }
  50% { transform: scale(1.07) translateY(-12px); }
  100% { transform: scale(1.045) translateY(-6px); }
}

.global-offer-card:hover, .global-offer-card:focus-within {
  box-shadow: 0 12px 48px 0 rgba(0,96,254,0.18), 0 0 0 3px #009DE1, 0 0 24px 6px rgba(0,160,255,0.18);
  transform: scale(1.045) translateY(-6px);
  z-index: 2;
  border-color: #009DE1;
  animation: global-offer-hover-bounce 0.35s cubic-bezier(.4,1.4,.6,1);
}
.global-offer-card.popular:hover, .global-offer-card.popular:focus-within {
  box-shadow:
    0 0 0 4px #ffb30055,
    0 0 24px 8px #19bfff66,
    0 0 56px 16px #eab30855,
    0 0 80px 24px #a084f777;
}
.global-offer-card.popular:hover::before, .global-offer-card.popular:focus-within::before {
  filter: brightness(1.08) saturate(1.2);
}
.global-offer-title {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 2px;
  letter-spacing: 1px;
  text-shadow:
    0 0 8px currentColor,
    0 0 16px currentColor,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-title.nova {
  color: #c75a1b;
  text-shadow:
    0 0 12px #c75a1b66,
    0 0 24px #c75a1b33,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-title.nova {
  color: #c75a1b;
  text-shadow:
    0 0 12px #c75a1b66,
    0 0 24px #c75a1b33,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-title.aura {
  color: #eab308;
  text-shadow:
    0 0 12px #eab30866,
    0 0 24px #eab30833,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-title.lyra {
  color: #eab308;
  text-shadow:
    0 0 12px #eab30866,
    0 0 24px #eab30833,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-title.vertex {
  color: #19bfff;
  text-shadow:
    0 0 12px #19bfff66,
    0 0 24px #19bfff33,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-title.nexin {
  color: #19bfff;
  text-shadow:
    0 0 12px #19bfff66,
    0 0 24px #19bfff33,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-title.altura {
  color: #a084f7;
  text-shadow:
    0 0 12px #a084f766,
    0 0 24px #a084f733,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-title.orion {
  color: #a084f7;
  text-shadow:
    0 0 12px #a084f766,
    0 0 24px #a084f733,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-title.aether {
  color: #495372;
  text-shadow:
    0 0 12px #3e465f,
    0 0 24px #5d698d,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-title.bis-elyos {
  color: #495372;
  text-shadow:
    0 0 12px #3e465f,
    0 0 24px #5d698d,
    0 0 2px rgba(0,0,0,0.08);
}
.global-offer-sub {
  font-size: 1.01rem;
  color: #888;
  margin-bottom: 18px;
  min-height: 38px;
}
.global-offer-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 0px;
  line-height: 1.1;
  display: flex;
  align-items: flex-end;
}
.global-offer-price-bar {
  width: 100%;
  height: 2.5px;
  background: #E5F5FF;
  border-radius: 2px;
  margin: 18px 0 18px 0;
}
.global-offer-price-sub {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 18px;
}
.global-offer-specs {
  width: 100%;
  margin-bottom: 18px;
}
.global-offer-specs-group {
  margin-bottom: 18px;
}
.global-offer-specs-separator {
  width: 100%;
  height: 2px;
  background: #E5F5FF;
  border-radius: 2px;
  margin: 18px 0 18px 0;
}
.global-offer-specs-group:last-child {
  margin-bottom: 0;
}
.global-offer-specs-title {
  font-weight: 700;
  color: #1a3a5d;
  font-size: 1.08rem;
  margin-bottom: 10px;
  margin-top: 0;
  text-align: left;
}
.global-offer-spec {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.01rem;
}
.global-offer-spec img {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.global-offer-spec img[src*="/specs/"] {
  filter: brightness(0) saturate(100%) invert(27%) sepia(97%) saturate(7476%) hue-rotate(194deg) brightness(97%) contrast(101%);
}
.global-offer-spec-detail {
  font-size: 0.97rem;
  color: #4a6fa1;
  margin: -7px 0 8px 32px;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: block;
}
.global-offer-btn {
  margin-top: auto;
  width: 100%;
  background: #009DE1;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.13rem;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 0 #e5f5ff;
}
.global-offer-btn:hover {
  background: #007bb0;
}
.global-offer-btn .icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.global-offer-delivery {
  color: #009DE1;
  font-weight: 800;
  font-size: 1.13rem;
  text-align: center;
  margin-bottom: 6px;
  margin-top: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-offer-popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ffb300;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
.global-offer-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7faf9;
  border-radius: 18px 18px 18px 18px;
  padding: 18px 18px 12px 18px;
  margin-bottom: 32px;
  width: 100%;
  flex-shrink: 0;
  min-height: unset;
  min-height: var(--mo-header-min-height, 64px);
}
.global-offer-header .global-offer-title {
  margin-bottom: 2px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}
.global-offer-header .global-offer-sub {
  margin-bottom: 0;
  font-size: 1.01rem;
  color: #555;
  font-weight: 400;
  text-align: center;
}
.global-offer-title, .global-offer-sub {
  text-align: left;
}
@media (max-width: 1400px) {
  .global-offer-card {
    width: 320px;
    padding: 32px 20px 28px 20px;
  }
}
@media (max-width: 900px) {
  .global-offers-board {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .global-offer-card {
    width: 98vw;
    max-width: 420px;
    padding: 28px 10px 24px 10px;
  }
}
@media (max-width: 991px) {
  .global-header-section h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 600px) {
  .global-header-section {
    min-height: 260px;
    padding: 24px 0 0 0;
  }
  .global-header-section h1 {
    font-size: 1.3rem;
  }
}

.inline-features {
  width: 100%;
  background: #F6F9FD;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.04);
  margin: -70px auto 32px auto;
  position: relative;
  z-index: 2;
  padding: 36px 0 24px 0;
  max-width: 1600px;
  border: 1px solid #009DE1;
}
.inline-features .content {
  width: 100%;
}
.inline-features .sub-title {
  color: #009DE1;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.inline-features .box-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: #1a3a5d;
  margin-bottom: 0;
  line-height: 1.18;
}
.inline-features .item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,96,254,0.04);
  padding: 22px 18px 18px 18px;
  text-align: center;
  margin-bottom: 0;
  height: 100%;
  transition: box-shadow 0.18s, transform 0.18s;
}
.inline-features .item:hover {
  box-shadow: 0 8px 32px rgba(0,96,254,0.10);
  transform: translateY(-4px) scale(1.03);
}
.inline-features .icon {
  margin-bottom: 12px;
}
.inline-features .icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: none;
}
.inline-features .icon img[src*="puzzle.webp"],
.inline-features .icon img[src*="network.webp"],
.inline-features .icon img[src*="network.webp"] {
  filter: brightness(0) saturate(100%) invert(13%) sepia(16%) saturate(2227%) hue-rotate(181deg) brightness(97%) contrast(98%);
}
.inline-features .item-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1a3a5d;
  margin-bottom: 6px;
}
.inline-features .item-text {
  font-size: 0.99rem;
  color: #4a6fa1;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .inline-features .box-title {
    font-size: 1.08rem;
  }
  .inline-features .item {
    padding: 18px 8px 14px 8px;
  }
}
@media (max-width: 600px) {
  .inline-features {
    margin: -40px 0 18px 0;
    padding: 18px 0 8px 0;
    border-radius: 10px;
  }
  .inline-features .item {
    margin-bottom: 12px;
  }
}

.global-duration-selector {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 6px 10px;
  width: fit-content;
  margin: 0 auto 32px auto;
  gap: 0;
}
.global-duration-btn {
  border: none;
  background: none;
  outline: none;
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  padding: 8px 22px;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  position: relative;
  margin: 0 2px;
}
.global-duration-btn.selected {
  background: #009de1;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,96,254,0.10);
}
.global-duration-discount {
  background: linear-gradient(90deg, #e5f5ff 0%, #b3e0ff 100%);
  color: #0074b8;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 2px 10px;
  margin-left: 6px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,157,225,0.08);
  border: 1px solid #b3e0ff;
}
@media (max-width: 600px) {
  .global-duration-selector {
    flex-direction: column;
    gap: 4px;
    padding: 8px 4px;
    box-shadow: 0 2px 12px rgb(0 0 0 / 0%);
  }
  .global-duration-btn {
    width: 100%;
    padding: 10px 0;
  }
}
.global-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,96,254,0.10);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s;
  padding: 0;
}
.global-arrow-btn.left {
  left: 0;
  margin-left: -32px;
}
.global-arrow-btn.right {
  right: 0;
  margin-right: -32px;
}
.global-arrow-btn:hover {
  background: #f0f6ff;
  box-shadow: 0 4px 16px rgba(0,96,254,0.18);
}
@media (max-width: 900px) {
  .global-arrow-btn {
    width: 38px;
    height: 38px;
  }
  .global-arrow-btn.left {
    margin-left: -18px;
  }
  .global-arrow-btn.right {
    margin-right: -18px;
  }
}
@media (max-width: 600px) {
  .global-arrow-btn {
    display: none;
  }
}
.global-offers-section {
  position: relative;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto 80px auto;
  min-width: 0;
}
.global-arrow-btn {
  z-index: 20;
}
.global-arrow-btn.left {
  left: 0;
  right: auto;
  margin-left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.global-arrow-btn.right {
  right: 0;
  left: auto;
  margin-right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.global-offers-board {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 32px;
  overflow-x: visible;
}
.global-offer-card {
  min-width: 320px;
  max-width: 370px;
  flex: 1 1 0;
  transition: opacity 0.35s;
}
@media (max-width: 1700px) {
  .global-offers-section {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .global-offers-board {
    gap: 18px;
  }
}
@media (max-width: 1400px) {
  .global-offer-card {
    min-width: 300px;
    max-width: 1fr;
  }
}
@media (max-width: 1200px) {
  .global-offers-board {
    flex-wrap: wrap;
    gap: 12px;
  }
  .global-offer-card {
    min-width: 280px;
  }
}

.global-arrow-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(1);
}

@media (max-width: 1194px) {
  .global-offers-board {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center;
    align-items: stretch;
  }
  .global-offer-card {
    display: block !important;
    opacity: 1 !important;
    min-width: 280px;
    max-width: 94vw;
    margin: 0 0 24px 0;
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .global-arrow-btn.left,
  .global-arrow-btn.right {
    display: none !important;
  }
}

.mc-old-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 20, 35, 0.58);
  backdrop-filter: saturate(110%) blur(4px);
  -webkit-backdrop-filter: saturate(110%) blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: mc-old-fade-in 0.18s ease-out;
}
.mc-old-modal-overlay.is-hiding {
  animation: mc-old-fade-out 0.18s ease-in forwards;
}

.mc-old-modal {
  width: min(720px, 92vw);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px #e5f5ff;
  color: #1a3a5d;
  overflow: hidden;
  transform: translateY(6px) scale(0.98);
  animation: mc-old-pop-in 0.22s cubic-bezier(.2,.8,.2,1) forwards;
}
.mc-old-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: #5b7aa1;
  cursor: pointer;
}
.mc-old-modal__header {
  padding: 18px 22px 0 22px;
}
.mc-old-modal__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b2142;
}
.mc-old-modal__body {
  padding: 8px 22px 0 22px;
}
.mc-old-modal__body p {
  margin: 0 0 10px 0;
  font-size: 1rem;
  color: #2e4a74;
}
.mc-old-modal__body ul {
  margin: 8px 0 0 18px;
  padding: 0 0 0 8px;
  color: #2e4a74;
}
.mc-old-modal__body li {
  margin: 6px 0;
}
.mc-old-modal__actions {
  padding: 18px 22px 22px 22px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.mc-old-modal__btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #e5f5ff;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
}
.mc-old-modal__btn--primary {
  background: #009DE1;
  color: #fff;
  border-color: #009DE1;
}
.mc-old-modal__btn--primary:hover {
  background: #007bb0;
  border-color: #007bb0;
}
.mc-old-modal__btn--ghost {
  background: #fff;
  color: #0b2142;
}
.mc-old-modal__btn--ghost:hover {
  background: #f4f9ff;
}

@keyframes mc-old-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes mc-old-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes mc-old-pop-in {
  to { transform: translateY(0) scale(1); }
}

@media (max-width: 520px) {
  .mc-old-modal {
    width: min(94vw, 520px);
    border-radius: 12px;
  }
  .mc-old-modal__title {
    font-size: 1.12rem;
  }
  .mc-old-modal__body p, .mc-old-modal__body li {
    font-size: 0.96rem;
  }
  .mc-old-modal__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .mc-old-modal__btn {
    width: 100%;
  }
}