.elementor-1256 .elementor-element.elementor-element-ec57a77{--display:flex;}.elementor-1256 .elementor-element.elementor-element-475aad7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-00e9ddf *//* Premium Dark Casino Theme - Prediction Aviator */
/* Static CSS for WordPress Elementor Embedding */
/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
  /* Colors - HSL format */
  --background: hsl(220, 20%, 8%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(220, 18%, 12%);
  --card-foreground: hsl(0, 0%, 98%);
  --primary: hsl(356, 76%, 46%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(220, 16%, 16%);
  --secondary-foreground: hsl(0, 0%, 95%);
  --muted: hsl(220, 14%, 20%);
  --muted-foreground: hsl(220, 10%, 60%);
  --accent: hsl(43, 88%, 52%);
  --accent-foreground: hsl(220, 20%, 8%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(220, 15%, 22%);
  --input: hsl(220, 15%, 18%);
  --ring: hsl(356, 76%, 46%);
  --radius: 0.75rem;
  
  /* Surface colors */
  --surface-elevated: hsl(220, 16%, 14%);
  --surface-overlay: hsl(220, 18%, 10%);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(356, 76%, 46%), hsl(356, 76%, 38%));
  --gradient-gold: linear-gradient(135deg, hsl(43, 88%, 52%), hsl(38, 85%, 45%));
  --gradient-dark: linear-gradient(180deg, hsl(220, 20%, 10%), hsl(220, 22%, 6%));
  --gradient-card: linear-gradient(145deg, hsl(220, 18%, 14%), hsl(220, 20%, 10%));
  
  /* Shadows */
  --shadow-glow-primary: 0 0 30px hsla(356, 76%, 46%, 0.3);
  --shadow-glow-accent: 0 0 25px hsla(43, 88%, 52%, 0.25);
  --shadow-elevated: 0 8px 32px hsla(0, 0%, 0%, 0.4);
}
/* ============================================
   Base Styles
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
h1, h2, h3, .font-display {
  font-family: 'Inter', 'Inter', sans-serif;
}
/* ============================================
   Layout
   ============================================ */
.payment-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
@media (min-width: 768px) {
  .payment-section {
    padding: 2rem;
  }
}
.payment-container {
  width: 100%;
  max-width: 42rem;
}
/* ============================================
   Glow Card
   ============================================ */
.glow-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--gradient-card);
  overflow: hidden;
  transition: all 0.3s ease;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  background: linear-gradient(145deg, hsla(356, 76%, 46%, 0.1), transparent 50%);
}
.glow-card:hover::before {
  opacity: 1;
}
.glow-card:hover {
  border-color: hsla(356, 76%, 46%, 0.5);
  box-shadow: var(--shadow-glow-primary);
}
.glow-card-gold:hover {
  border-color: hsla(43, 88%, 52%, 0.5);
  box-shadow: var(--shadow-glow-accent);
}
.glow-card-gold:hover::before {
  background: linear-gradient(145deg, hsla(43, 88%, 52%, 0.1), transparent 50%);
}
/* ============================================
   Main Card
   ============================================ */
.main-card {
  padding: 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .main-card {
    padding: 2rem;
  }
}
/* Corner Accents */
.corner-accent {
  position: absolute;
  width: 5rem;
  height: 5rem;
  pointer-events: none;
}
.corner-accent.top-left {
  top: 0;
  left: 0;
  border-left: 2px solid hsla(356, 76%, 46%, 0.3);
  border-top: 2px solid hsla(356, 76%, 46%, 0.3);
  border-top-left-radius: var(--radius);
}
.corner-accent.bottom-right {
  bottom: 0;
  right: 0;
  border-right: 2px solid hsla(43, 88%, 52%, 0.3);
  border-bottom: 2px solid hsla(43, 88%, 52%, 0.3);
  border-bottom-right-radius: var(--radius);
}
/* ============================================
   Card Header
   ============================================ */
.card-header {
  text-align: center;
  margin-bottom: 2rem;
}
.header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.badge-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: hsla(356, 76%, 46%, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}
.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .card-title {
    font-size: 1.875rem;
  }
}
/* ============================================
   Step Content & Animations
   ============================================ */
.step {
  display: none;
}
.step.active {
  display: block;
}
.step.fade-in {
  animation: fadeIn 0.4s ease-out;
}
.step.slide-up {
  animation: slideUp 0.5s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================
   Step 1: Email Entry
   ============================================ */
.price-display {
  text-align: center;
  margin-bottom: 2rem;
}
.price-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.price-value {
  font-size: 3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-currency {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}
.price-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.accent-text {
  color: var(--accent);
  font-weight: 500;
}
/* Form Styles */
.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}
.input-wrapper {
  position: relative;
}
.input-icon {
  position: absolute;
  left: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-premium {
  width: 100%;
  border-radius: rem;
  border: 1px solid var(--border);
  background: var(--input);
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-size: 1rem;
  color: var(--foreground);
  transition: all 0.3s ease;
  outline: none;
}
.input-premium::placeholder {
  color: var(--muted-foreground);
}
.input-premium:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px hsla(356, 76%, 46%, 0.2), 0 0 20px hsla(356, 76%, 46%, 0.15);
}
.input-premium.error {
  border-color: var(--destructive);
  box-shadow: 0 0 0 2px hsla(0, 84%, 60%, 0.2);
}
.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--destructive);
  font-size: 0.875rem;
  animation: slideDown 0.2s ease-out;
}
.error-message.hidden {
  display: none;
}
.input-helper {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}
.helper-dot {
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--accent);
}
/* ============================================
   Buttons
   ============================================ */
.btn-premium {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 15px hsla(356, 76%, 46%, 0.3);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px hsla(356, 76%, 46%, 0.4);
}
.btn-premium:active {
  transform: translateY(0);
}
.btn-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.btn-premium:hover::before {
  transform: translateY(0);
}
.btn-premium:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.btn-gold {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
  background: var(--gradient-gold);
  color: var(--background);
  box-shadow: 0 4px 15px hsla(43, 88%, 52%, 0.3);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px hsla(43, 88%, 52%, 0.4);
}
.btn-full {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
}
.btn-text, .btn-arrow {
  transition: opacity 0.2s ease;
}
.btn-loader {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
}
.btn-loader.hidden {
  display: none;
}
.btn-premium.loading .btn-text,
.btn-premium.loading .btn-arrow {
  opacity: 0;
}
.btn-premium.loading .btn-loader {
  display: flex;
}
.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* Security Note */
.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
}
.security-note svg {
  color: var(--accent);
}
.security-note span {
  font-size: 0.75rem;
}
/* ============================================
   Step 2: Payment Methods
   ============================================ */
.back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
  font-size: 0.875rem;
}
.back-btn:hover {
  color: var(--foreground);
}
.back-btn svg {
  transition: transform 0.2s ease;
}
.back-btn:hover svg {
  transform: translateX(-4px);
}
/* User Info Bar */
.user-info-bar {
  background: hsla(220, 16%, 16%, 0.5);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-email-info {
  min-width: 0;
  flex: 1;
}
.info-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.info-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-price {
  color: var(--accent);
  font-size: 1.5rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}
/* Fee Breakdown */
.fee-breakdown {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid hsla(220, 15%, 22%, 0.5);
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.fee-label {
  color: var(--muted-foreground);
}
.fee-value {
  color: var(--foreground);
}
.fee-value.accent {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
}
.fee-row.total {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
}
.fee-row.total .fee-label {
  color: var(--foreground);
}
/* Payment Methods Grid */
.payment-methods-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Payment Card */
.payment-card {
  padding: 1.25rem;
}
.payment-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.card-icon {
  padding: 0.75rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon.primary {
  background: hsla(356, 76%, 46%, 0.1);
  color: var(--primary);
}
.card-icon.gold {
  background: hsla(43, 88%, 52%, 0.1);
  color: var(--accent);
}
.card-info {
  flex: 1;
  min-width: 0;
}
.card-method-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.3;
}
.card-method-desc {
  font-size: 0.875rem;
  font-weight: 500;
}
.card-method-desc.primary {
  color: hsla(356, 76%, 46%, 0.8);
}
.card-method-desc.gold {
  color: hsla(43, 88%, 52%, 0.8);
}
.card-details {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}
/* Card Logos */
.card-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.logo-badge {
  background: var(--muted);
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.logo-badge.visa {
  color: var(--primary);
}
.logo-badge.mastercard {
  color: var(--accent);
}
.crypto-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.crypto-badge.btc {
  background: hsla(43, 88%, 52%, 0.1);
  color: var(--accent);
}
.crypto-badge.eth {
  background: hsla(356, 76%, 46%, 0.1);
  color: var(--primary);
}
.crypto-badge.usdt {
  background: var(--muted);
  color: var(--foreground);
}
.crypto-badge.more {
  background: var(--muted);
  color: var(--muted-foreground);
}
/* Gateway Toggle */
.gateway-toggle {
  margin-bottom: 1rem;
}
.toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  width: 100%;
  text-align: left;
}
.toggle-btn:hover {
  color: var(--foreground);
}
.toggle-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.toggle-icon.hidden {
  display: none;
}
.gateway-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: slideDown 0.2s ease-out;
}
.gateway-list.hidden {
  display: none;
}
.gateway-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  background: var(--muted);
  color: var(--muted-foreground);
  transition: all 0.2s ease;
  cursor: pointer;
}
.gateway-badge:hover {
  background: hsla(356, 76%, 46%, 0.2);
  color: var(--primary);
  transform: scale(1.05);
}
.gateway-name {
  font-weight: 500;
}
.gateway-desc {
  opacity: 0.7;
}
/* Security Notice */
.security-notice {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: hsla(220, 16%, 16%, 0.3);
  border: 1px solid hsla(220, 15%, 22%, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.notice-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: hsla(43, 88%, 52%, 0.1);
  color: var(--accent);
  flex-shrink: 0;
}
.notice-content {
  flex: 1;
}
.notice-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.notice-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}
/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  color: var(--muted-foreground);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
}
/* ============================================
   Step 3: Crypto Widget
   ============================================ */
.crypto-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.crypto-title {
  font-size: 1.25rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.crypto-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.widget-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.widget-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(43, 88%, 52%, 0.05), transparent);
  pointer-events: none;
}
.widget-wrapper {
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.widget-wrapper iframe {
  max-width: 410px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.crypto-security {
  margin-top: 1.5rem;
}
/* ============================================
   Progress Indicator
   ============================================ */
.progress-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.progress-dot {
  height: 0.375rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  width: 1rem;
  background: var(--muted);
}
.progress-dot.active {
  width: 2rem;
  background: var(--primary);
}
.progress-dot.past {
  width: 1rem;
  background: var(--accent);
}
/* ============================================
   Footer
   ============================================ */
.footer {
  margin-top: 1.5rem;
  text-align: center;
}
.copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
/* ============================================
   Utility Classes
   ============================================ */
.hidden {
  display: none !important;
}
/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted-foreground);
}/* End custom CSS */