/* Landing: купить 200 робуксов */
.landing-200 {
  padding: 24px 0 56px;
  max-width: 820px;
  margin: 0 auto;
}

.landing-200__hero {
  text-align: center;
  margin-bottom: 28px;
}

.landing-200__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 201, 54, 0.12);
  border: 1px solid rgba(255, 201, 54, 0.35);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.landing-200__badge img {
  width: 18px;
  height: 18px;
}

.landing-200 h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.landing-200__lead {
  font-size: 1rem;
  color: rgba(238, 241, 255, 0.78);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}

.landing-200__buy {
  background: var(--panel-dark);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
}

.landing-200__region-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.landing-200__region-tab {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(238, 241, 255, 0.75);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.landing-200__region-tab.active {
  border-color: rgba(255, 201, 54, 0.55);
  background: rgba(255, 201, 54, 0.1);
  color: #fff;
}

.landing-200__product {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.landing-200__product-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.landing-200__product-icon {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 14px rgba(255, 201, 54, 0.3));
}

.landing-200__robux-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.landing-200__robux-sub {
  font-size: 0.85rem;
  color: rgba(238, 241, 255, 0.6);
  margin-top: 2px;
}

.landing-200__price-wrap {
  text-align: right;
}

.landing-200__price-old {
  font-size: 0.9rem;
  color: rgba(238, 241, 255, 0.45);
  text-decoration: line-through;
}

.landing-200__price {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.landing-200__stock {
  font-size: 0.82rem;
  color: rgba(238, 241, 255, 0.55);
  margin-top: 4px;
}

.landing-200__stock.low { color: #ffb347; }
.landing-200__stock.none { color: #ff6b6b; }

.landing-200__buy-btn {
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  background: linear-gradient(145deg, var(--gold), var(--gold-dark));
  color: #1a1a2e;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.28);
  transition: transform 0.15s, opacity 0.15s;
}

.landing-200__buy-btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.landing-200__buy-btn:active:not(:disabled) {
  transform: translateY(2px);
}

.landing-200__buy-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.landing-200__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.landing-200__chip {
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(2, 183, 87, 0.12);
  border: 1px solid rgba(2, 183, 87, 0.35);
  color: #7dffb0;
  font-size: 0.82rem;
  font-weight: 700;
}

.landing-200__panel {
  background: var(--panel-dark);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
}

.landing-200__panel h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.landing-200__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: step200;
}

.landing-200__steps li {
  counter-increment: step200;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(238, 241, 255, 0.88);
  line-height: 1.5;
}

.landing-200__steps li::before {
  content: counter(step200);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--gold), var(--gold-dark));
  color: #1a1a2e;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-200__seo {
  font-size: 0.9rem;
  color: rgba(238, 241, 255, 0.75);
  line-height: 1.6;
}

.landing-200__seo p + p {
  margin-top: 12px;
}

.landing-200__seo a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-200__faq .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-200__faq .faq-item:last-child {
  border-bottom: none;
}

.landing-200__faq .faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 0;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.landing-200__faq .faq-q::after {
  content: '+';
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.landing-200__faq .faq-item.open .faq-q::after {
  content: '−';
}

.landing-200__faq .faq-a {
  display: none;
  padding: 0 0 14px;
  font-size: 0.88rem;
  color: rgba(238, 241, 255, 0.72);
  line-height: 1.55;
}

.landing-200__faq .faq-item.open .faq-a {
  display: block;
}

.landing-200__loading {
  text-align: center;
  padding: 20px;
  color: rgba(238, 241, 255, 0.6);
}

.landing-200-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1e2448;
  border: 2px solid rgba(255, 201, 54, 0.4);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}

.landing-200-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 560px) {
  .landing-200__product {
    flex-direction: column;
    align-items: stretch;
  }
  .landing-200__price-wrap {
    text-align: left;
  }
}
