/* Get TLRPG Page Styles */
.get-tlrpg-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #0a0a0f 100%);
  padding: 0;
  overflow-x: hidden;
}

/* Hero Section */
.tlrpg-hero {
  position: relative;
  padding: 4rem 2rem 3rem;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-icon {
  font-size: 1.2em;
}

/* TLRPG token icon in hero - small (legacy) */
.hero-token-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* TLRPG token icon in hero - large, centered above text */
.hero-token-icon-large {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.3);
  animation: heroIconPulse 3s ease-in-out infinite;
}

@keyframes heroIconPulse {
  0%, 100% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.7), 0 0 100px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
  }
}

.gradient-text {
  background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================================
   PACKAGE TIERS SECTION - Bronze Bonus Packages
   ============================================================================ */

.package-tiers-section {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.package-tiers-section .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  flex-wrap: wrap;
}

.package-tiers-section .title-icon {
  font-size: 1.5em;
}

.package-tiers-section .title-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 0.5em;
  padding: 0.4em 0.8em;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-tiers-section .section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.package-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
  .package-tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .package-tiers-grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  position: relative;
  background: linear-gradient(145deg, rgba(30, 30, 50, 0.9) 0%, rgba(20, 20, 35, 0.95) 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
}

.package-card:hover::before {
  opacity: 1;
}

.package-card.selected {
  border-color: #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 0 30px rgba(255, 215, 0, 0.05);
}

/* Tier-specific colors */
.package-card.tier-1 { border-color: rgba(156, 163, 175, 0.3); }
.package-card.tier-2 { border-color: rgba(205, 127, 50, 0.3); }
.package-card.tier-3 { border-color: rgba(192, 192, 192, 0.3); }
.package-card.tier-4 { border-color: rgba(255, 215, 0, 0.3); }
.package-card.tier-5 { border-color: rgba(229, 228, 226, 0.3); }
.package-card.tier-6 { border-color: rgba(185, 242, 255, 0.3); }
.package-card.tier-7 { border-color: rgba(255, 165, 0, 0.3); }
.package-card.tier-8 { border-color: rgba(148, 0, 211, 0.3); }

.package-card.tier-1:hover, .package-card.tier-1.selected { border-color: #9ca3af; box-shadow: 0 0 25px rgba(156, 163, 175, 0.3); }
.package-card.tier-2:hover, .package-card.tier-2.selected { border-color: #cd7f32; box-shadow: 0 0 25px rgba(205, 127, 50, 0.3); }
.package-card.tier-3:hover, .package-card.tier-3.selected { border-color: #c0c0c0; box-shadow: 0 0 25px rgba(192, 192, 192, 0.3); }
.package-card.tier-4:hover, .package-card.tier-4.selected { border-color: #ffd700; box-shadow: 0 0 25px rgba(255, 215, 0, 0.3); }
.package-card.tier-5:hover, .package-card.tier-5.selected { border-color: #e5e4e2; box-shadow: 0 0 25px rgba(229, 228, 226, 0.3); }
.package-card.tier-6:hover, .package-card.tier-6.selected { border-color: #b9f2ff; box-shadow: 0 0 25px rgba(185, 242, 255, 0.4); }
.package-card.tier-7:hover, .package-card.tier-7.selected { border-color: #ffa500; box-shadow: 0 0 25px rgba(255, 165, 0, 0.4); }
.package-card.tier-8:hover, .package-card.tier-8.selected { border-color: #9400d3; box-shadow: 0 0 30px rgba(148, 0, 211, 0.4), 0 0 60px rgba(148, 0, 211, 0.2); }

.package-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, rgba(100, 100, 120, 0.9) 0%, rgba(70, 70, 90, 0.9) 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 0 14px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-badge.popular {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  animation: badgeGlow 2s ease-in-out infinite;
}

.package-badge.best {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  animation: badgeGlow 2s ease-in-out infinite;
}

.package-badge.legend {
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.package-tier {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.package-coins {
  text-align: center;
  margin-bottom: 1rem;
}

.coins-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.coins-icon {
  font-size: 1.5rem;
  animation: coinBounce 2s ease-in-out infinite;
}

@keyframes coinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.coins-amount {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f7a00f 0%, #ffd700 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coins-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.value-rate {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.value-save {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}

.package-visual {
  text-align: center;
  font-size: 1rem;
  letter-spacing: 2px;
  opacity: 0.7;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-visual.treasury {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  height: auto;
}

.treasury-icon {
  font-size: 1.5rem;
  animation: treasuryPulse 3s ease-in-out infinite;
}

@keyframes treasuryPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(148, 0, 211, 0.5)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(148, 0, 211, 0.8)); }
}

.treasury-label {
  font-size: 0.65rem;
  color: rgba(148, 0, 211, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.tier-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Price Section */
.price-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .price-section {
    grid-template-columns: 1fr;
  }
  .price-section .buy-card {
    order: -1;
  }
}

/* Price Card */
.price-card {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  padding: 2rem;
}

.price-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.price-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-live-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #10b981;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-value .currency {
  font-size: 2rem;
  color: #10b981;
  font-weight: 600;
}

.price-value .amount {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 12px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.stat-value.fire {
  color: #ef4444;
}

/* Buy Card */
.buy-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
}

.buy-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Amount Slider Styles */
.amount-slider-container {
  margin-bottom: 1.5rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.slider-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.slider-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #10b981;
}

.slider-value-input {
  display: flex;
  align-items: center;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.4);
  border-radius: 12px;
  padding: 0.25rem 0.75rem;
  transition: border-color 0.2s;
}

.slider-value-input:focus-within {
  border-color: #10b981;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
}

.currency-prefix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
  margin-right: 0.25rem;
  pointer-events: none;
}

.amount-input-field {
  width: 6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Orbitron', sans-serif;
  -moz-appearance: textfield;
  text-align: right;
}

.amount-input-field::-webkit-outer-spin-button,
.amount-input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.slider-wrapper {
  margin-bottom: 1rem;
}

.amount-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}

.amount-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
  transition: all 0.2s;
}

.amount-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
}

.amount-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.slider-markers {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.card-limit-marker {
  color: #f59e0b;
  font-weight: 600;
}

/* Payment Method Indicator */
.payment-method-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.payment-method-indicator.card {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.payment-method-indicator.crypto {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}

.method-icon {
  font-size: 1.2rem;
}

/* Crypto Payment Section */
.crypto-payment-section {
  text-align: center;
}

.crypto-coming-soon {
  background: rgba(245, 158, 11, 0.1);
  border: 1px dashed rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.crypto-coming-soon p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.crypto-note {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.85rem !important;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: #5865F2;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.discord-btn:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.discord-icon {
  width: 20px;
  height: 20px;
}

.amount-selector {
  margin-bottom: 1.5rem;
}

.quick-amounts {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quick-btn {
  flex: 1;
  min-width: 60px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-btn:hover,
.quick-btn.active {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10b981;
  color: #10b981;
}

.amount-input {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  text-align: center;
}

.amount-input:focus {
  outline: none;
  border-color: #10b981;
}

.buy-summary {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.summary-row.highlight {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  padding-top: 1rem;
  color: #10b981;
  font-weight: 600;
  font-size: 1.1rem;
}

.summary-row .value {
  font-weight: 600;
  color: white;
}

.summary-row.highlight .value {
  color: #10b981;
}

.buy-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.2s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.buy-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(16, 185, 129, 0.45),
    0 0 16px rgba(16, 185, 129, 0.3);
}

.buy-btn:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.buy-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.stripe-security-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.stripe-security-note .shield-icon {
  font-size: 1.5rem;
  filter: hue-rotate(90deg) saturate(1.5);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.stripe-security-note .security-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stripe-note {
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  margin: 0;
}

.stripe-detail {
  text-align: left;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

/* Info Section */
.info-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.title-icon {
  font-size: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.3);
}

.info-card.highlight {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.info-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Roadmap Section */
.roadmap-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.roadmap-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.roadmap-container {
  position: relative;
  padding: 2rem 0;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, 
    #10b981 0%, 
    rgba(16, 185, 129, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: translateX(-50%);
  border-radius: 2px;
}

.milestone {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  opacity: 0.5;
  transition: all 0.3s;
}

.milestone:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.milestone.reached {
  opacity: 1;
}

.milestone.current {
  opacity: 1;
}

.milestone.current .milestone-marker {
  animation: glow 2s infinite;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.8); }
}

.milestone-marker {
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.2);
  border: 3px solid #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.milestone.reached .milestone-marker {
  background: #10b981;
}

.milestone-icon {
  font-size: 1.5rem;
}

.milestone-content {
  flex: 1;
  padding: 0 2rem;
  max-width: 400px;
}

.milestone-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #10b981;
}

.milestone-label {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.25rem 0;
}

.milestone-remaining {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}

.milestone-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .roadmap-line {
    left: 30px;
  }
  
  .milestone,
  .milestone:nth-child(odd) {
    flex-direction: row;
    text-align: left;
  }
  
  .milestone-marker {
    width: 50px;
    height: 50px;
  }
  
  .milestone-content {
    padding: 0 0 0 1.5rem;
  }
}

/* Mechanics Section */
.mechanics-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
}

.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.mechanic-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
}

.mechanic-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mechanic-icon {
  font-size: 1.5rem;
}

.mechanic-title {
  font-weight: 600;
}

.burn-rate {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mechanic-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.cta-btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

/* ========================================
   PROFIT CALCULATOR SECTION
   ======================================== */
.calculator-section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.calculator-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.calculator-container {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 2rem;
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .calculator-inputs {
    grid-template-columns: 1fr;
  }
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-input-group label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.calc-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: white;
  width: 100%;
  transition: all 0.2s;
}

.calc-input:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.calc-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.calc-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.calc-preset-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s;
}

.calc-preset-btn:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
  color: white;
}

.calc-preset-btn.active {
  background: rgba(16, 185, 129, 0.3);
  border-color: rgba(16, 185, 129, 0.6);
  color: #10b981;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) {
  .calculator-results {
    grid-template-columns: 1fr;
  }
}

.calc-result-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-result-card.highlight {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

.calc-result-card.profit {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
  border-color: rgba(34, 197, 94, 0.3);
}

.calc-result-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-result-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.calc-result-card.highlight .calc-result-value {
  color: #10b981;
}

.calc-result-card.profit .calc-result-value {
  color: #22c55e;
}

.calc-result-percent {
  font-size: 0.9rem;
  font-weight: 600;
}

.calc-result-percent.positive {
  color: #22c55e;
}

.calc-result-percent.negative {
  color: #ef4444;
}

/* ============================================================================
   NEW: Hero Social Proof & Personalization
   ============================================================================ */

.personalized-title {
  display: block;
  font-size: 1em;
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-social-proof {
  margin-top: 1.5rem;
}

.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #10b981;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* ============================================================================
   NEW: Bronze Bonus Display
   ============================================================================ */

.summary-row.bronze-bonus {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(205, 127, 50, 0.05) 100%);
  border: 1px solid rgba(205, 127, 50, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
}

.summary-row.bronze-bonus span:first-child {
  color: #cd7f32;
  font-weight: 600;
}

.bonus-value {
  color: #fbbf24 !important;
  font-weight: 700 !important;
  font-size: 1.1em;
}

.next-tier-nudge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px dashed rgba(251, 191, 36, 0.5);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  animation: nudgePulse 2s ease-in-out infinite;
}

@keyframes nudgePulse {
  0%, 100% { border-color: rgba(251, 191, 36, 0.5); }
  50% { border-color: rgba(251, 191, 36, 0.9); }
}

.nudge-icon {
  font-size: 1.2em;
}

.nudge-text {
  color: rgba(255, 255, 255, 0.95);
}

.nudge-text strong {
  color: #fbbf24;
}

/* Tier Savings Badge */
.tier-savings-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.savings-icon {
  font-size: 1.2em;
}

.savings-text {
  color: rgba(255, 255, 255, 0.95);
}

.savings-text strong {
  color: #10b981;
}

/* ============================================================================
   TIER INFO BOX - Combined savings and next tier nudge
   ============================================================================ */

.tier-info-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tier-current,
.tier-next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.tier-icon {
  font-size: 1.1em;
  flex-shrink: 0;
}

.tier-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.tier-text strong {
  color: #10b981;
}

.tier-current {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-info-box .tier-current:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.tier-next {
  opacity: 0.9;
}

.tier-next .tier-text strong {
  color: #fbbf24;
}

/* Legacy styles - keep for backward compatibility */
.next-tier-nudge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  animation: nudgePulse 2s ease-in-out infinite;
}

@keyframes nudgePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(251, 191, 36, 0); }
  50% { box-shadow: 0 0 15px rgba(251, 191, 36, 0.2); }
}

.tier-savings-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* ============================================================================
   PURCHASE SUCCESS POPUP — Redesigned to match game design system
   ============================================================================ */

/* --- Overlay --- */
.ps-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 3, 6, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: psOverlayIn 0.25s ease-out;
}
@keyframes psOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Modal Card --- */
.ps-modal {
  position: relative;
  width: 92%;
  max-width: 420px;
  background: linear-gradient(180deg, rgba(20, 24, 35, 0.98) 0%, rgba(12, 15, 22, 0.99) 100%);
  border: 1px solid rgba(247, 160, 15, 0.25);
  border-radius: 24px;
  box-shadow:
    0 0 50px rgba(247, 160, 15, 0.12),
    0 24px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: psModalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.ps-modal.ps-crypto {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow:
    0 0 50px rgba(139, 92, 246, 0.15),
    0 24px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
@keyframes psModalIn {
  from { opacity: 0; transform: scale(0.85) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Glow ring (decorative, behind icon) --- */
.ps-glow-ring {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 160, 15, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.ps-crypto .ps-glow-ring {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14) 0%, transparent 70%);
}

/* --- Close button --- */
.ps-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.ps-close:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* --- Body --- */
.ps-body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.75rem 1.75rem;
}

/* --- Icon --- */
.ps-icon-wrap {
  margin-bottom: 0.5rem;
}
.ps-icon {
  font-size: 3.4rem;
  display: block;
  animation: psIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ps-crypto .ps-icon {
  animation: psIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), psCryptoGlow 2.2s ease-in-out infinite;
}
@keyframes psIconBounce {
  0%   { transform: scale(0); }
  55%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
@keyframes psCryptoGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.45)); }
  50%      { filter: drop-shadow(0 0 18px rgba(245, 158, 11, 0.55)); }
}

/* --- Title --- */
.ps-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
  margin: 0 0 0.25rem;
  text-shadow: 0 0 18px rgba(247, 160, 15, 0.4);
}
.ps-crypto .ps-title {
  background: linear-gradient(135deg, #a78bfa, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* --- Subtitle --- */
.ps-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.4rem;
  line-height: 1.45;
}

/* --- Main reward big number --- */
.ps-main-reward {
  margin-bottom: 1.25rem;
}
.ps-main-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #22d3ee;
  text-shadow: 0 0 28px rgba(34, 211, 238, 0.35);
  line-height: 1.1;
  animation: psAmountPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s backwards;
}
.ps-crypto .ps-main-amount {
  color: #a78bfa;
  text-shadow: 0 0 28px rgba(139, 92, 246, 0.35);
}
.ps-main-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.15rem;
}
@keyframes psAmountPop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* --- Reward rows --- */
.ps-rewards {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}
.ps-reward-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  animation: psRowSlide 0.35s ease-out backwards;
}
.ps-reward-row:nth-child(1) { animation-delay: 0.22s; }
.ps-reward-row:nth-child(2) { animation-delay: 0.36s; }
@keyframes psRowSlide {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Bronze row */
.ps-reward-row.ps-bronze {
  background: linear-gradient(135deg, rgba(247, 160, 15, 0.12) 0%, rgba(234, 88, 12, 0.06) 100%);
  border-color: rgba(247, 160, 15, 0.25);
}
/* Crypto bronze bonus highlight */
.ps-reward-row.ps-crypto-bonus {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(139, 92, 246, 0.12) 100%);
  border-color: rgba(245, 158, 11, 0.4);
  animation: psCryptoBronze 1.8s ease-in-out infinite;
}
@keyframes psCryptoBronze {
  0%, 100% { box-shadow: 0 0 0 transparent; }
  50%      { box-shadow: 0 0 18px rgba(245, 158, 11, 0.25), 0 0 30px rgba(139, 92, 246, 0.15); }
}

/* Paid row */
.ps-reward-row.ps-paid {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.ps-reward-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.ps-reward-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ps-reward-name {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1px;
}
.ps-reward-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.ps-reward-row.ps-bronze .ps-reward-val {
  color: #f7a00f;
  text-shadow: 0 0 8px rgba(247, 160, 15, 0.4);
}

/* Tag badge */
.ps-tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #fff;
  flex-shrink: 0;
  animation: psTagPop 0.4s ease-out 0.5s backwards;
}
.ps-crypto-bonus .ps-tag {
  background: linear-gradient(135deg, #8B5CF6, #f59e0b);
}
@keyframes psTagPop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* --- CTA button --- */
.ps-cta {
  width: 100%;
  padding: 0.85rem 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0f;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(247, 160, 15, 0.35);
}
.ps-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(247, 160, 15, 0.5);
}
.ps-crypto .ps-cta {
  background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 50%, #fbbf24 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}
.ps-crypto .ps-cta:hover {
  box-shadow: 0 6px 28px rgba(139, 92, 246, 0.5);
}

/* --- Hint text --- */
.ps-hint {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* --- Confetti --- */
.ps-confetti-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ps-confetti-piece {
  position: absolute;
  top: -12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: psConfettiFall 3.2s ease-out forwards;
}
.ps-confetti-piece.ps-confetti-lg {
  width: 12px;
  height: 5px;
  border-radius: 2px;
}
@keyframes psConfettiFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(520px) rotate(720deg); opacity: 0; }
}

/* --- Mobile tweaks --- */
@media (max-width: 480px) {
  .ps-body { padding: 1.5rem 1.25rem 1.25rem; }
  .ps-main-amount { font-size: 2.1rem; }
  .ps-title { font-size: 1.05rem; }
}

/* ========================================
   Payment Method Tabs
   ======================================== */

.payment-method-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 4px;
}

.payment-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
}

.payment-tab:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

.payment-tab.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.payment-tab.crypto-tab.active {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.tab-icon {
  font-size: 1.2rem;
}

.tab-label {
  font-size: 0.85rem;
}

.tab-bonus-badge {
  position: absolute;
  top: -8px;
  right: -4px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  white-space: nowrap;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Crypto Buy Button */
.buy-btn.crypto-buy-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.buy-btn.crypto-buy-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 6px 30px rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

/* Mobile crypto polling status */
.crypto-mobile-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #10b981;
  animation: fadeIn 0.3s ease;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bronze bonus nudge for card users */
.crypto-bronze-nudge {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.crypto-bronze-nudge:hover {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.15));
}

.crypto-bronze-nudge strong {
  color: #f59e0b;
}

/* Responsive adjustments for payment tabs */
@media (max-width: 480px) {
  .payment-tab {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.6rem 0.5rem;
  }
  
  .tab-label {
    font-size: 0.75rem;
  }
  
  .tab-bonus-badge {
    font-size: 0.6rem;
    top: -6px;
    right: -2px;
  }
}
