* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(82, 18, 130, 0.45), transparent 34%),
    radial-gradient(circle at 20% 95%, rgba(255, 106, 0, 0.25), transparent 36%),
    linear-gradient(180deg, #060008 0%, #09000f 55%, #150018 100%);
  overflow-x: hidden;
}

/* ===== ЖИВОЙ ФОН С ЭМОДЗИ ===== */

.emoji-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.emoji-bg span {
  position: absolute;
  opacity: 0.22;
  font-size: 30px;
  filter: drop-shadow(0 0 8px rgba(255, 120, 0, 0.25));
  animation: emojiFall linear infinite;
}

@keyframes emojiFall {
  0% {
    transform: translateY(-80px) rotate(0deg);
  }

  100% {
    transform: translateY(120vh) rotate(360deg);
  }
}

.emoji-bg span:nth-child(1) { left: 2%; top: 5%; animation-duration: 16s; }
.emoji-bg span:nth-child(2) { left: 8%; top: 22%; animation-duration: 19s; }
.emoji-bg span:nth-child(3) { left: 14%; top: 10%; animation-duration: 17s; }
.emoji-bg span:nth-child(4) { left: 20%; top: 40%; animation-duration: 22s; }
.emoji-bg span:nth-child(5) { left: 26%; top: 15%; animation-duration: 18s; }
.emoji-bg span:nth-child(6) { left: 32%; top: 55%; animation-duration: 24s; }
.emoji-bg span:nth-child(7) { left: 38%; top: 8%; animation-duration: 20s; }
.emoji-bg span:nth-child(8) { left: 44%; top: 33%; animation-duration: 25s; }
.emoji-bg span:nth-child(9) { left: 50%; top: 18%; animation-duration: 19s; }
.emoji-bg span:nth-child(10) { left: 56%; top: 62%; animation-duration: 26s; }

.emoji-bg span:nth-child(11) { left: 62%; top: 7%; animation-duration: 18s; }
.emoji-bg span:nth-child(12) { left: 68%; top: 45%; animation-duration: 24s; }
.emoji-bg span:nth-child(13) { left: 74%; top: 16%; animation-duration: 20s; }
.emoji-bg span:nth-child(14) { left: 80%; top: 58%; animation-duration: 27s; }
.emoji-bg span:nth-child(15) { left: 86%; top: 12%; animation-duration: 21s; }
.emoji-bg span:nth-child(16) { left: 92%; top: 38%; animation-duration: 23s; }

.emoji-bg span:nth-child(17) { left: 6%; top: 70%; animation-duration: 28s; }
.emoji-bg span:nth-child(18) { left: 18%; top: 82%; animation-duration: 26s; }
.emoji-bg span:nth-child(19) { left: 30%; top: 72%; animation-duration: 19s; }
.emoji-bg span:nth-child(20) { left: 42%; top: 88%; animation-duration: 22s; }
.emoji-bg span:nth-child(21) { left: 54%; top: 76%; animation-duration: 25s; }
.emoji-bg span:nth-child(22) { left: 66%; top: 86%; animation-duration: 21s; }
.emoji-bg span:nth-child(23) { left: 78%; top: 74%; animation-duration: 20s; }
.emoji-bg span:nth-child(24) { left: 90%; top: 82%; animation-duration: 24s; }

.emoji-bg span:nth-child(25) { left: 12%; top: 50%; animation-duration: 17s; }
.emoji-bg span:nth-child(26) { left: 24%; top: 28%; animation-duration: 23s; }
.emoji-bg span:nth-child(27) { left: 36%; top: 68%; animation-duration: 19s; }
.emoji-bg span:nth-child(28) { left: 48%; top: 48%; animation-duration: 22s; }
.emoji-bg span:nth-child(29) { left: 60%; top: 26%; animation-duration: 18s; }
.emoji-bg span:nth-child(30) { left: 72%; top: 66%; animation-duration: 27s; }
.emoji-bg span:nth-child(31) { left: 84%; top: 46%; animation-duration: 20s; }
.emoji-bg span:nth-child(32) { left: 96%; top: 20%; animation-duration: 24s; }

.emoji-bg span:nth-child(33) { left: 5%; top: 92%; animation-duration: 22s; }
.emoji-bg span:nth-child(34) { left: 16%; top: 35%; animation-duration: 18s; }
.emoji-bg span:nth-child(35) { left: 28%; top: 94%; animation-duration: 25s; }
.emoji-bg span:nth-child(36) { left: 40%; top: 12%; animation-duration: 21s; }
.emoji-bg span:nth-child(37) { left: 52%; top: 90%; animation-duration: 24s; }
.emoji-bg span:nth-child(38) { left: 64%; top: 40%; animation-duration: 19s; }
.emoji-bg span:nth-child(39) { left: 76%; top: 92%; animation-duration: 27s; }
.emoji-bg span:nth-child(40) { left: 88%; top: 30%; animation-duration: 23s; }

/* ===== ТУМАН СНИЗУ ===== */

.bottom-fog {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  opacity: 0.75;
}

.fog-layer {
  position: absolute;
  bottom: -35px;
  left: -50%;
  width: 200%;
  height: 140%;
  background:
    radial-gradient(ellipse 60% 80% at 30% 100%, rgba(255, 106, 0, 0.35), transparent 70%),
    radial-gradient(ellipse 50% 80% at 70% 100%, rgba(139, 0, 255, 0.28), transparent 70%),
    radial-gradient(ellipse 80% 90% at 50% 100%, rgba(255, 255, 255, 0.12), transparent 75%);
  filter: blur(22px);
  animation: fogDrift 25s ease-in-out infinite;
}

.fog-layer:nth-child(2) {
  animation-duration: 35s;
  animation-direction: reverse;
  opacity: 0.65;
}

@keyframes fogDrift {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(5%) translateY(-14px);
  }
}

/* ===== ОСНОВА ===== */

.phone {
  width: 100%;
  min-height: 100vh;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: block;
}

.header {
  display: none;
}

.chat,
.page {
  width: 100%;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: 74px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(13, 0, 18, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 106, 0, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 18px;
  background: linear-gradient(to bottom, rgba(13, 0, 18, 0.7), transparent);
  pointer-events: none;
}

.brand {
  color: #ff6a00;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 4px;
  white-space: nowrap;
  cursor: pointer;
  text-shadow:
    0 0 10px rgba(255, 106, 0, 0.9),
    0 0 26px rgba(255, 106, 0, 0.45);
  transition: 0.22s;
}

.brand:hover {
  transform: scale(1.04);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav button,
.header-actions button {
  background: rgba(28, 8, 24, 0.88);
  color: #ff7a00;
  border: 1px solid rgba(255, 106, 0, 0.18);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.22s ease;
}

.nav button:hover,
.header-actions button:hover,
.nav button.active {
  transform: scale(1.05);
  border-color: rgba(255, 106, 0, 0.85);
  box-shadow:
    0 0 18px rgba(255, 106, 0, 0.42),
    inset 0 0 18px rgba(255, 106, 0, 0.08);
}

.header-actions {
  display: flex;
  gap: 8px;
}

.main {
  width: min(100%, 1020px);
  margin: 0 auto;
  padding: 48px 18px 60px;
}

/* ===== ГЛАВНЫЙ БАННЕР ===== */

.hero-banner {
  width: min(100%, 920px);
  margin: 0 auto 42px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(87, 6, 15, 0.95), rgba(29, 3, 25, 0.95));
  border: 2px solid rgba(255, 106, 0, 0.75);
  box-shadow:
    0 0 42px rgba(255, 106, 0, 0.34),
    inset 0 0 30px rgba(255, 106, 0, 0.12);
  position: relative;
  transition: 0.25s;
}

.hero-banner:hover {
  transform: scale(1.015);
  box-shadow:
    0 0 55px rgba(255, 106, 0, 0.5),
    inset 0 0 30px rgba(255, 106, 0, 0.16);
}

.banner-title {
  text-align: center;
  padding: 25px 10px 22px;
  color: #ffb24a;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 8px;
  text-shadow:
    0 0 10px rgba(255, 106, 0, 0.9),
    0 0 26px rgba(255, 106, 0, 0.55);
}

.banner-media {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-top: 5px solid #ff6a00;
}

/* ===== БЛОКИ ===== */

.welcome-box {
  width: min(100%, 720px);
  margin: 0 auto 48px;
  padding: 28px 32px;
  color: #b8b1bd;
  font-size: 17px;
  line-height: 1.75;
  background: rgba(13, 8, 20, 0.86);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-top: 3px dashed rgba(255, 106, 0, 0.9);
  border-radius: 0 0 14px 14px;
  box-shadow:
    0 0 30px rgba(255, 106, 0, 0.12),
    inset 0 0 30px rgba(123, 0, 255, 0.08);
}

.drop-letter {
  float: left;
  color: #ff7a00;
  font-size: 52px;
  line-height: 42px;
  margin: 8px 12px 0 0;
  text-shadow: 0 0 18px rgba(255, 106, 0, 0.8);
}

.home-actions {
  width: min(100%, 720px);
  margin: -20px auto 55px;
}

.telegram-btn {
  display: block;
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, #38c7ff, #0072a9);
  border: 2px solid rgba(112, 222, 255, 0.65);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow:
    0 6px 0 #004d76,
    0 0 24px rgba(0, 183, 255, 0.42);
  transition: 0.22s ease;
}

.telegram-btn:hover {
  transform: scale(1.035);
  box-shadow:
    0 8px 0 #004d76,
    0 0 38px rgba(0, 183, 255, 0.68);
}

.section-title {
  text-align: center;
  color: #ff7a00;
  font-size: 28px;
  letter-spacing: 6px;
  margin: 0 0 34px;
  text-shadow:
    0 0 10px rgba(255, 106, 0, 0.8),
    0 0 28px rgba(255, 106, 0, 0.35);
}

/* ===== FAQ ===== */

.faq-section {
  width: min(100%, 680px);
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  background: rgba(16, 16, 31, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.22s;
}

.faq-item:hover {
  transform: scale(1.02);
  border-color: rgba(255, 106, 0, 0.6);
  box-shadow: 0 0 22px rgba(255, 106, 0, 0.18);
}

.faq-question {
  padding: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question span {
  color: #ff7a00;
  transition: 0.2s;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #aaa3b3;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span {
  transform: rotate(180deg);
}

/* ===== ТОВАРЫ ===== */

.products-grid {
  width: min(100%, 700px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      #16101c 0%,
      #0d0914 50%,
      #100818 100%
    );
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: 4px 4px 16px 16px;
  cursor: pointer;
  box-shadow:
    0 2px 0 rgba(0,0,0,0.45),
    0 8px 20px rgba(0,0,0,0.55),
    0 20px 40px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,106,0,0.12);
  transition:
    transform 0.35s ease,
    border-color 0.3s,
    box-shadow 0.35s;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle 4px at 6px 8px, #0a0510 50%, transparent 51%) repeat-x,
    linear-gradient(180deg, rgba(255,106,0,0.55), rgba(255,106,0,0.12));
  background-size: 12px 8px, 100% 100%;
  box-shadow: 0 1px 8px rgba(255,106,0,0.28);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 12px 6px 6px 6px;
  border: 1px solid rgba(255,106,0,0.12);
  border-radius: 2px 2px 12px 12px;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,106,0,0.12), transparent 50%);
  transition: 0.35s;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.025) rotate(-0.4deg);
  border-color: rgba(255, 106, 0, 0.75);
  box-shadow:
    0 2px 0 rgba(0,0,0,0.55),
    0 10px 30px rgba(255,106,0,0.28),
    0 25px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,106,0,0.28),
    0 0 40px rgba(255,106,0,0.22);
}

.product-card:hover::after {
  border-color: rgba(255,106,0,0.42);
}

.product-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-content {
  padding: 2px 12px 18px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: -6px;
}

.product-content h3 {
  color: #ff7a00;
  font-size: 18px;
  margin: 0 0 14px;
  letter-spacing: 1px;
  line-height: 1.25;
}

.price {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 52px;
  margin: 16px auto 0;
  position: relative;
  color: #ffd84d;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(36, 10, 0, 0.92) 0%,
      rgba(20, 5, 0, 0.96) 100%
    );
  border: 1px solid rgba(255, 119, 0, 0.9);
  box-shadow:
    inset 0 0 12px rgba(255, 119, 0, 0.18),
    0 0 12px rgba(255, 119, 0, 0.14);
  transition: 0.22s ease;
}

.price::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 0, 0.45);
  pointer-events: none;
}

.badge {
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 3;
  background: linear-gradient(135deg, #00ff87, #00c66b);
  color: #06130c;
  padding: 8px 15px;
  font-weight: 900;
  letter-spacing: 2px;
  border-radius: 0 8px 8px 0;
}

.product-card:nth-child(2) .badge {
  background: linear-gradient(135deg, #d946ef, #7c3aed);
  color: #fff;
}

/* ===== PREVIEW ===== */

.preview-grid {
  width: min(100%, 680px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.preview-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(13, 8, 20, 0.88);
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-top: 3px dashed rgba(255, 106, 0, 0.9);
  border-radius: 0 0 14px 14px;
  text-decoration: none;
  color: #fff;
  box-shadow:
    0 0 24px rgba(255, 106, 0, 0.12),
    inset 0 0 24px rgba(123, 0, 255, 0.08);
  transition: 0.22s ease;
}

.preview-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 106, 0, 0.75);
  box-shadow:
    0 0 30px rgba(255, 106, 0, 0.32),
    inset 0 0 24px rgba(123, 0, 255, 0.12);
}

.preview-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.35);
  font-size: 26px;
}

.preview-card h3 {
  margin: 0 0 7px;
  color: #ff7a00;
  font-size: 20px;
  letter-spacing: 1px;
}

.preview-card p {
  margin: 0;
  color: #aaa3b3;
  line-height: 1.45;
}

/* ===== FOOTER ===== */

.footer {
  width: min(100%, 980px);
  margin: 80px auto 0;
  padding: 34px 18px 45px;
  border-top: 1px dashed rgba(255, 106, 0, 0.5);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
  color: rgba(255, 255, 255, 0.36);
}

.footer-logo {
  color: #ff7a00;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 0 0 16px rgba(255, 106, 0, 0.7);
}

.footer h3 {
  color: #ff7a00;
  letter-spacing: 2px;
  margin-top: 0;
}

.footer p {
  cursor: pointer;
}

.footer p:hover {
  color: #ff7a00;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(19, 18, 35, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  transition: 0.2s;
}

.socials a:hover {
  transform: scale(1.1);
  border-color: rgba(255, 106, 0, 0.7);
}

/* ===== MODAL ===== */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(7px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 95%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #120018 0%, #0d0715 100%);
  border: 1px solid rgba(255, 106, 0, 0.55);
  border-radius: 18px;
  position: relative;
  box-shadow:
    0 0 50px rgba(255, 106, 0, 0.34),
    inset 0 0 35px rgba(124, 58, 237, 0.08);
  animation: modalShow 0.25s ease;
}

@keyframes modalShow {
  from {
    transform: scale(0.92) translateY(20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 106, 0, 0.45);
  color: #ff7a00;
  font-size: 26px;
  cursor: pointer;
  z-index: 4;
  transition: 0.2s;
}

.modal-close:hover {
  transform: scale(1.1);
  background: rgba(255, 106, 0, 0.15);
}

.modal-image-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.modal-image-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(9, 0, 15, 0) 0%,
    rgba(9, 0, 15, 0.12) 18%,
    rgba(9, 0, 15, 0.32) 38%,
    rgba(9, 0, 15, 0.58) 58%,
    rgba(9, 0, 15, 0.82) 78%,
    #09000f 100%
  );
  pointer-events: none;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-body {
  padding: 28px 28px 30px;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.modal-badge {
  display: inline-block;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00ff87, #00c66b);
  color: #06130c;
  padding: 10px 16px;
  font-weight: 900;
  letter-spacing: 2px;
  border-radius: 10px;
}

.modal-body h2 {
  color: #ff7a00;
  font-size: 26px;
  margin: 0 0 18px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.modal-desc {
  color: #aaa3b3;
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 17px;
}

.modal-price {
  color: #ff7a00;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 26px;
}

.buy-btn,
.crypto-btn,
.modal-back,
.status-button {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 17px;
  margin-top: 12px;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  cursor: pointer;
  transition: 0.22s ease;
}

.buy-btn {
  background: linear-gradient(180deg, #ff9635, #e85d04);
  box-shadow:
    0 5px 0 #9a3412,
    0 0 25px rgba(255, 106, 0, 0.45);
}

.crypto-btn {
  background: linear-gradient(180deg, #19c9e6, #0891b2);
}

.modal-back {
  background: rgba(20, 22, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.buy-btn:hover,
.crypto-btn:hover,
.modal-back:hover,
.status-button:hover {
  transform: scale(1.035);
}

/* ===== STATUS ===== */

.status-box {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  background: rgba(13, 8, 20, 0.88);
  border: 1px solid rgba(255, 106, 0, 0.32);
  border-radius: 16px;
  padding: 28px;
  box-shadow:
    0 0 30px rgba(255, 106, 0, 0.12),
    inset 0 0 30px rgba(123, 0, 255, 0.08);
}

.success {
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.18);
}

.error {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 0 28px rgba(239, 68, 68, 0.18);
}

.support-link {
  color: #38bdf8;
  font-weight: 900;
  text-decoration: none;
}

.shine {
  font-weight: 900;
  background: linear-gradient(
    90deg,
    #ff7a00 0%,
    #ffd36a 25%,
    #ffffff 50%,
    #ffd36a 75%,
    #ff7a00 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shineMove 3s linear infinite;
}

@keyframes shineMove {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #08000d;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff7a00, #7c2d12);
  border-radius: 10px;
  border: 2px solid #08000d;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff9a2f, #c2410c);
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #09000f;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff7a00, #7c2d12);
  border-radius: 10px;
}

html,
.modal-content {
  scrollbar-width: thin;
  scrollbar-color: #ff7a00 #08000d;
}


.page {
  animation: pageUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pageUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
/* ===== MOBILE ===== */

@media (max-width: 780px) {
  .site-header {
    display: block;
    padding: 16px 12px;
  }

  .brand {
    font-size: 27px;
    margin-bottom: 14px;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav button,
  .header-actions button {
    font-size: 14px;
    padding: 10px 13px;
  }

  .header-actions {
    margin-top: 10px;
  }

  .main {
    padding: 34px 14px 44px;
  }

  .banner-title {
    font-size: 34px;
    letter-spacing: 5px;
  }

  .banner-media {
    max-height: 360px;
  }

  .welcome-box {
    padding: 22px;
  }

  .product-card img {
    height: 120px;
  }

  .product-content {
    padding: 6px 10px 18px;
    margin-top: -10px;
  }

  .product-content h3 {
    font-size: 16px;
  }

  .price {
    width: 130px;
    height: 44px;
    font-size: 16px;
  }

  .footer {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .modal-image-wrap {
    height: 280px;
  }

  .modal-body {
    padding: 24px 22px 28px;
    margin-top: -42px;
  }

.bottom-fog {
  height: 120px;
  }
}

.products-grid > .product-card:last-child:nth-child(odd) {
  grid-column: 1 / -1 !important;

  width: 100% !important;

  max-width: none !important;
}
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.bubbles-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.bubbles-bg span {
  position: absolute;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: rgba(255, 106, 0, 0.55);

  mix-blend-mode: screen;

  box-shadow:
    0 0 8px rgba(255, 106, 0, 0.8),
    0 0 18px rgba(255, 106, 0, 0.35);

  animation: bubbleMove 8s ease-in-out infinite;

  left: calc(100% * var(--x));
  top: calc(100% * var(--y));
}

.bubbles-bg span:nth-child(odd) {
  width: 5px;
  height: 5px;
}

.bubbles-bg span:nth-child(even) {
  width: 8px;
  height: 8px;
}

@keyframes bubbleMove {

  0% {
    transform:
      translate(0, 0)
      scale(0.4);

    opacity: 0;
  }

  15% {
    opacity: 0.85;
  }

  70% {
    opacity: 0.7;
  }

  100% {
    transform:
      translate(
        calc(-40px + 80px * var(--x)),
        calc(-80px - 40px * var(--y))
      )
      scale(1.4);

    opacity: 0;
  }
}
.support-box {
  width: min(100%, 720px);
  padding: 34px 28px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
}

.support-box p,
.support-box a {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.support-title {
  color: #ff5ea8;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.support-username {
  display: inline-block;
  color: #2ea0ff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: auto !important;
  padding: 12px 20px;

  border-radius: 12px;
  background: linear-gradient(180deg, #26c6ff, #00aee9);

  color: white;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 0 14px rgba(0, 174, 233, 0.25);
  transition: 0.25s;
}

.support-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(0, 174, 233, 0.45);
}
.payment-loading {
  text-align: center;
}

.loader-clock {
  font-size: 34px;

  margin-bottom: 14px;

  animation: clockSpin 1.2s linear infinite;
}

.loading-text {
  color: #fff;

  font-size: 20px;
  font-weight: 900;

  letter-spacing: 1px;
}

.loading-text span::after {
  content: "";

  animation:
    loadingDots 1.2s steps(4, end) infinite;
}

@keyframes loadingDots {

  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75%,
  100% {
    content: "...";
  }
}

@keyframes clockSpin {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}