:root {
  --bg: #0b0f15;
  --bg-2: #0f1520;
  --text: #e7eef8;
  --muted: #a6b0c3;
  --primary: #7c4fff;
  --primary-2: #9d7cff;
  --accent: #8b6bff;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --hero-image: url('');
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 70% 10%, #111a2b 0%, var(--bg) 60%) fixed;
  color: var(--text);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(6,8,12,0.9), rgba(6,8,12,0.6));
  backdrop-filter: saturate(120%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 0px; }
.brand-link { text-decoration: none; color: inherit; display: inline-block; transition: opacity 140ms ease; }
.brand-link:hover { opacity: 0.8; }
.brand-name { font-weight: 800; letter-spacing: 0.6px; font-size: clamp(22px, 2.6vw, 32px); line-height: 1; }
.brand-separator { color: var(--muted); font-size: clamp(18px, 2vw, 24px); opacity: 0.5; margin: 0 0 0 4px; }
.lang-select { margin-left: -6px; }

.links { display: flex; gap: 18px; align-items: center; }
.links a { color: var(--muted); text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 8px; border: 1px solid transparent; transition: all 140ms ease; }
.links a:hover { color: var(--text); border-color: rgba(156,136,255,0.35); background: linear-gradient(180deg, rgba(107,71,255,0.12), rgba(107,71,255,0.05)); }
.links i { margin-right: 8px; color: #b19eff; }
.links .icon-img { width: 18px; height: 18px; object-fit: contain; display: inline-block; margin-right: 8px; filter: brightness(0) invert(1); vertical-align: middle; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 10px; text-decoration: none; font-weight: 600; white-space: nowrap; --btn-translate-y: 0; transform: translateY(var(--btn-translate-y)) scale(1); transition: transform 140ms cubic-bezier(.2,.8,.2,1), box-shadow 140ms ease; }
.btn i { font-size: 0.95rem; }
.btn .icon-img { width: 18px; height: 18px; object-fit: contain; display: inline-block; filter: brightness(0) invert(1); }
.btn-primary { background: linear-gradient(180deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: 0 12px 30px rgba(124,92,255,0.3); transition: background 200ms ease, box-shadow 200ms ease; }
.btn-primary:hover { background: linear-gradient(180deg, #6d4fc7, #8d6eff); box-shadow: 0 12px 30px rgba(124,92,255,0.4); }
.btn-primary .icon-img { filter: brightness(0) invert(1); }
.btn-outline { color: #e6d9ff; border: 1px solid rgba(156,136,255,0.35); background: linear-gradient(180deg, rgba(107,71,255,0.12), rgba(107,71,255,0.05)); }
.btn-ghost { color: var(--text); background: transparent; border: 1px solid rgba(255,255,255,0.1); }
.btn:hover { --btn-translate-y: -1px; }

/* Click press feedback */
.btn:active { transform: translateY(0) scale(0.96); transition-duration: 70ms; }
@keyframes btn-bounce {
  0% { transform: translateY(var(--btn-translate-y)) scale(0.96); }
  60% { transform: translateY(var(--btn-translate-y)) scale(1.06); }
  100% { transform: translateY(var(--btn-translate-y)) scale(1); }
}
.btn.is-bouncing { animation: btn-bounce 220ms cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Language selector */
.lang-select { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); background: transparent; border: none; padding: 10px 14px; border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 500; line-height: 1; position: relative; }
.lang-btn .flag { width: 22px; height: 17px; object-fit: contain; display: inline-block; }
.lang-btn i { color: var(--muted); }
.lang-btn .lang-arrow { width: 14px; height: 14px; object-fit: contain; filter: brightness(0) invert(1); transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1); flex-shrink: 0; pointer-events: none; }
.lang-btn .lang-arrow-down { opacity: 1; transform: rotate(0deg) scale(1); display: inline-block; }
.lang-btn .lang-arrow-left { opacity: 0; transform: rotate(-90deg) scale(0.8); position: absolute; right: 14px; top: 50%; margin-top: -7px; }
.lang-btn[aria-expanded="true"] .lang-arrow-down { opacity: 0; transform: rotate(90deg) scale(0.8); }
.lang-btn[aria-expanded="true"] .lang-arrow-left { opacity: 1; transform: rotate(0deg) scale(1); }
.lang-menu { position: absolute; top: calc(100% + 6px); left: 0; list-style: none; margin: 0; padding: 6px; background: rgba(10, 14, 22, 0.95); backdrop-filter: saturate(120%) blur(6px); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; display: none; min-width: 120px; box-shadow: 0 10px 30px rgba(0,0,0,0.45); }
.lang-menu[aria-hidden="false"] { display: block; }
.lang-menu li { padding: 6px 8px; cursor: pointer; color: var(--muted); border-radius: 6px; display: flex; align-items: center; gap: 8px; font-size: 14px; }
.lang-menu li:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.lang-menu li .flag { width: 20px; height: 16px; object-fit: contain; display: inline-block; flex-shrink: 0; }

/* Hero */
.hero { position: relative; min-height: clamp(560px, 72vh, 840px); overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(2,5,12,0.6), rgba(2,5,12,0.8)), var(--hero-image);
  background-size: cover; background-position: 60% center;
  filter: saturate(110%) contrast(105%);
}
#stars { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero::after {
  content: "";
  position: absolute; inset: -40% -20% auto -20%; height: 120%;
  background: radial-gradient(600px 300px at 78% 35%, rgba(138,102,255,0.35), transparent 60%),
              radial-gradient(500px 280px at 90% 70%, rgba(124,92,255,0.35), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2; padding: 120px 0 140px; max-width: 640px; transform: translate(-220px, 160px);
  margin: 0 auto;
}
.hero-content h1 { font-size: clamp(42px, 5vw, 64px); margin: 0 0 14px; letter-spacing: 0.3px; text-shadow: 0 8px 30px rgba(120,80,255,0.25); }
.hero-content p { color: var(--muted); font-size: 18px; line-height: 1.7; margin: 0 0 24px; }
.cta-row { display: flex; gap: 12px; align-items: center; }

/* Features */
.features { padding: 56px 0 80px; background: linear-gradient(180deg, rgba(10,14,22,0.6), rgba(10,14,22,0)); }
.features-title { font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin: 0 0 12px; text-align: center; color: var(--text); }
.features-description { font-size: 18px; color: var(--muted); text-align: center; margin: 0 0 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature { background: var(--glass); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 18px; backdrop-filter: blur(6px) saturate(120%); box-shadow: 0 20px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.03); }
.feature i { color: #b19eff; font-size: 20px; }
.feature h3 { margin: 0 0 6px; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.feature-icon { width: 18px; height: 18px; flex-shrink: 0; filter: brightness(0) invert(1); vertical-align: middle; }
.feature p { margin: 0; color: var(--muted); line-height: 1.6; }

/* Video Review */
.video-review { padding: 56px 0 80px; }
.video-review-title { font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin: 0 0 12px; text-align: center; color: var(--text); }
.video-review-description { font-size: 18px; color: var(--muted); text-align: center; margin: 0 0 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.video-wrapper { max-width: 1000px; margin: 0 auto; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Footer */
.site-footer { padding: 48px 0 24px; color: var(--muted); background: #090d14; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-content { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-section { display: flex; flex-direction: column; gap: 12px; }
.footer-brand { margin: 0; font-size: 18px; font-weight: 700; color: var(--text); line-height: 1.2; }
.footer-brand:first-of-type { margin-bottom: -8px; }
.footer-status { margin: 0; font-size: 13px; color: var(--muted); }
.footer-status-indicator { display: inline-flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 5px 10px; margin-top: 8px; width: fit-content; }
.footer-section:first-child { align-items: center; }
.status-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.status-text { font-size: 13px; color: #fff; font-weight: 500; }
.footer-title { margin: 0 0 8px; font-size: 14px; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a, .footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 140ms ease; }
.footer-nav a:hover, .footer-links a:hover { color: var(--text); }
.footer-contact { margin: 0 0 12px; font-size: 14px; color: var(--muted); }
.footer-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.footer-bottom { display: flex; justify-content: flex-end; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-copyright { margin: 0; font-size: 13px; color: var(--muted); opacity: 0.7; }

/* Responsive */
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; gap: 14px; }
  .links { display: flex; gap: 8px; font-size: 14px; }
  .links a { padding: 6px 10px; font-size: 13px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { display: flex; align-items: center; min-height: 70vh; }
  .hero-content { transform: none; padding: 40px 0; text-align: center; max-width: 100%; }
  .hero-content h1 { text-align: center; }
  .hero-content p { text-align: center; }
  .cta-row { justify-content: center; }
  .footer-content { gap: 32px; }
  .footer-bottom { justify-content: center; }
}
@media (max-width: 600px) {
  .nav { gap: 10px; padding: 12px 0; }
  .links { display: flex; flex-direction: row; gap: 6px; align-items: center; flex-wrap: wrap; }
  .links a { padding: 6px 10px; font-size: 12px; }
  .links .icon-img { width: 14px; height: 14px; }
  .brand-name { font-size: 20px; }
  .brand-separator { display: none; }
  .lang-select { margin-left: 0; }
  .cta-row { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .btn { padding: 10px 14px; font-size: 14px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { display: flex; align-items: center; min-height: 60vh; }
  .hero-content { transform: none; padding: 30px 0; text-align: center; max-width: 100%; }
  .hero-content h1 { font-size: clamp(28px, 8vw, 42px); text-align: center; }
  .hero-content p { font-size: 16px; text-align: center; }
  .footer-content { gap: 24px; }
  .footer-bottom { justify-content: center; }
}
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .links { gap: 4px; }
  .links a { padding: 5px 8px; font-size: 11px; }
  .brand-name { font-size: 18px; }
  .hero-content { padding: 40px 0 60px; }
  .hero-content h1 { font-size: 24px; }
  .hero-content p { font-size: 14px; }
  .btn { padding: 8px 12px; font-size: 13px; }
}

/* Pricing Section */
.pricing-section {
  display: none;
  min-height: 100vh;
  padding: 40px 0;
  background: radial-gradient(1200px 800px at 70% 10%, #111a2b 0%, var(--bg) 60%) fixed;
}
.pricing-section.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-close {
  position: fixed;
  top: 80px;
  left: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: all 140ms ease;
  padding: 12px 16px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  z-index: 1001;
  backdrop-filter: blur(6px);
}
.pricing-close .icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  filter: brightness(0) invert(1);
}
.pricing-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-3px);
}
.pricing-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-section h2 {
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin: 0 0 48px;
  color: var(--text);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.pricing-card-bg {
  position: relative;
  height: 140px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(139, 107, 255, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pricing-card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
  filter: blur(1px);
}
.pricing-card-title-bg {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}
.pricing-card-info {
  padding: 14px;
  text-align: center;
}
.pricing-card-name {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.pricing-card-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.pricing-card-price {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}
.pricing-card-discount {
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, transform 140ms ease;
}
.pricing-card-btn:hover {
  background: linear-gradient(180deg, #6d4fc7, #8d6eff);
  transform: translateY(-1px);
}
.pricing-card-btn:active {
  transform: translateY(0);
}
.pricing-card-btn .icon-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block;
  filter: brightness(0) invert(1);
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-section {
    padding: 40px 0;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-section {
    padding: 40px 0;
  }
  .pricing-card-title-bg {
    font-size: 36px;
  }
  .pricing-close {
    top: 70px;
    left: 10px;
    padding: 10px 14px;
  }
}

/* Payment Modal */
.payment-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.payment-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.payment-modal {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: min(900px, 90vw);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-modal-overlay.active .payment-modal {
  transform: scale(1) translateY(0);
}

.payment-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.payment-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.payment-modal-close {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.payment-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.payment-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.payment-methods {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  max-height: calc(90vh - 80px);
  overflow-y: auto;
}

.payment-method {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  aspect-ratio: 1;
  min-height: 90px;
  overflow: hidden;
}

.payment-method-logo {
  flex-shrink: 0;
}

.payment-method:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(124, 92, 255, 0.3);
  transform: translateY(-2px);
}

.payment-method.selected {
  background: rgba(124, 92, 255, 0.1);
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: inset 0 0 0 1px rgba(124, 92, 255, 0.2);
}

.payment-method-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

/* Adjust logo sizes to fill almost the entire card */
.payment-method[data-method="ltc"] .payment-method-logo,
.payment-method[data-method="btc"] .payment-method-logo,
.payment-method[data-method="usdt"] .payment-method-logo {
  width: 75%;
  height: 75%;
  max-width: 65px;
  max-height: 65px;
  object-fit: contain;
}

.payment-method[data-method="eth"] .payment-method-logo {
  width: 80%;
  height: 80%;
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}

.payment-method[data-method="blik"] .payment-method-logo,
.payment-method[data-method="psc"] .payment-method-logo {
  width: 85%;
  height: 75%;
  max-width: 90px;
  max-height: 50px;
  object-fit: contain;
}


.payment-order {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.payment-order-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.payment-order-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-order-label {
  font-size: 14px;
  color: var(--muted);
}

.payment-order-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.payment-continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-selected-method {
  text-align: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  min-height: 20px;
}

.payment-continue-btn:hover {
  background: linear-gradient(180deg, #6d4fc7, #8d6eff);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(124, 92, 255, 0.3);
}

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

.payment-continue-btn .icon-img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.payment-cancel-btn {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  margin-top: -10px;
}

.payment-cancel-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .payment-modal-content {
    grid-template-columns: 1fr;
  }
  .payment-methods {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 400px;
    padding: 16px;
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .payment-method {
    padding: 12px 6px;
    min-height: 210px;
    aspect-ratio: 1;
    max-width: 300px;
    margin: 0 auto;
  }
  .payment-method.selected {
    border-width: 2px;
    background: rgba(124, 92, 255, 0.1);
  }
  .payment-method[data-method="ltc"] .payment-method-logo,
  .payment-method[data-method="btc"] .payment-method-logo,
  .payment-method[data-method="usdt"] .payment-method-logo,
  .payment-method[data-method="eth"] .payment-method-logo {
    width: 100%;
    height: 100%;
    max-width: 186px;
    max-height: 186px;
    object-fit: contain;
  }
  .payment-method[data-method="blik"] .payment-method-logo,
  .payment-method[data-method="psc"] .payment-method-logo {
    width: 100%;
    height: 85%;
    max-width: 186px;
    max-height: 156px;
    object-fit: contain;
  }
}


