/* 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;
}

/* 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 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-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: 768px) {
  .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: 768px) {
  .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;
}
