﻿/* ============================================================
   GAME PORTAL – Payment Section – Handcrafted Styles
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --clr-surface: #181818;
  --clr-card: #212121;
  --clr-accent: #E3320D;
  --clr-text: #FCFCFC;
  --clr-text-80: rgba(252, 252, 252, 0.8);
  --clr-text-50: rgba(252, 252, 252, 0.5);
  --clr-text-40: rgba(252, 252, 252, 0.4);
  --clr-border: rgba(255, 255, 255, 0.15);
  --clr-border-dim: rgba(255, 255, 255, 0.1);
  --clr-hover: rgba(255, 255, 255, 0.05);
  --clr-dark: #000;
  --typeface: 'Montserrat', sans-serif;
  --layout-max: 1420px;
  --spacing-base: 20px;
  --corner: 10px;
  --motion: 0.3s ease;
}

/* ---------- Foundation ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--typeface);
  background: var(--clr-surface);
  color: var(--clr-text);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; border: none; outline: none; }

/* ---------- Layout ---------- */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 2560px;
  margin: 0 auto;
  position: relative;
}
.container {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Interactive Elements ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 3px solid;
  border-radius: var(--corner);
  cursor: pointer;
  transition: background var(--motion), color var(--motion), border-color var(--motion);
  user-select: none;
  text-align: center;
}
.btn-outline-white {
  background: var(--clr-hover);
  border-color: var(--clr-text);
  color: var(--clr-text);
  padding: 25px 61px;
  font-size: 20px;
  line-height: 24px;
}
.btn-outline-white:hover {
  background: var(--clr-text);
  color: var(--clr-dark);
}
.btn-white {
  background: var(--clr-text);
  border-color: var(--clr-text);
  color: var(--clr-dark);
  padding: 25px 61px;
  font-size: 20px;
  line-height: 24px;
}
.text-red { color: var(--clr-accent); }
.fw-600 { font-weight: 600; }

/* ---------- SITE BANNER ---------- */
.site-header {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  z-index: 50;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 80px;
  margin-top: 60px;
}
.logo-link { flex-shrink: 0; }
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}
.logo-icon { width: 111px; height: 125px; }
.logo-text { width: 192px; height: 79px; }

.nav-desktop {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 18px;
  font-weight: 600;
  line-height: 35px;
  transition: opacity var(--motion);
}
.nav-links a:hover { opacity: 0.7; }
.nav-links a.active { color: var(--clr-accent); }



/* ---------- MASTHEAD ---------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-people-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 100%;
  z-index: -1;
}
.hero-people-img {
  position: absolute;
  width: 1024px;
  height: 1024px;
  bottom: 0;
  right: 0;
}
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.decor { position: absolute; }
.decor-star-tl { width: 32px; height: 32px; left: 30px; top: 30px; }
.decor-lines-l { width: 151px; height: 64px; left: 238px; top: 200px; }
.decor-dots-l { width: 34px; height: 132px; left: 140px; top: 361px; }
.decor-dots-r { width: 34px; height: 132px; right: 75px; bottom: 173px; transform: rotate(180deg); }

.hero-body {
  position: relative;
  z-index: 1;
  padding-top: 220px;
  padding-bottom: 80px;
}
.hero-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 64px;
  line-height: 1.1;
  color: var(--clr-text);
  max-width: 834px;
}
.mobile-br { display: none; }

/* ---------- PAYMENT MODULE ---------- */
.donate-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 340px);
  gap: 10px 20px;
  width: 100%;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-text);
  margin-bottom: 12px;
}
.input-wrap, .custom-select {
  background: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding-right: 20px;
  gap: 12px;
  height: 48px;
  transition: box-shadow 0.3s ease;
}
.input-wrap.field-error, .custom-select.field-error {
  box-shadow: 0 0 0 3px #E3320D !important;
}
.input-wrap input, .custom-select input {
  flex: 1;
  background: transparent;
  color: #000;
  font-size: 16px;
  padding: 12px 24px;
  height: 100%;
  width: 100%;
}
.input-wrap input::placeholder, .custom-select input::placeholder {
  color: #747474;
}
.input-suffix {
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  white-space: nowrap;
}
.custom-select {
  cursor: pointer;
  position: relative;
  overflow: visible;
}
.custom-select input { pointer-events: none; cursor: pointer; }
.select-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform var(--motion);
}
.custom-select.open .select-arrow {
  transform: rotate(180deg);
}

/* Server Modal */
.server-modal-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.56);
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.server-modal-overlay.open {
  display: flex;
}
.server-modal {
  background: var(--clr-card);
  border-radius: 40px;
  padding: 48px 65px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: modalFadeIn 0.25s ease;
}
.server-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-shrink: 0;
}
.server-modal-title {
  color: var(--clr-text);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
}
.server-modal-close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.server-modal-close svg {
  width: 100%;
  height: 100%;
}
.server-modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.server-modal-body::-webkit-scrollbar {
  display: none;
}
.server-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.server-modal-scrollbar {
  margin-top: 32px;
  flex-shrink: 0;
}
.server-modal-scrollbar-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  position: relative;
}
.server-modal-scrollbar-thumb {
  height: 100%;
  background: var(--clr-text);
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0;
  min-width: 30px;
  transition: width 0.1s;
}

/* Server Card */
.server-card {
  background: var(--clr-surface);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.server-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.server-card-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
}
.server-card-top {
  flex: 1;
}
.server-card-id {
  color: var(--clr-text);
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
}
.server-card-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 2px;
}
.server-card-bottom {
  margin-top: 8px;
}
.server-card-online {
  font-size: 12px;
  color: rgba(253,253,253,0.4);
}
.server-card-online span {
  color: var(--clr-text);
}
.server-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.server-card-footer-title {
  font-size: 14px;
  font-weight: 600;
}
.server-card-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Payment Method Modal */
.payment-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.56);
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.payment-modal-overlay.open {
  display: flex;
}
.payment-modal {
  background: var(--clr-card);
  border-radius: 40px;
  padding: 48px 65px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: modalFadeIn 0.25s ease;
}
.payment-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-shrink: 0;
}
.payment-modal-title {
  color: var(--clr-text);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
}
.payment-modal-close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.payment-modal-close svg {
  width: 100%;
  height: 100%;
}
.payment-modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 16px;
}
.payment-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.payment-method-card {
  background: var(--clr-surface);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: calc(33.333% - 14px);
  min-height: 160px;
  transition: transform 0.2s, box-shadow 0.2s;
  --pm-color: #FCFCFC;
  --pm-hover-color: var(--clr-accent);
}
.payment-method-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.payment-method-card:hover .pm-card-triangle path {
  fill: var(--pm-hover-color);
}
.payment-method-card:hover .pm-card-name {
  color: var(--pm-hover-color);
}
.payment-method-card:hover .pm-card-arrow circle {
  fill: var(--pm-hover-color);
}
.pm-card-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
}
.pm-card-triangle path {
  fill: var(--pm-color);
  transition: fill var(--motion);
}
.pm-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.pm-card-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pm-card-logo img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}
.pm-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.pm-card-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: var(--pm-color);
  transition: color var(--motion);
}
.pm-card-arrow {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.pm-card-arrow circle {
  transition: fill var(--motion);
}

.amount-conversion {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--clr-text);
  margin-top: 14px;
}
.bc-icon { width: 38px; height: 30px; }
.conversion-text span { white-space: nowrap; }

.form-disclaimer {
  color: var(--clr-text-50);
  font-size: 14px;
  line-height: 24px;
  margin-top: 26px;
  max-width: 700px;
}
.form-disclaimer a { color: var(--clr-text-50); }
.form-disclaimer u { text-decoration: underline; }

.form-actions {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  align-items: center;
}
.btn-submit {
  height: 78px;
  min-width: 240px;
}


/* ---------- GOODS CATALOG ---------- */
.shop-section {
  margin-top: 80px;
}
.shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 64px;
  line-height: 1;
  color: var(--clr-text);
}
.hide-on-wide { display: none; }

/* Promo card */
.promo-card {
  position: relative;
  width: 340px;
  height: 200px;
  border-radius: 0;
  overflow: hidden;
}
.promo-bg-text {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: 0;
}
.promo-bg-text svg { width: 100%; height: 100%; }
.promo-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 20px;
  gap: 20px;
}
.promo-subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.promo-price {
  font-weight: 600;
  font-size: 28px;
  line-height: 39px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.promo-old {
  color: var(--clr-accent);
  font-size: 16px;
  line-height: 19px;
  opacity: 0.75;
  text-decoration: line-through;
}

/* Shop grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}
.shop-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 40px;
}
.shop-item-icon { width: 92px; height: 92px; }
.shop-item-info { flex: 1; }
.shop-item-name {
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: var(--clr-text);
}
.shop-item-desc {
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-text);
  opacity: 0.7;
  margin-top: 4px;
}
.shop-item-price {
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  color: var(--clr-accent);
}

/* ---------- VIP SECTION ---------- */
.vip-section {
  margin-top: 155px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.vip-section::-webkit-scrollbar { display: none; }
.vip-track {
  display: flex;
  gap: 20px;
  padding: 0 40px;
  width: max-content;
  margin: 0 auto;
}
.vip-card {
  position: relative;
  width: 460px;
  min-height: 600px;
  background: var(--clr-card);
  border-radius: 20px;
  overflow: hidden;
  padding: 40px 30px;
  flex-shrink: 0;
}
.vip-bear {
  position: absolute;
  right: 0; top: 0;
  z-index: 0;
  pointer-events: none;
}
.vip-bear img { width: auto; height: auto; max-height: 300px; }

.vip-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.vip-name {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 27px;
}
.vip-name-platinum {
  background: linear-gradient(138.8deg, #CDE9FF 5.7%, #CEA1FF 27.03%, #858AF6 41.02%, #CEF2FF 68.68%, #B692EA 94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vip-price {
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
  color: var(--clr-text);
}
.vip-period {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: var(--clr-text-40);
}
.vip-buy-btn {
  height: 57px;
  padding: 16px 61px;
  font-size: 20px;
}

.vip-features {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 64px;
}
.vip-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--clr-text);
  font-size: 13px;
  line-height: 18px;
  padding: 3px 0 10px;
  border-bottom: 1px solid var(--clr-border);
}
.vip-features li:last-child { border-bottom-color: transparent; }
.vip-features li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 11px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='16' viewBox='0 0 19 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9L7.55405 14.5L17.5 1.5' stroke='%23FDFDFD' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  margin-top: 112px;
}
.faq-list {
  margin-top: 64px;
}
.faq-item {
  border-bottom: 2px solid var(--clr-text-50);
  padding: 40px 0 25px;
  cursor: pointer;
  user-select: none;
}
.faq-item:first-child { padding-top: 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 175px;
}
.faq-question h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  flex: 1;
}
.faq-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.faq-icon svg { width: 100%; height: 100%; }
.faq-plus { display: block; }
.faq-minus { display: none; }
.faq-item.open .faq-plus { display: none; }
.faq-item.open .faq-minus { display: block; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--clr-text-80);
  font-size: 20px;
  line-height: 30px;
  margin-top: 15px;
  max-width: 1180px;
}
.faq-answer a { text-decoration: underline; }
.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ---------- ACTION BANNER ---------- */
.play-section {
  position: relative;
  overflow: hidden;
  height: 629px;
  margin-top: 158px;
}
.play-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -3;
}
.play-people {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}
.play-person-left {
  position: absolute;
  width: 678px;
  height: 678px;
  bottom: -10px;
  left: 0;
}
.play-person-right {
  position: absolute;
  width: 678px;
  height: 678px;
  right: 0;
  bottom: 0;
}
.play-decor {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.decor-star-br {
  width: 32px; height: 32px;
  right: 30px; bottom: 22px;
  transform: rotate(180deg);
}
.play-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.play-title {
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 58px;
  color: var(--clr-text);
}
.play-btn {
  max-width: 244px;
  width: 100%;
  height: auto;
}

/* ---------- PAGE FOOTER ---------- */
.site-footer {
  background: var(--clr-surface);
  padding: 65px 0;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 615px;
}
.footer-logo { width: 220px; }
.footer-legal-text {
  color: var(--clr-text);
  opacity: 0.5;
  font-size: 14px;
  line-height: 22px;
}
.footer-nav {
  display: flex;
  gap: 32px;
}
.footer-nav a {
  font-weight: 600;
  font-size: 18px;
  line-height: 35px;
  transition: opacity var(--motion);
}
.footer-nav a:hover { opacity: 0.7; }

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.footer-social {
  display: flex;
  gap: 20px;
}
.social-btn {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: var(--clr-border-dim);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--motion), border-color var(--motion);
}
.social-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--clr-text-40);
}
.social-btn img { width: 100%; height: 100%; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px 30px;
}
.payment-grid img { height: 30px; width: auto; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #535353;
  padding-top: 32px;
  margin-top: 54px;
  gap: 40px;
}
.footer-copyright {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: var(--clr-text);
  opacity: 0.5;
}
.footer-legal-links {
  display: flex;
  gap: 32px;
}
.footer-legal-links li {
  font-size: 14px;
  line-height: 22px;
  color: var(--clr-text);
  opacity: 0.5;
  cursor: pointer;
}
.footer-legal-links a { transition: opacity var(--motion); }
.footer-legal-links a:hover { opacity: 0.8; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* ---- Tablet Landscape (844 - 1419) ---- */
@media (max-width: 1419px) {
  .container { max-width: 100%; padding: 0 30px; }
  .header-inner { margin-top: 20px; gap: 40px; }
  .logo-icon { width: 70px; height: 79px; }
  .logo-text { width: 120px; height: auto; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 16px; }

  .hero-body { padding-top: 160px; padding-bottom: 60px; }
  .hero-title { font-size: 36px; line-height: 36px; }
  .hero-people-wrap { width: 822px; }
  .hero-people-img { width: 400px; height: 400px; bottom: -80px; }
  .decor-star-tl { width: 16px; height: 16px; left: 16px; top: 10px; }
  .decor-lines-l { width: 56px; height: 24px; left: 57px; top: 86px; }
  .decor-dots-l { width: 17px; height: 66px; left: 17px; top: 150px; }
  .decor-dots-r { width: 17px; height: 66px; right: 18px; top: 220px; bottom: auto; }

  .form-grid { grid-template-columns: repeat(2, minmax(auto, 350px)); }
  .form-group label { font-size: 20px; line-height: 30px; }
  .btn-submit { height: 70px; }

  .section-title { font-size: 36px; line-height: 36px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 20px; margin-top: 27px; }
  .shop-item-icon { width: 54px; height: 54px; }
  .shop-item-name { font-size: 15px; line-height: 22px; }
  .shop-item-desc { font-size: 11px; line-height: 16px; }
  .shop-item-price { font-size: 15px; line-height: 22px; }
  .shop-item { gap: 11px; padding-bottom: 20px; }
  .promo-card { display: none; }

  .vip-section { margin-top: 48px; }
  .vip-track { padding: 0 30px; }
  .vip-card { width: 360px; min-height: auto; padding: 30px 20px; }
  .vip-name { font-size: 23px; }
  .vip-price { font-size: 30px; }
  .vip-features { margin-top: 64px; }
  .vip-features li { font-size: 13px; }

  .faq-section { margin-top: 48px; }
  .faq-list { margin-top: 27px; }
  .faq-question { gap: 11px; }
  .faq-question h4 { font-size: 15px; line-height: 20px; }
  .faq-icon { width: 36px; height: 36px; }
  .faq-item { padding: 22px 0 13px; }
  .faq-answer { font-size: 13px; line-height: 17px; margin-top: 11px; }

  .play-section { height: 404px; margin-top: 60px; }
  .play-people { width: 842px; }
  .play-person-left { width: 435px; height: 435px; bottom: 0; left: -80px; }
  .play-person-right { width: 435px; height: 435px; bottom: 0; right: -40px; }
  .play-title { font-size: 30px; line-height: 30px; }
  .play-body { gap: 40px; }
  .play-btn { font-size: 20px; padding: 17px 40px; max-width: 156px; border-radius: 6px; }

  .footer-logo { width: 158px; }
  .footer-social { gap: 20px; }
  .social-btn { width: 40px; height: 40px; }
  .footer-nav a { font-size: 16px; line-height: 16px; }

  .payment-modal { padding: 40px 46px; border-radius: 32px; }
  .payment-modal-title { font-size: 28px; }
  .payment-modal-close { width: 36px; height: 36px; }
  .payment-method-card { width: calc(33.333% - 14px); min-height: 140px; }
  .pm-card-logo img { max-width: 100px; max-height: 50px; }
  .pm-card-name { font-size: 13px; }
  .pm-card-arrow { width: 26px; height: 26px; }
}

/* ---- Tablet (679 - 843) ---- */
@media (max-width: 855px) {
  .nav-desktop { display: none; }

  .header-inner { margin-top: 71px; align-items: flex-start; }
  .logo-icon { width: 80px; height: 90px; }
  .logo-text { width: 140px; }

  .hero-body { padding-top: 280px; padding-bottom: 60px; }
  .hero-title { font-size: 64px; line-height: 1.1; }
  .hero-people-wrap { width: 840px; }
  .hero-people-img { width: 840px; height: 840px; bottom: -100px; }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .form-group label { font-size: 40px; line-height: 61px; margin-bottom: 24px; }
  .input-wrap, .custom-select { height: 98px; border-radius: 204px; padding-right: 42px; }
  .input-wrap input, .custom-select input { font-size: 32px; padding: 24px 49px; }
  .select-arrow { width: 65px; height: 65px; }
  .server-modal { padding: 40px 46px; border-radius: 32px; }
  .server-modal-title { font-size: 48px; }
  .server-modal-close { width: 36px; height: 36px; }
  .server-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .server-card { min-height: 180px; padding: 20px; border-radius: 20px; }
  .server-card-name { font-size: 24px; }
  .server-card-id { font-size: 16px; }
  .server-card-online { font-size: 16px; }
  .server-card-footer-title { font-size: 18px; }
  .server-card-arrow { width: 42px; height: 42px; }
  .amount-conversion {
    font-size: 49px; line-height: 60px;
    margin-top: 20px;
    justify-content: flex-end;
  }
  .bc-icon { width: 77px; height: 62px; }
  .form-disclaimer { font-size: 28px; line-height: 45px; margin-top: 40px; }
  .form-actions {
    flex-direction: column-reverse;
    width: 100%;
    margin-top: 40px;
    gap: 24px;
  }
  .btn-submit {
    width: 100%;
    height: auto;
    padding: 28px;
    font-size: 30px;
    border-radius: 16px;
  }

  .section-title { font-size: 36px; line-height: 44px; }
  .shop-section { margin-top: 80px; }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .shop-item-icon { width: 97px; height: 97px; }
  .shop-item-name { font-size: 28px; line-height: 39px; }
  .shop-item-desc { font-size: 20px; line-height: 30px; }
  .shop-item-price { font-size: 28px; line-height: 39px; }
  .shop-item { gap: 20px; }

  .vip-section { margin-top: 97px; }
  .vip-card { width: 340px; padding: 32px 24px; }
  .vip-name { font-size: 36px; line-height: 43px; }
  .vip-price { font-size: 44px; line-height: 70px; }
  .vip-period { font-size: 38px; line-height: 50px; }
  .vip-features { margin-top: 96px; gap: 10px; }
  .vip-features li { font-size: 20px; padding: 4px 0 14px; }
  .vip-buy-btn { padding: 28px; font-size: 30px; border-radius: 16px; }

  .faq-section { margin-top: 97px; }
  .faq-list { margin-top: 31px; }
  .faq-question h4 { font-size: 17px; line-height: 21px; }
  .faq-question { gap: 86px; }
  .faq-icon { width: 31px; height: 31px; }
  .faq-item { padding: 19px 0; }
  .faq-answer { font-size: 9px; line-height: 14px; margin-top: 7px; }

  .play-section { height: 1172px; }
  .play-title { font-size: 62px; line-height: 74px; }
  .play-btn { font-size: 51px; padding: 38px; max-width: 859px; border-radius: 25px; height: 174px; }
  .play-body { padding-top: 112px; padding-bottom: 76px; }

  .site-footer { padding: 76px 0 61px; }
  .footer-top { flex-direction: column; gap: 87px; }
  .footer-logo { width: 278px; }
  .footer-info { gap: 87px; }
  .footer-legal-text { font-size: 24px; line-height: 38px; }
  .footer-nav { gap: 20px; }
  .footer-nav a { font-size: 36px; line-height: 43px; }
  .social-btn { width: 64px; height: 64px; }

  .footer-bottom { margin-top: 87px; padding-top: 87px; flex-direction: column; align-items: flex-start; gap: 87px; }
  .footer-copyright { font-size: 32px; line-height: 56px; width: 556px; }
  .footer-legal-links { flex-direction: column; gap: 30px; }
  .footer-legal-links li { font-size: 32px; line-height: 51px; }

  .payment-modal { padding: 32px 30px; border-radius: 28px; }
  .payment-modal-title { font-size: 42px; }
  .payment-modal-close { width: 32px; height: 32px; }
  .payment-modal-header { margin-bottom: 24px; }
  .payment-method-card { width: calc(50% - 10px); min-height: 160px; }
  .pm-card-logo img { max-width: 100px; max-height: 50px; }
  .pm-card-name { font-size: 22px; }
  .pm-card-arrow { width: 36px; height: 36px; }
}

/* ---- Mobile (< 679) ---- */
@media (max-width: 678px) {
  .container { padding: 0 20px; }
  .nav-desktop { display: none; }

  .header-inner { margin-top: 35px; align-items: flex-start; padding: 0 29px; }
  .logo-icon { width: 60px; height: 68px; }
  .logo-text { width: 100px; }

  .hero-body { padding-top: 200px; padding-bottom: 40px; }
  .hero-title { font-size: 36px; line-height: 44px; }
  .mobile-br { display: inline; }
  .hero-people-wrap { width: 400px; }
  .hero-people-img { width: 400px; height: 400px; bottom: -50px; right: 0; }
  .decor-star-tl { width: 16px; height: 16px; left: 20px; top: 10px; }
  .decor-lines-l { width: 56px; height: 24px; left: 43px; top: 97px; }
  .decor-dots-l { width: 17px; height: 66px; left: 43px; top: 155px; }
  .decor-dots-r { width: 17px; height: 66px; right: 20px; top: 268px; bottom: auto; }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 14px;
  }
  .form-group label { font-size: 22px; line-height: 33px; margin-bottom: 13px; }
  .input-wrap, .custom-select { height: 53px; border-radius: 113px; padding-right: 23px; }
  .input-wrap input, .custom-select input { font-size: 16px; padding: 13px 27px; }
  .select-arrow { width: 36px; height: 36px; }
  .server-modal { padding: 24px 20px; border-radius: 20px; max-width: 95%; }
  .server-modal-title { font-size: 22px; }
  .server-modal-close { width: 17px; height: 17px; }
  .server-modal-header { margin-bottom: 16px; }
  .server-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .server-card { min-height: 110px; padding: 12px; border-radius: 12px; }
  .server-card-name { font-size: 14px; }
  .server-card-id { font-size: 10px; }
  .server-card-online { font-size: 10px; }
  .server-card-footer-title { font-size: 11px; }
  .server-card-arrow { width: 24px; height: 24px; }
  .server-card-triangle { width: 14px; height: 14px; }
  .server-modal-scrollbar { margin-top: 16px; }
  .amount-conversion {
    font-size: 26px; line-height: 32px;
    margin-top: 13px;
    justify-content: center;
  }
  .bc-icon { width: 41px; height: 33px; }
  .form-disclaimer { font-size: 15px; line-height: 25px; margin-top: 24px; }
  .form-actions {
    flex-direction: column-reverse;
    width: 100%;
    margin-top: 24px;
    gap: 16px;
  }
  .btn-submit {
    width: 100%;
    padding: 17px;
    font-size: 16px;
    border-radius: 10px;
    height: auto;
  }


  .section-title { font-size: 36px; line-height: 44px; }
  .shop-section { margin-top: 40px; }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 11px;
    margin-top: 27px;
  }
  .shop-item { gap: 11px; padding-bottom: 10px; }
  .shop-item-icon { width: 54px; height: 54px; }
  .shop-item-name { font-size: 15px; line-height: 22px; }
  .shop-item-desc { font-size: 11px; line-height: 16px; }
  .shop-item-price { font-size: 15px; line-height: 22px; }

  .vip-section { margin-top: 49px; }
  .vip-track { padding: 0 20px; }
  .vip-card { width: 280px; padding: 24px 19px; border-radius: 16px; }
  .vip-name { font-size: 23px; line-height: 28px; }
  .vip-price { font-size: 25px; line-height: 46px; }
  .vip-period { font-size: 25px; line-height: 33px; }
  .vip-features { margin-top: 64px; gap: 10px; }
  .vip-features li { font-size: 13px; }
  .vip-buy-btn { padding: 17px; font-size: 16px; border-radius: 10px; width: 100%; }

  .faq-section { margin-top: 49px; }
  .faq-list { margin-top: 27px; }
  .faq-question { gap: 11px; }
  .faq-question h4 { font-size: 15px; line-height: 20px; }
  .faq-icon { width: 36px; height: 36px; }
  .faq-item { padding: 22px 0 13px; }
  .faq-answer { font-size: 13px; line-height: 17px; margin-top: 11px; }

  .play-section { height: 613px; margin-top: 49px; }
  .play-people { width: 550px; }
  .play-person-left { width: 550px; height: 550px; bottom: 0; left: -60px; }
  .play-person-right { width: 550px; height: 550px; bottom: 0; right: -60px; }
  .play-title { font-size: 27px; line-height: 33px; }
  .play-body { padding-top: 49px; padding-bottom: 33px; gap: 30px; }
  .play-btn { font-size: 20px; padding: 17px; max-width: 335px; border-radius: 10px; height: 68px; }
  .decor-star-br { width: 16px; height: 16px; right: 10px; bottom: 11px; }

  .site-footer { padding: 23px 0 39px; }
  .footer-top { flex-direction: column; gap: 55px; }
  .footer-logo { width: 178px; }
  .footer-info { gap: 55px; }
  .footer-legal-text { font-size: 16px; line-height: 25px; }
  .footer-nav { gap: 20px; flex-wrap: wrap; }
  .footer-nav a { font-size: 18px; line-height: 22px; }
  .social-btn { width: 72px; height: 72px; border-radius: 9px; }

  .footer-bottom { margin-top: 58px; padding-top: 22px; flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-copyright { font-size: 16px; line-height: 25px; width: 246px; }
  .footer-legal-links { flex-direction: column; gap: 11px; }
  .footer-legal-links li { font-size: 16px; line-height: 25px; }
  .payment-grid { gap: 20px 20px; }

  .payment-modal { padding: 24px 20px; border-radius: 20px; max-width: 95%; }
  .payment-modal-title { font-size: 22px; }
  .payment-modal-close { width: 17px; height: 17px; }
  .payment-modal-header { margin-bottom: 16px; }
  .payment-method-card { width: calc(50% - 10px); min-height: 110px; padding: 12px; border-radius: 12px; }
  .pm-card-triangle { width: 14px; height: 14px; }
  .pm-card-logo img { max-width: 80px; max-height: 40px; }
  .pm-card-name { font-size: 11px; }
  .pm-card-arrow { width: 20px; height: 20px; }
  .pm-card-bottom { margin-top: 8px; }
}

/* ---- Very small mobile (< 378px) ---- */
@media (max-width: 377px) {
  .header-inner { margin-top: 25px; padding: 0 15px; }
  .logo-icon { width: 50px; height: 56px; }
  .logo-text { width: 80px; }
  .hero-title { font-size: 30px; line-height: 37px; }
  .form-group label { font-size: 18px; line-height: 27px; }
  .section-title { font-size: 30px; line-height: 36px; }
  .shop-item-icon { width: 48px; height: 48px; }
  .shop-item-name { font-size: 14px; line-height: 19px; }
  .shop-item-desc { font-size: 10px; line-height: 15px; }
  .shop-item-price { font-size: 14px; line-height: 19px; }
  .vip-card { width: 240px; }

  .payment-method-card { width: 100%; }
}
