:root {
  --bg: #070b11;
  --panel: rgba(11, 16, 24, 0.82);
  --panel-solid: #0d131d;
  --line: rgba(130, 170, 255, 0.16);
  --text: #f4f7fb;
  --muted: #9daab9;
  --green: #67f5a4;
  --cyan: #53c8ff;
  --blue: #4169ff;
  --danger: #ff6b7d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(65, 105, 255, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(83, 200, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #05080d 0%, #091019 34%, #05080d 100%);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.shop-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.shop-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 10, 17, 0.72);
  border-bottom: 1px solid rgba(83, 200, 255, 0.08);
}

.shop-nav-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(83, 200, 255, 0.2), rgba(103, 245, 164, 0.2));
  border: 1px solid rgba(103, 245, 164, 0.22);
  font-family: "Orbitron", sans-serif;
  color: var(--green);
  font-weight: 800;
}

.brand-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: #d7e1ec;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-link:hover {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #33d6ad);
  color: #07110e;
  box-shadow: 0 18px 40px rgba(103, 245, 164, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(83, 200, 255, 0.16);
}

.btn-paypal {
  background: linear-gradient(135deg, #0b5bd3, #179bd7);
  color: white;
}

.btn-discord {
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(88, 101, 242, 0.22);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.hero-card,
.glass-panel,
.package-card,
.faq-card,
.result-card {
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.9), rgba(9, 13, 21, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(103, 245, 164, 0.18), transparent 65%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(83, 200, 255, 0.08);
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero h1,
.result-card h1,
.faq-card h1 {
  margin: 20px 0 12px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 1.05;
}

.hero p,
.result-card p,
.faq-card p,
.meta-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats,
.meta-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-box,
.meta-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value,
.meta-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.stat-label,
.meta-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.payment-rail {
  padding: 30px;
  display: grid;
  gap: 18px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.purchase-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.purchase-form {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-label {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.text-input {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(83, 200, 255, 0.18);
  background: rgba(9, 13, 21, 0.92);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  font-size: 1rem;
}

.text-input:focus {
  outline: none;
  border-color: rgba(103, 245, 164, 0.55);
  box-shadow: 0 0 0 4px rgba(103, 245, 164, 0.08);
}

.help-copy {
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.5;
}

.identity-card {
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.identity-main {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.identity-avatar {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.identity-avatar.placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(83, 200, 255, 0.22), rgba(88, 101, 242, 0.2));
  color: var(--text);
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
}

.identity-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.identity-copy {
  color: var(--muted);
}

.method-pill-group,
.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.method-pill,
.badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #eef5ff;
  font-weight: 700;
}

.section {
  padding: 28px 0 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-title {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
}

.packages-grid,
.info-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.packages-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border-color: rgba(103, 245, 164, 0.38);
  transform: translateY(-8px);
}

.featured-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(103, 245, 164, 0.12);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

.package-price {
  margin: 18px 0 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 2.3rem;
}

.package-coins {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
}

.package-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.info-card,
.faq-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 240px;
  margin-top: 14px;
}

.flash {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.flash.error {
  border-color: rgba(255, 107, 125, 0.26);
  color: #ffd2d8;
}

.flash.info {
  border-color: rgba(83, 200, 255, 0.22);
  color: #c8f0ff;
}

.result-status {
  margin-top: 22px;
}

.result-wrap {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 30px 20px;
}

.result-card,
.faq-card {
  width: min(760px, 100%);
  padding: 36px;
}

.result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-success {
  color: var(--green);
}

.status-pending {
  color: #ffd166;
}

.status-danger {
  color: #ff9eaa;
}

.result-info-grid {
  margin-top: 18px;
}

.shop-footer {
  padding: 36px 0 60px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero-grid,
  .checkout-grid,
  .purchase-methods,
  .packages-grid,
  .info-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .shop-nav-inner,
  .hero-grid,
  .checkout-grid,
  .purchase-methods,
  .packages-grid,
  .info-grid,
  .faq-grid,
  .hero-stats,
  .meta-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .shop-nav-inner {
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-card,
  .payment-rail,
  .result-card,
  .faq-card {
    padding: 24px;
  }
}
