:root {
  --bg-base: #08080a;
  --bg-card: #101014;
  --bg-card-hover: #16161c;
  --bg-input: #0c0c0e;
  
  --border-subtle: #1e1e26;
  --border-glow: #2d2d3a;

  --accent-purple: #8b5cf6;
  --accent-purple-glow: rgba(139, 92, 246, 0.35);

  --roblox-red: #ef4444;
  --roblox-glow: rgba(239, 68, 68, 0.25);
  --roblox-bg: rgba(239, 68, 68, 0.08);

  --tiktok-cyan: #00f2fe;
  --tiktok-pink: #fe2c55;
  --tiktok-glow: rgba(0, 242, 254, 0.25);
  --tiktok-bg: rgba(0, 242, 254, 0.08);

  --text-pure: #ffffff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --success-green: #10b981;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Background Gradients & Grid */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.12);
  top: -100px;
  left: 20%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 242, 254, 0.08);
  bottom: 10%;
  right: 10%;
}

/* Top Announcement */
.top-announcement {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.15), rgba(0, 242, 254, 0.15));
  border-bottom: 1px solid var(--border-subtle);
}

.announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #e2e8f0;
}

.pulse-spark {
  color: #fbbf24;
  animation: sparkPulse 1.5s infinite;
}

@keyframes sparkPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-badge-glow {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 20px var(--accent-purple-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-pure);
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-green);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.8px;
}

.btn-discord {
  background: #5865F2;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-1px);
}

/* Main Layout */
.main-layout {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* Store Hero */
.store-hero {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success-green);
  box-shadow: 0 0 8px var(--success-green);
}

.stat-star {
  color: #fbbf24;
}

.store-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text-pure);
  margin-bottom: 16px;
}

.accent-gradient {
  background: linear-gradient(135deg, #a78bfa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.store-subheadline {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* 2 Products Duo Showcase */
.showcase-section {
  margin-bottom: 60px;
}

.products-duo-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Premium Product Card */
.duo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.duo-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-hover-border, var(--accent-purple));
  box-shadow: 0 20px 40px var(--card-glow, rgba(0, 0, 0, 0.4));
}

.duo-card.roblox-theme {
  --card-hover-border: #ef4444;
  --card-glow: rgba(239, 68, 68, 0.15);
}

.duo-card.tiktok-theme {
  --card-hover-border: #00f2fe;
  --card-glow: rgba(0, 242, 254, 0.15);
}

/* Product Card Banner / Visual */
.duo-banner {
  position: relative;
  height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.roblox-banner-bg {
  background: radial-gradient(circle at center, rgba(239, 68, 68, 0.25) 0%, #0d0d11 75%);
}

.tiktok-banner-bg {
  background: radial-gradient(circle at center, rgba(0, 242, 254, 0.22) 0%, rgba(254, 44, 85, 0.15) 50%, #0d0d11 80%);
}

/* Center Brand PNG / SVG */
.brand-visual-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.duo-card:hover .brand-visual-center {
  transform: scale(1.08);
}

.brand-svg-logo {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.roblox-badge-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
}

.tiktok-badge-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

.duo-top-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.tag-instant {
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.4px;
}

.tag-tier {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Duo Content Body */
.duo-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.duo-category {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.roblox-cat-color { color: var(--roblox-red); }
.tiktok-cat-color { color: var(--tiktok-cyan); }

.duo-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 12px;
  line-height: 1.3;
}

.duo-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Feature Checkpoints */
.duo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.duo-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.duo-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--success-green);
}

/* Card Bottom Footer */
.duo-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.duo-pricing {
  display: flex;
  flex-direction: column;
}

.stock-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success-green);
}

.price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-pure);
}

/* Primary Purchase Buttons */
.btn-buy-duo {
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: inherit;
  color: #fff;
}

.btn-roblox {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.35);
}

.btn-roblox:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

.btn-tiktok {
  background: linear-gradient(135deg, #00f2fe, #fe2c55);
  box-shadow: 0 4px 16px rgba(0, 242, 254, 0.35);
}

.btn-tiktok:hover {
  background: linear-gradient(135deg, #00d2de, #e0264b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
}

/* Trust Grid Below */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-purple { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); }
.icon-green { background: rgba(16, 185, 129, 0.15); color: var(--success-green); }
.icon-blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }

.trust-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.trust-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Modal Overlay & Window */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-window {
  background: #111116;
  border: 1px solid var(--border-glow);
  border-radius: 24px;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  animation: modalAppear 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalAppear {
  0% { transform: scale(0.96) translateY(10px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-top {
  padding: 22px 26px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.015);
}

.modal-prod-preview {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-logo-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #09090b;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-badge-cat {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent-purple);
  letter-spacing: 0.6px;
}

.modal-prod-preview h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.modal-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-unit-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--success-green);
}

.modal-stock-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #fff;
}

.modal-content-scroll {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(85vh - 120px);
  overflow-y: auto;
}

.input-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-field-group label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--text-dim);
}

.input-field-group label .req {
  color: var(--roblox-red);
}

.input-field-group input[type="email"] {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: all 0.2s;
}

.input-field-group input[type="email"]:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.input-tip {
  font-size: 0.74rem;
  color: var(--text-dim);
}

/* Stepper */
.stepper-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  padding: 6px 16px;
  border-radius: 12px;
  width: fit-content;
}

.step-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
}

.step-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 1.05rem;
}

/* Gateway List */
.gateway-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gateway-item {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.gateway-item input[type="radio"] {
  accent-color: var(--accent-purple);
  width: 16px;
  height: 16px;
}

.gateway-item.active {
  border-color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.08);
}

.gw-icon {
  font-size: 20px;
}

.gw-details strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
}

.gw-details span {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* Total Bar */
.checkout-total-banner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-total-banner span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.checkout-total-banner strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-pure);
}

.btn-purchase-submit {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px var(--accent-purple-glow);
  font-family: inherit;
}

.btn-purchase-submit:hover {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  transform: translateY(-1px);
}

/* Step 2 Delivery Screen */
.delivery-hero {
  text-align: center;
  padding: 24px 24px 10px;
}

.check-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-green);
  border: 2px solid var(--success-green);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.delivery-hero h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.delivery-hero p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.credentials-sheet {
  margin: 16px 24px;
  background: #09090b;
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  overflow: hidden;
}

.sheet-bar {
  background: #14141a;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 800;
  color: #a5b4fc;
}

.btn-copy-sheet {
  background: var(--accent-purple);
  color: #fff;
  border: none;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.sheet-code {
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #34d399;
  white-space: pre-wrap;
  word-break: break-all;
}

.security-alert {
  margin: 0 24px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.78rem;
  color: #fde68a;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.security-alert svg {
  color: #fbbf24;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-footer-done {
  padding: 0 24px 24px;
}

.btn-done {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
}

.btn-done:hover {
  background: var(--bg-card-hover);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1e1b4b;
  color: #c7d2fe;
  border: 1px solid var(--accent-purple);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}

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

.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
  .products-duo-container {
    grid-template-columns: 1fr;
  }
  .store-headline {
    font-size: 2.3rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
