/* ==================== VIP SYSTEM STYLES ==================== */

/* VIP Hero Section */
.vip-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #001f3f 50%, #0a0a0a 100%);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.vip-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 31, 63, 0.2),
    transparent 70%
  );
  pointer-events: none;
}

.vip-hero-content {
  position: relative;
  z-index: 1;
}

.vip-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffd700, #ffa500, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-crown {
  font-size: 1.2em;
  animation: none; /* Removed bounce for more sophisticated feel */
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.vip-hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* VIP Current Status */
.vip-current-status {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.vip-status-badge {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.vip-expires-text,
.vip-plan-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0.25rem 0;
}

/* VIP Benefits Grid */
.vip-benefits {
  margin: 3rem 0;
}

.vip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vip-benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.vip-benefit-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 31, 63, 0.3);
}

.vip-benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vip-benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.vip-benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* VIP Pricing Grid */
.vip-pricing-section {
  margin: 4rem 0;
}

.vip-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vip-pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vip-pricing-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 31, 63, 0.4);
}

.vip-popular {
  border-color: #ffd700 !important;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.vip-popular-badge {
  position: absolute;
  top: 15px;
  right: -35px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #000;
  padding: 0.4rem 3rem;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.vip-plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.vip-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.vip-plan-duration {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.vip-plan-pricing {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.vip-price-original {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.vip-price-current {
  font-size: 3rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.vip-discount-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.vip-features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.vip-features-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vip-feature-check {
  color: #4caf50;
  font-weight: 700;
  font-size: 1.2rem;
}

.btn-vip {
  width: 100%;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #000;
  font-weight: 700;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-vip:hover {
  background: linear-gradient(135deg, #ffa500, #ffd700);
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
  color: #000;
}

/* VIP FAQ */
.vip-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vip-faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.vip-faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.vip-faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* VIP Checkout */
.vip-checkout-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vip-checkout-header {
  text-align: center;
  margin-bottom: 3rem;
}

.vip-checkout-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.vip-order-summary h2,
.vip-payment-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.vip-summary-card {
  background: var(--card-bg);
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 2rem;
}

.vip-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.vip-summary-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.vip-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.vip-discount-row {
  color: #4caf50;
}

.vip-summary-divider {
  height: 1px;
  background: var(--border-color);
  margin: 1rem 0;
}

.vip-total-row {
  font-size: 1.3rem;
  padding-top: 1rem;
}

.vip-total-price {
  color: #ffd700;
  font-size: 1.5rem;
}

.vip-price-strikethrough {
  text-decoration: line-through;
  color: var(--text-muted);
}

.vip-discount-amount {
  color: #4caf50;
  font-weight: 600;
}

.vip-features-preview {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.vip-features-preview h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.vip-features-preview ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-features-preview li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.vip-payment-form {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.vip-demo-note {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  padding: 1rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.vip-terms {
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
}

.btn-vip-large {
  font-size: 1.2rem;
  padding: 1.2rem;
}

.vip-secure-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.vip-checkout-footer {
  text-align: center;
  margin-top: 2rem;
}

/* VIP Success */
.vip-success-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.vip-success-animation {
  margin-bottom: 3rem;
}

.vip-success-icon {
  margin-bottom: 1.5rem;
}

.vip-crown-large {
  font-size: 6rem;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.vip-success-title {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.vip-success-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.vip-success-card {
  background: var(--card-bg);
  border: 2px solid #ffd700;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.vip-success-card h2 {
  margin-bottom: 1.5rem;
}

.vip-status-details {
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.vip-status-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.vip-status-row:last-child {
  border-bottom: none;
}

.vip-status-label {
  color: var(--text-secondary);
}

.vip-success-benefits {
  text-align: left;
  margin: 2rem 0;
}

.vip-success-benefits h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.vip-success-benefits ul {
  list-style: none;
  padding: 0;
}

.vip-success-benefits li {
  padding: 0.75rem;
  background: rgba(255, 215, 0, 0.05);
  margin-bottom: 0.5rem;
  border-radius: 8px;
  color: var(--text-secondary);
}

.vip-success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.vip-success-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.vip-success-footer p {
  color: var(--text-secondary);
  margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .vip-hero-title {
    font-size: 2rem;
  }

  .vip-pricing-grid {
    grid-template-columns: 1fr;
  }

  .vip-checkout-content {
    grid-template-columns: 1fr;
  }

  .vip-benefits-grid {
    grid-template-columns: 1fr;
  }

  .vip-success-actions {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
