@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #08090d;
  --bg-card: #0f1117;
  --bg-card-hover: #141620;
  --border: #1a1d28;
  --border-lit: #282c3a;
  --accent: #e8368c;
  --accent-soft: rgba(232, 54, 140, 0.08);
  --accent-glow: rgba(232, 54, 140, 0.15);
  --text: #d8dae2;
  --text-mid: #8b8fa0;
  --text-low: #4e5264;
  --green: #2dd4a0;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  background: rgba(8, 9, 13, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(26, 29, 40, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.brand {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.brand-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 5px;
  display: grid;
  place-items: center;
}

.brand-icon svg {
  width: 14px;
  height: 14px;
}

.nav-center {
  display: flex;
  gap: 28px;
}

.nav-center a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.nav-center a:hover { color: var(--text); }

.nav-end {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

.btn-sm { padding: 7px 14px; }
.btn-md { padding: 10px 20px; }
.btn-lg { padding: 12px 28px; font-size: 0.88rem; }

.btn-outline {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--border-lit);
  color: var(--text);
}

.btn-fill {
  background: var(--accent);
  color: #fff;
}
.btn-fill:hover { filter: brightness(1.12); }

.btn-buy {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 100%;
  padding: 10px 16px;
}
.btn-buy:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.btn-buy.pop {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-buy.pop:hover { filter: brightness(1.15); }

.hero-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 75% 30%, rgba(232, 54, 140, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 15% 75%, rgba(40, 40, 100, 0.07) 0%, transparent 60%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding-top: 56px;
}

.hero-text { max-width: 460px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  border: 1px solid rgba(232, 54, 140, 0.15);
  border-radius: 20px;
  padding: 5px 14px 5px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-text h1 .hl { color: var(--accent); }

.hero-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 400px;
}

.hero-actions {
  display: flex;
  gap: 10px;
}

.hero-visual {
  position: relative;
}

.hero-screenshot {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(232, 54, 140, 0.04);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 9px;
}

hr.sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.section {
  padding: 80px 0;
  position: relative;
}

.sh { margin-bottom: 44px; }
.sh.center { text-align: center; }
.sh.center .sh-desc { margin: 0 auto; }

.sh-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent);
  margin-bottom: 8px;
}

.sh-title {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.sh-desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  max-width: 440px;
  line-height: 1.6;
}

.features-master-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
}

.cat-card:hover {
  border-color: var(--border-lit);
  background: var(--bg-card-hover);
}

.cat-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.cat-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.cat-card p {
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.45;
}

.specs-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow-x: auto;
  padding: 8px;
}

.specs-table-wrap table {
  margin-top: 0;
}

.specs-table-wrap th, .specs-table-wrap td {
  padding: 12px 18px;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: border-color 0.2s, color 0.2s;
}

.game-tag:hover {
  border-color: var(--accent);
  color: var(--text);
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.edition-card.pro-card {
  border-color: #c026d3;
  background: linear-gradient(165deg, rgba(192, 38, 211, 0.06) 0%, var(--bg-card) 50%);
}

.edition-card.highlight {
  border-color: var(--accent);
  background: linear-gradient(165deg, rgba(232, 54, 140, 0.06) 0%, var(--bg-card) 50%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.p-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}

.p-card:hover {
  border-color: var(--border-lit);
  background: var(--bg-card-hover);
}

.p-card.featured {
  border-color: var(--accent);
  background: linear-gradient(165deg, rgba(232, 54, 140, 0.04) 0%, var(--bg-card) 50%);
}

.p-badge {
  position: absolute;
  top: -9px;
  left: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.p-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.p-sub {
  font-size: 0.78rem;
  color: var(--text-low);
  margin-bottom: 18px;
}

.p-price {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.p-price .per {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
}

.p-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  flex: 1;
}

.p-list li {
  font-size: 0.82rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--border-lit);
  flex-shrink: 0;
}

.p-card.featured .p-list li::before {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.feat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.f-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  transition: border-color 0.25s;
}

.f-card:hover { border-color: var(--border-lit); }

.f-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.f-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.f-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.faq-col {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--border-lit); }

.faq-q {
  padding: 15px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-q .chevron {
  width: 16px;
  height: 16px;
  stroke: var(--text-low);
  transition: transform 0.2s;
}

.faq-item.open .faq-q .chevron { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 18px 15px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
}

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

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-inner span {
  font-size: 0.78rem;
  color: var(--text-low);
}

.foot-links {
  display: flex;
  gap: 20px;
}

.foot-links a {
  font-size: 0.78rem;
  color: var(--text-low);
  transition: color 0.2s;
}

.foot-links a:hover { color: var(--text-mid); }

@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .editions-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-master-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .features-master-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .nav-center { display: none; }
  .hero-text h1 { font-size: 2rem; }
  .hero-wrap { min-height: auto; padding: 100px 0 60px; }
  .stat-banner-inner { flex-direction: column; gap: 16px; }
}

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 240px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.25rem;
  flex: 1;
}

.admin-nav a {
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.15s;
}

.admin-nav a:hover {
  background: var(--bg-card-hover);
  color: var(--text);
}

.admin-nav a.active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.admin-content {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  background: var(--bg);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.grid { display: grid; gap: 1rem; }
.grid-3x2 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.flex { display: flex; }
.gap-4 { gap: 1rem; }
.mb-4 { margin-bottom: 1rem; }

.stat-card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-low);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}

input, select, textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: #0b0c12;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.82rem;
}

th {
  text-align: left;
  padding: 0.65rem 0.85rem;
  color: var(--text-low);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}

td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(26, 29, 40, 0.4);
  color: var(--text-mid);
}

tr:hover td {
  background: var(--bg-card-hover);
  color: var(--text);
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-active { background: rgba(45, 212, 160, 0.15); color: var(--green); }
.badge-expired { background: rgba(234, 179, 8, 0.15); color: #eab308; }
.badge-banned { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.badge-revoked { background: rgba(107, 114, 128, 0.2); color: #9ca3af; }

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-lit);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s;
  z-index: 999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.product-page-wrap {
  padding-top: 90px;
  padding-bottom: 90px;
}

.product-top-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-media-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-preview-box {
  background: #06070a;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnails-row-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thumb-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-low);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.thumbnails-list {
  display: flex;
  gap: 12px;
}

.thumb-item {
  width: 80px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  cursor: pointer;
  background: #06070a;
  transition: all 0.2s;
  flex-shrink: 0;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.thumb-item:hover img, .thumb-item.active img {
  opacity: 1;
}

.thumb-item.active {
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.edition-toggle-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  background: #06070a;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--border);
  width: fit-content;
}

.edition-btn {
  background: transparent;
  border: none;
  color: var(--text-mid);
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.edition-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.edition-btn.active {
  background: linear-gradient(135deg, #c026d3 0%, #e8368c 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(232, 54, 140, 0.3);
}

.bullet-disabled {
  color: var(--text-low) !important;
  text-decoration: line-through;
}

.bullet-disabled::before {
  background: var(--text-low) !important;
  box-shadow: none !important;
}

.product-info-col {
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.product-badges-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-pill.green {
  background: rgba(45, 212, 160, 0.12);
  color: var(--green);
  border: 1px solid rgba(45, 212, 160, 0.25);
}

.badge-pill.purple {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(232, 54, 140, 0.25);
}

.badge-pill.blue {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.product-price-display {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.qty-and-tier-wrap {
  margin-bottom: 16px;
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  background: #0b0c12;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  height: 38px;
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--text-mid);
  width: 38px;
  height: 100%;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s;
}

.qty-btn:hover {
  background: var(--accent-soft);
  color: #fff;
}

#qty-val {
  padding: 0 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.tier-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.tier-card {
  background: #0d0f16;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.tier-card:hover {
  border-color: var(--border-lit);
  background: #12141e;
}

.tier-card.active {
  background: linear-gradient(135deg, #c026d3 0%, #e8368c 100%);
  border-color: #e8368c;
  box-shadow: 0 4px 20px rgba(232, 54, 140, 0.3);
}

.tier-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.tier-name {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
}

.tier-card.active .tier-name {
  color: #fff;
}

.tier-stock {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-low);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.tier-card.active .tier-stock {
  color: rgba(255, 255, 255, 0.85);
}

.tier-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
}

.product-action-buttons {
  display: flex;
  gap: 12px;
}

.btn-buy-main {
  flex: 1.2;
  background: linear-gradient(135deg, #c026d3 0%, #e8368c 100%);
  color: #fff;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(232, 54, 140, 0.25);
}

.btn-buy-main:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.btn-cart-alt {
  flex: 1;
  background: #11141c;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-cart-alt:hover {
  border-color: var(--border-lit);
  background: #171b26;
  color: #fff;
}

.scroll-indicator-divider {
  display: flex;
  justify-content: center;
  padding: 60px 0 40px;
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid var(--border-lit);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-wheel {
  width: 4px;
  height: 7px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-wheel 1.6s infinite ease-in-out;
}

@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.feature-columns-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-column-card {
  background: #0b0d13;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.feature-col-header {
  margin-bottom: 20px;
  min-height: 90px;
}

.feature-col-header h3 {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.feature-col-header p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.feature-bullets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-bullets-list li {
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-bullets-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(232, 54, 140, 0.6);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  place-items: center;
  z-index: 1000;
  padding: 20px;
}

.modal.show {
  display: grid;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-lit);
  border-radius: 10px;
  width: 100%;
  max-width: 440px;
  padding: 28px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1024px) {
  .feature-columns-wrap { grid-template-columns: repeat(2, 1fr); }
  .product-top-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .feature-columns-wrap { grid-template-columns: 1fr; }
  .tier-select-grid { grid-template-columns: 1fr; }
  .product-action-buttons { flex-direction: column; }
}


