@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --secondary: #10b981;
  --accent: #f59e0b;
  --dark: #1a202c;
  --gray: #64748b;
  --light-gray: #f8fafc;
}

body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
  color: white;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  opacity: 0.95;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SECTIONS */
.section {
  padding: 80px 24px;
}

.section-light {
  background: var(--light-gray);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.benefit-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* STEPS */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  text-align: center;
  position: relative;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.step-icon {
  font-size: 3.5rem;
  margin: 20px 0 16px 0;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.step-card p {
  color: var(--gray);
  line-height: 1.6;
}

.step-arrow {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 48px auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
}

.pricing-featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 32px;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.guarantee-box {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.guarantee-box h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.guarantee-box p {
  font-size: 1.125rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* SUBSCRIBE SECTION */
.section-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
}

.section-cta .section-title,
.section-cta .section-subtitle {
  color: white;
}

.subscribe-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.subscribe-box .section-title {
  color: var(--dark);
  margin-bottom: 8px;
}

.subscribe-box .section-subtitle {
  color: var(--gray);
  margin-bottom: 32px;
}

.subscribe-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  text-align: left;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 16px;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.5;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.15);
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.faq-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* FINAL CTA */
.section-final-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  text-align: center;
}

.section-final-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-final-cta p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 32px;
}

.cta-note {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 16px;
}

/* CONTAINER */
.container { 
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* CARDS */
.card { 
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card h2 {
  color: #1a202c;
  margin-bottom: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* TIP CARDS */
.tips-preview {
  max-width: 900px;
  margin: 0 auto;
}

.tip-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}

.tip-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.tip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.tip-sport {
  font-weight: 700;
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tip-league {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.tip-event {
  font-size: 1.25rem;
  color: #1a202c;
  margin: 12px 0;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.tip-market-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.tip-selection {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 8px 0 16px 0;
  box-shadow: 0 4px 6px rgba(5, 150, 105, 0.2);
  letter-spacing: -0.025em;
}

.tip-odds-container {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0;
  box-shadow: 0 4px 6px rgba(245, 158, 11, 0.25);
}

.tip-odds-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.tip-odds-label {
  font-size: 0.875rem;
  color: #92400e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tip-odds-value {
  font-size: 2rem;
  font-weight: 800;
  color: #78350f;
  letter-spacing: -0.025em;
  line-height: 1;
}

.tip-payout {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 8px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #78350f;
  font-weight: 700;
}

.tip-payout-arrow {
  font-size: 1.25rem;
  color: #92400e;
}

.tip-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #64748b;
}

.tip-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.tip-note {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 0.875rem;
  color: #92400e;
  font-weight: 500;
  line-height: 1.5;
}

/* BUTTONS */
.btn { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.btn-primary { 
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn-secondary:hover {
  background: #eff6ff;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

/* INPUTS */
.input, select, textarea { 
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: white;
}

.input-lg {
  padding: 16px 20px;
  font-size: 1.0625rem;
}

.input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input::placeholder {
  color: #94a3b8;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #3b82f6;
  flex-shrink: 0;
}

label { 
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  letter-spacing: -0.025em;
}

/* ALERTS */
.alert { 
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 500;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: start;
  gap: 12px;
  line-height: 1.5;
}

.alert-success { 
  background: #d1fae5;
  border-left: 4px solid #10b981;
  color: #065f46;
}

.alert-error { 
  background: #fee2e2;
  border-left: 4px solid #ef4444;
  color: #991b1b;
}

/* FOOTER */
.footer { 
  background: #1a202c;
  color: #cbd5e0;
  padding: 48px 24px 24px 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.footer-section h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.footer-section a {
  display: block;
  color: #cbd5e0;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
  font-size: 0.9375rem;
}

.footer-section a:hover {
  color: #60a5fa;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom a {
  color: #60a5fa;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* HEADER (for other pages) */
.header { 
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  padding: 40px 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
}

.header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header p {
  font-size: 1.125rem;
  opacity: 0.95;
  font-weight: 400;
  max-width: 600px;
}

/* TABLE */
table { 
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

th, td { 
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
}

th { 
  font-weight: 700;
  background: #f8fafc;
  color: #1a202c;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

tr:hover {
  background: #f8fafc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .stats-row {
    gap: 32px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .section {
    padding: 48px 16px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .benefits-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .step-arrow {
    display: none;
  }
  
  .steps-grid {
    flex-direction: column;
  }
  
  .step-card {
    max-width: 100%;
  }
  
  .pricing-featured {
    transform: scale(1);
  }
  
  .subscribe-box {
    padding: 32px 24px;
  }
  
  .subscribe-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tip-card, .benefit-card, .faq-item {
  animation: fadeIn 0.3s ease;
}
