/* ========================================
   GET VIP PAGE - TokenLordsRPG
   Matches main design system
   ======================================== */

/* ========================================
   PAGE LAYOUT
   ======================================== */
.get-vip-page {
  min-height: 100vh;
  background: var(--tl-bg, hsl(220, 10%, 7%));
  padding: 0;
  overflow-x: hidden;
}

/* ========================================
   HERO SECTION
   ======================================== */
.vip-hero {
  position: relative;
  padding: 3.5rem 2rem 2rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247, 160, 15, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(247, 160, 15, 0.15);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(247, 160, 15, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(247, 160, 15, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.vip-hero .hero-title {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  letter-spacing: 0.05em;
}

.vip-hero .hero-icon {
  font-size: 1.1em;
}

.vip-hero .gradient-text {
  background: linear-gradient(135deg, var(--tl-primary, #f7a00f) 0%, var(--tl-accent, #f9b642) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(247, 160, 15, 0.3);
}

.vip-hero .hero-subtitle {
  font-size: 1rem;
  color: var(--tl-text-muted, rgba(255, 255, 255, 0.6));
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Limited Time Ribbon */
.limited-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #50C878 0%, #3cb371 50%, #50C878 100%);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: ribbonPulseGreen 3s ease-in-out infinite;
  z-index: 5;
}

@keyframes ribbonPulseGreen {
  0%, 100% { opacity: 0.85; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.2); }
}

/* Promo Text in Hero */
.vip-hero .promo-text {
  color: #50C878;
  font-size: 0.6em;
  font-weight: 700;
  display: block;
  margin-top: 0.25rem;
}

/* Limited Tag for rows */
.limited-tag {
  background: linear-gradient(90deg, #50C878, #3cb371);
  color: #000;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-left: 0.25rem;
}

/* ========================================
   TIERS SECTION
   ======================================== */
.tiers-section {
  padding: 2rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: stretch;
}

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

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

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

/* ========================================
   TIER CARD
   ======================================== */
.tier-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1),
              border-color 0.2s ease,
              box-shadow 0.2s cubic-bezier(.2,.8,.2,1);
}

.tier-card:hover {
  transform: translateY(-6px);
  border-color: var(--tier-color, hsla(38, 90%, 65%, 0.4));
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 24px color-mix(in srgb, var(--tier-color, hsla(38, 90%, 65%, 1)) 25%, transparent);
}

.tier-card:active {
  transform: translateY(-3px) scale(0.99);
}

.tier-card.popular {
  border-color: var(--tl-primary, #f7a00f);
  background: linear-gradient(145deg, rgba(247, 160, 15, 0.08) 0%, rgba(247, 160, 15, 0.02) 100%);
  box-shadow: 0 0 25px rgba(247, 160, 15, 0.15);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--tl-primary, #f7a00f) 0%, var(--tl-accent, #f9b642) 100%);
  color: #0a0a0f;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tier-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.tier-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.35rem;
}

.tier-name {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tier-color, white);
  letter-spacing: 0.05em;
}

/* ========================================
   PRICING
   ======================================== */
.tier-pricing {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.original-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.strikethrough {
  text-decoration: line-through;
  color: var(--tl-destructive, #dc2626);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

.discount-badge {
  background: var(--tl-destructive, #dc2626);
  color: white;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
}

.current-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}

.current-price .currency {
  font-size: 1.25rem;
  color: var(--tl-primary, #f7a00f);
  font-weight: 600;
}

.current-price .amount {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--tl-primary, #f7a00f);
}

.current-price .period {
  font-size: 0.8rem;
  color: var(--tl-text-muted, rgba(255, 255, 255, 0.5));
  margin-left: 0.2rem;
}

/* ========================================
   BENEFITS LIST
   ======================================== */
.tier-benefits {
  flex: 1;
  margin-bottom: 1.25rem;
}

.tier-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tier-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  color: var(--tl-text, rgba(255, 255, 255, 0.85));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tier-benefits li:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--tl-primary, #f7a00f);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* ========================================
   BUY BUTTON
   ======================================== */
.buy-tier-btn {
  width: 100%;
  padding: 0.85rem;
  border: none;
  border-radius: 10px;
  color: #0a0a0f;
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.buy-tier-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

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

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison-section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.get-vip-page .section-title {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
}

.get-vip-page .title-icon {
  font-size: 1.25rem;
}

.comparison-table-container {
  overflow-x: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.comparison-table th {
  background: rgba(0, 0, 0, 0.3);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.8rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  padding-left: 1.25rem;
  color: var(--tl-text-muted, rgba(255, 255, 255, 0.7));
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.6rem;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 600;
}

.tier-badge.silver { background: rgba(192, 192, 192, 0.15); color: #C0C0C0; }
.tier-badge.gold { background: rgba(255, 215, 0, 0.15); color: #FFD700; }
.tier-badge.diamond { background: rgba(185, 242, 255, 0.15); color: #B9F2FF; }
.tier-badge.ruby { background: rgba(224, 17, 95, 0.15); color: #E0115F; }
.tier-badge.emerald { background: rgba(80, 200, 120, 0.15); color: #50C878; }

.price-row td {
  background: rgba(247, 160, 15, 0.05);
  font-weight: 600;
}

.table-price {
  color: var(--tl-primary, #f7a00f);
  font-size: 0.95rem;
}

.table-price.popular {
  background: linear-gradient(135deg, var(--tl-primary, #f7a00f), var(--tl-accent, #f9b642));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.25rem;
}

.faq-item h3 {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--tl-primary, #f7a00f);
  letter-spacing: 0.02em;
}

.faq-item p {
  color: var(--tl-text-muted, rgba(255, 255, 255, 0.65));
  line-height: 1.5;
  font-size: 0.875rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.get-vip-page .cta-section {
  padding: 3rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(247, 160, 15, 0.08) 100%);
  border-top: 1px solid rgba(247, 160, 15, 0.1);
}

.get-vip-page .cta-content h2 {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.get-vip-page .cta-content p {
  color: var(--tl-text-muted, rgba(255, 255, 255, 0.65));
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.get-vip-page .cta-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 2px solid var(--tc, #888);
  border-radius: 10px;
  color: var(--tc, #888);
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.get-vip-page .cta-btn:hover:not(:disabled) {
  background: var(--tc, #888);
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--tg, rgba(136, 136, 136, 0.35));
}

.get-vip-page .cta-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Specific tier colors for buttons */
.get-vip-page .cta-btn.f2p {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.5);
}

.get-vip-page .cta-btn.silver {
  --tc: #C0C0C0;
  --tg: rgba(192, 192, 192, 0.35);
}

.get-vip-page .cta-btn.gold {
  --tc: #FFD700;
  --tg: rgba(255, 215, 0, 0.35);
}

.get-vip-page .cta-btn.diamond {
  --tc: #B9F2FF;
  --tg: rgba(185, 242, 255, 0.35);
}

.get-vip-page .cta-btn.ruby {
  --tc: #E0115F;
  --tg: rgba(224, 17, 95, 0.35);
}

.get-vip-page .cta-btn.emerald {
  --tc: #50C878;
  --tg: rgba(80, 200, 120, 0.35);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .vip-hero {
    padding: 2rem 1rem 1.5rem;
  }
  
  .tiers-section {
    padding: 1.5rem 1rem;
  }
  
  .tier-card {
    padding: 1rem;
  }
  
  .tier-icon {
    font-size: 2rem;
  }
  
  .tier-name {
    font-size: 1.1rem;
  }
  
  .current-price .amount {
    font-size: 1.75rem;
  }
  
  .comparison-section,
  .faq-section {
    padding: 2rem 1rem;
  }
  
  .get-vip-page .section-title {
    font-size: 1.25rem;
  }
}

/* ========================================
   STRIPE SECURITY NOTE
   ======================================== */
.get-vip-page .stripe-security-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem auto 0;
  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;
}

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

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

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

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