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

:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --success: #0f9d58;
  --danger: #db4437;
  --warning: #f4b400;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --gray: #5f6368;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fff;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #4d9fff;
}

.nav-links .btn-primary {
  background: linear-gradient(135deg, #1a73e8 0%, #0d5cc7 100%);
  color: white;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
  transition: all 0.3s ease;
}

.nav-links .btn-primary:hover {
  background: linear-gradient(135deg, #2580f0 0%, #1a73e8 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.5);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 5rem 0 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(15, 157, 88, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

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

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.8s ease-out forwards;
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p.sub {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  position: relative;
  z-index: 2;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-15px);
  animation: fadeInDown 0.8s ease-out 0.2s forwards;
}

/* Verified Plate - Premium Design */
.verified-plate {
  margin: 2.5rem auto 2.5rem;
  max-width: 960px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  backdrop-filter: blur(24px);
  border-radius: 28px;
  padding: 2.5rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.verified-plate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.5), transparent);
}

.verified-plate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.plate-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.plate-header::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #22d3ee, #3b82f6);
  border-radius: 2px;
}

.live-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(239, 68, 68, 0.6); }
}

.verified-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.4);
}

.plate-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}

.card {
  background: linear-gradient(145deg, #065f46 0%, #047857 50%, #059669 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 30%);
  pointer-events: none;
}

.card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card:nth-child(2).is-visible {
  transition-delay: 0.15s;
}

.card:nth-child(3).is-visible {
  transition-delay: 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 80px rgba(5, 150, 105, 0.25);
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  color: white;
}

.card-type {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card-type .odds {
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #a7f3d0;
}

.wager, .paid {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  opacity: 0.9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wager strong, .paid strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.paid strong {
  color: #a7f3d0;
  text-shadow: 0 0 20px rgba(167, 243, 208, 0.3);
}

.sportsbook-tag {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.total-winnings-new {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.total-label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.total-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #0f9d58;
  text-shadow: 0 2px 10px rgba(15, 157, 88, 0.3);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.sportsbook-badges {
  margin: 2.5rem auto 2rem;
  max-width: 700px;
}

.badge-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.badge-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sportsbook-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sportsbook-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn-primary, .btn-hero, .btn-plan, .btn-submit, .btn-upgrade {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.btn-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #1a3a8c;
  font-size: 1.1rem;
  padding: 1.1rem 3.5rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-primary:hover, .btn-plan:hover, .btn-submit:hover, .btn-upgrade:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.4);
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

/* Leagues Section */
.leagues-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
}

.leagues-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(15, 157, 88, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(15, 157, 88, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.leagues-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #1b5e20;
  font-weight: 700;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.leagues-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #2e7d32;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.leagues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.league-card {
  background: linear-gradient(135deg, #ffffff 0%, #f1f8f4 100%);
  border-radius: 16px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #e0f2e9;
  box-shadow: 0 4px 15px rgba(15, 157, 88, 0.08);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out both;
  animation-delay: calc(var(--card-index) * 0.1s);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.league-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f9d58 0%, #34a853 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.league-card:hover::before {
  transform: scaleX(1);
}

.league-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #0f9d58;
  box-shadow: 0 12px 35px rgba(15, 157, 88, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

.league-card:nth-child(1) { --card-index: 0; }
.league-card:nth-child(2) { --card-index: 1; }
.league-card:nth-child(3) { --card-index: 2; }
.league-card:nth-child(4) { --card-index: 3; }
.league-card:nth-child(5) { --card-index: 4; }
.league-card:nth-child(6) { --card-index: 5; }
.league-card:nth-child(7) { --card-index: 6; }
.league-card:nth-child(8) { --card-index: 7; }
.league-card:nth-child(9) { --card-index: 8; }
.league-card:nth-child(10) { --card-index: 9; }

.league-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
  filter: grayscale(0.3);
}

.league-card:hover .league-icon {
  transform: scale(1.15) rotate(5deg);
  filter: grayscale(0) drop-shadow(0 5px 15px rgba(15, 157, 88, 0.3));
}

.league-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #1b5e20;
  font-weight: 700;
  transition: color 0.3s ease;
}

.league-card:hover h3 {
  color: #0f9d58;
}

.league-card p {
  color: #43a047;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.league-card:hover p {
  color: #2e7d32;
}

.leagues-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
  border-radius: 12px;
  border: 2px solid #66bb6a;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(15, 157, 88, 0.15);
  animation: fadeIn 1s ease-out 0.8s both;
}

.leagues-note p {
  margin: 0;
  color: #1b5e20;
  font-weight: 600;
  font-size: 1rem;
}

.leagues-note a {
  color: #0f9d58;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.leagues-note a:hover {
  color: #1b5e20;
  border-bottom-color: #1b5e20;
}

/* Experts Section */
.experts-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.experts-section::before {
  display: none;
}

.experts-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInDown 0.8s ease-out;
}

.experts-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  font-weight: 400;
  animation: fadeIn 1s ease-out 0.2s both;
}

.experts-grid {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: visible;
  padding: 1rem 0 2rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.experts-grid::-webkit-scrollbar {
  height: 8px;
}

.experts-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.experts-grid::-webkit-scrollbar-thumb {
  background: rgba(26, 115, 232, 0.5);
  border-radius: 10px;
}

.experts-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 115, 232, 0.7);
}

.expert-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  flex: 0 0 280px;
  min-width: 280px;
}

.expert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.expert-card:hover::before {
  left: 100%;
}

.expert-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #1a73e8, #0f9d58);
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
  filter: blur(15px);
}

.expert-card:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 115, 232, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.expert-card:hover::after {
  opacity: 0.4;
}

.expert-photo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.expert-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #1a73e8;
  padding: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.expert-photo::before {
  display: none;
}

.expert-card:hover .expert-photo {
  transform: scale(1.05);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(15, 157, 88, 0.6),
    0 0 0 3px rgba(255, 255, 255, 0.25),
    inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.expert-card:hover .expert-photo::before {
  opacity: 0.8;
}

.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  filter: contrast(1.05) brightness(1.02) saturate(1.1);
  -webkit-filter: contrast(1.05) brightness(1.02) saturate(1.1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.01);
  transition: all 0.5s ease;
}

.expert-card:hover .expert-photo img {
  filter: contrast(1.1) brightness(1.05) saturate(1.15);
  -webkit-filter: contrast(1.1) brightness(1.05) saturate(1.15);
}

.expert-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: linear-gradient(135deg, #1a73e8 0%, #0f9d58 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 
    0 5px 20px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(26, 115, 232, 0.5);
  border: 3px solid #0a0a0a;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.expert-card:hover .expert-badge {
  transform: scale(1.1);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(15, 157, 88, 0.7);
}

.expert-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 700;
  transition: all 0.4s ease;
  letter-spacing: -0.5px;
}

.expert-card:hover .expert-info h3 {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(26, 115, 232, 0.5);
}

.expert-specialty {
  color: #1a73e8;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.expert-card:hover .expert-specialty {
  color: #0f9d58;
  letter-spacing: 2.5px;
}

.expert-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  position: relative;
}

.expert-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(15, 157, 88, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.expert-card:hover .expert-stats {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(26, 115, 232, 0.2);
  box-shadow: 0 5px 20px rgba(26, 115, 232, 0.15);
}

.expert-card:hover .expert-stats::before {
  opacity: 1;
}

.expert-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.expert-stat .stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0f9d58 0%, #34a853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
  transition: all 0.3s ease;
}

.expert-card:hover .expert-stat .stat-number {
  transform: scale(1.1);
  filter: drop-shadow(0 5px 15px rgba(15, 157, 88, 0.5));
}

.expert-stat .stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.expert-bio {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 1rem;
  transition: all 0.4s ease;
  font-weight: 400;
}

.expert-card:hover .expert-bio {
  color: rgba(255, 255, 255, 0.9);
}

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.live-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: #fafbfc;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quote-icon {
  font-size: 3rem;
  color: #1a73e8;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stars {
  color: #f4b400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-author strong {
  color: var(--dark);
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--light);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background: white;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-badge {
  padding: 1.5rem;
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.trust-badge h4 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.trust-badge p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background: var(--light);
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  border: 3px solid var(--primary);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin: 1rem 0;
}

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

.pricing-card ul {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  color: var(--gray);
}

/* ========================================
   NEW PROFESSIONAL PRICING SECTION
   ======================================== */

.pricing-section-new {
  padding: 6rem 0;
  background: #ffffff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Plan Card Base */
.plan-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Plan Header */
.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.plan-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.plan-desc {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

/* Plan Badge */
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1a73e8, #0f9d58);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
}

/* Tier Grid */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .tier-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.tier-option {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.tier-option:hover {
  border-color: #1a73e8;
  background: #f0f7ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.15);
}

.tier-option.tier-best {
  border-color: #0f9d58;
  background: linear-gradient(180deg, #e8f5e9 0%, #f8fafc 100%);
}

.tier-option.tier-best:hover {
  border-color: #0f9d58;
  box-shadow: 0 8px 20px rgba(15, 157, 88, 0.2);
}

.tier-label {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f9d58;
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.tier-top {
  margin-bottom: 0.5rem;
}

.tier-price {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  color: #1a73e8;
}

.tier-best .tier-price {
  color: #0f9d58;
}

.tier-period {
  display: block;
  font-size: 0.75rem;
  color: #666;
  font-weight: 600;
}

.tier-picks {
  font-size: 0.7rem;
  color: #555;
  font-weight: 600;
  background: rgba(26, 115, 232, 0.1);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  display: inline-block;
}

.tier-best .tier-picks {
  background: rgba(15, 157, 88, 0.15);
}

/* Plan Features */
.plan-features {
  list-style: none;
  padding: 1.25rem 0 0 0;
  margin: auto 0 0 0;
  border-top: 1px solid #eef2f6;
}

.plan-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features .check {
  color: #0f9d58;
  font-weight: 700;
}

/* BASIC Plan Specific */
.plan-basic .plan-header h3 {
  background: linear-gradient(135deg, #1a73e8, #0f9d58);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* PRO Plan Specific */
.plan-pro {
  border: 2px solid rgba(26, 115, 232, 0.3);
}

.plan-pro .plan-header h3 {
  background: linear-gradient(135deg, #f4b400, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-pro .tier-option:hover {
  border-color: #f4b400;
  background: #fffbf0;
}

.plan-pro .tier-price {
  color: #e6a800;
}

.plan-pro .tier-best {
  border-color: #ff6b35;
  background: linear-gradient(180deg, #fff3e0 0%, #f8fafc 100%);
}

.plan-pro .tier-best .tier-price {
  color: #ff6b35;
}

.plan-pro .tier-label {
  background: linear-gradient(135deg, #ff6b35, #f4b400);
}

.plan-pro .tier-picks {
  background: rgba(244, 180, 0, 0.15);
}

.plan-pro .tier-best .tier-picks {
  background: rgba(255, 107, 53, 0.15);
}

/* VIP Plan Specific */
.plan-vip {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid transparent;
  position: relative;
  overflow: visible;
}

.plan-vip::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 22px;
  z-index: -1;
}

.plan-vip .plan-icon {
  display: block;
}

.plan-vip .plan-header h3 {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-vip .plan-desc {
  color: rgba(255, 255, 255, 0.6);
}

.vip-pricing {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
}

.vip-price {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
}

.vip-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.vip-tag {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffd700;
}

.plan-vip .plan-features {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.plan-vip .plan-features li {
  color: rgba(255, 255, 255, 0.9);
}

.plan-vip .plan-features .check {
  color: #ffd700;
}

.btn-vip-select {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #1a1a2e;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-vip-select:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

.payment-plan-info {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.payment-plan-info p {
  margin: 0;
  font-size: 0.95rem;
}

.payment-plan-info .plan-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.payment-plan-info .plan-price {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.payment-form-group {
  margin-bottom: 1.25rem;
}

.payment-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.payment-form-group input {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.payment-form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f0f7ff;
  padding: 0.75rem;
  border-radius: 6px;
  margin: 1rem 0;
  font-size: 0.85rem;
  color: #1a73e8;
}

.card-brands {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  opacity: 0.6;
}

.card-brand {
  width: 40px;
  height: 25px;
  background: #f5f5f5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #666;
}

.age-verification-modal {
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(10,10,30,0.98) 100%);
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  backdrop-filter: blur(8px);
}

.age-verification {
  max-width: 600px;
  text-align: center;
  padding: 2.5rem 2.5rem 2rem;
  margin: 3% auto;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.age-verification h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.warning-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.3));
}

.warning-content {
  color: #444;
}

.warning-content p {
  line-height: 1.7;
}

.warning-content strong {
  color: #dc3545;
  font-size: 1.05rem;
  font-weight: 700;
}

.warning-content ul {
  background: #f8f9fa;
  padding: 1rem 2rem 1rem 2.5rem;
  border-radius: 12px;
  border-left: 4px solid #1a73e8;
  margin: 1rem 0;
}

.warning-content ul li {
  padding: 0.4rem 0;
  color: #555;
  font-size: 0.95rem;
}

.age-verification-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.btn-confirm {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  letter-spacing: 0.3px;
}

.btn-confirm:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

.btn-decline {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  letter-spacing: 0.3px;
}

.btn-decline:hover {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
}

/* Dashboard */
.dashboard-container {
  display: flex;
  min-height: calc(100vh - 60px);
}

.sidebar {
  width: 250px;
  background: var(--dark);
  color: white;
  padding: 2rem 0;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  padding: 0;
}

.sidebar ul li a {
  display: block;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.sidebar ul li a:hover, .sidebar ul li a.active {
  background: var(--primary);
}

.dashboard-main {
  flex: 1;
  padding: 2rem;
  background: var(--light);
}

.dashboard-section {
  display: none;
}

.dashboard-section.active {
  display: block;
}

/* Picks Grid */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pick-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.pick-card.vip-only {
  border: 2px solid var(--warning);
  opacity: 0.8;
}

.pick-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.sport-badge {
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.vip-badge {
  background: var(--warning);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.confidence {
  font-size: 0.9rem;
  font-weight: 600;
}

.confidence.high {
  color: var(--success);
}

.confidence.medium {
  color: var(--warning);
}

.pick-detail {
  margin: 0.5rem 0;
  color: var(--gray);
}

.analysis {
  background: var(--light);
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
}

.analysis h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.pick-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.stat-value {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin: 1rem 0;
}

/* History Table */
.history-table {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

th {
  background: var(--light);
  font-weight: 600;
}

.result-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.result-badge.win {
  background: #d4edda;
  color: var(--success);
}

.result-badge.loss {
  background: #f8d7da;
  color: var(--danger);
}

/* Account Info */
.account-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.info-card p {
  margin: 0.5rem 0;
}

.status-active {
  color: var(--success);
  font-weight: 600;
}

/* Betting Slip Styles */
.betting-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.bet-slip-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.bet-slip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.bet-slip-header h3 {
  margin: 0;
  color: var(--dark);
  font-size: 1.5rem;
}

.btn-clear-slip {
  background: #ef4444;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-clear-slip:hover {
  background: #dc2626;
}

.bet-slip-content {
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
}

.empty-slip {
  text-align: center;
  color: #666;
  padding: 3rem 1rem;
  font-size: 0.95rem;
}

.bet-slip-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.bet-slip-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.bet-info h4 {
  margin: 0 0 0.5rem 0;
  color: var(--dark);
  font-size: 1.1rem;
}

.bet-pick {
  color: var(--primary);
  font-weight: 600;
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.bet-odds {
  color: var(--success);
  font-weight: 700;
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.bet-stake {
  margin-top: 1rem;
}

.bet-stake label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 600;
  font-size: 0.9rem;
}

.stake-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.stake-input:focus {
  outline: none;
  border-color: var(--primary);
}

.btn-remove-bet {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ef4444;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-remove-bet:hover {
  background: #dc2626;
  transform: scale(1.1);
}

.bet-slip-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #333;
}

.summary-row.highlight {
  border-top: 2px solid #dee2e6;
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--success);
}

.btn-place-bets {
  width: 100%;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: white;
  padding: 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(15, 157, 88, 0.3);
}

.btn-place-bets:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 157, 88, 0.4);
}

.btn-add-bet {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.btn-add-bet:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.betting-tips {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid #fbbf24;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.15);
}

.betting-tips h3 {
  margin: 0 0 1rem 0;
  color: #92400e;
  font-size: 1.2rem;
}

.betting-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.betting-tips ul li {
  padding: 0.75rem 0;
  color: #78350f;
  font-size: 0.9rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.betting-tips ul li:last-child {
  border-bottom: none;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Mobile Navigation */
  .navbar .container {
    flex-wrap: wrap;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    background: var(--dark);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .logo h2 {
    font-size: 1.2rem;
  }

  /* Hero Section */
  .hero {
    padding: 3rem 0;
    min-height: 420px;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Verified Plate Mobile */
  .verified-plate {
    margin: 1.5rem auto;
    padding: 1.5rem 1rem;
  }

  .plate-header {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .plate-header h3 {
    font-size: 1.2rem;
  }

  .live-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .verified-plate {
    padding: 1.5rem 0.75rem;
  }

  .card-body {
    padding: 1rem;
  }

  .card-type {
    font-size: 0.9rem;
  }

  .wager strong, .paid strong {
    font-size: 1.2rem;
  }

  .total-winnings-new {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }

  .total-label {
    font-size: 0.9rem;
  }

  .total-amount {
    font-size: 1.5rem;
  }

  .sportsbook-badges {
    margin: 1.5rem auto;
  }

  .badge-label {
    font-size: 0.75rem;
  }

  .badge-logos {
    gap: 0.5rem;
  }

  .sportsbook-badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.9rem;
  }

  .btn-hero {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  /* Experts Section */
  .experts-section {
    padding: 3rem 0;
  }

  .experts-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .experts-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .experts-grid {
    gap: 1.5rem;
    padding: 1rem 1rem 2rem 1rem;
  }

  .expert-card {
    padding: 1.5rem;
    flex: 0 0 300px;
    min-width: 300px;
  }

  .expert-photo {
    width: 150px;
    height: 150px;
    border-width: 4px;
  }

  .expert-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .expert-info h3 {
    font-size: 1.2rem;
  }

  .expert-specialty {
    font-size: 0.9rem;
  }

  .expert-stats {
    gap: 1.5rem;
    padding: 0.75rem;
  }

  .expert-stat .stat-number {
    font-size: 1.5rem;
  }

  .expert-stat .stat-label {
    font-size: 0.7rem;
  }

  .expert-bio {
    font-size: 0.85rem;
  }

  /* Stats Banner */
  .stats-banner {
    padding: 2rem 0;
  }

  .live-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-section h2 {
    font-size: 1.8rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  /* FAQ */
  .faq-section {
    padding: 3rem 0;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  /* Trust */
  .trust-section {
    padding: 3rem 0;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .trust-icon {
    font-size: 2.5rem;
  }

  /* Leagues Section */
  .leagues-section {
    padding: 3rem 0;
  }

  .leagues-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .leagues-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .leagues-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .league-card {
    padding: 1.5rem 0.75rem;
  }

  .league-card:hover {
    transform: translateY(-5px) scale(1.02);
  }

  .league-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .league-card h3 {
    font-size: 1.1rem;
  }

  .league-card p {
    font-size: 0.8rem;
  }

  .leagues-note {
    margin-top: 1.5rem;
    padding: 1rem;
  }

  .leagues-note p {
    font-size: 0.85rem;
  }

  /* Betting Slip Mobile */
  .betting-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bet-slip-card {
    padding: 1.5rem;
  }

  .bet-slip-header h3 {
    font-size: 1.2rem;
  }

  .btn-clear-slip {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .bet-slip-item {
    padding: 1rem;
  }

  .summary-row {
    font-size: 0.9rem;
  }

  .summary-row.highlight {
    font-size: 1.1rem;
  }

  .betting-tips {
    padding: 1.25rem;
  }

  .betting-tips h3 {
    font-size: 1.1rem;
  }

  .betting-tips ul li {
    font-size: 0.85rem;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 3rem 0;
  }

  .pricing-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card:hover {
    transform: translateY(-5px);
  }

  .price {
    font-size: 2.5rem;
  }

  .btn-plan {
    width: 100%;
    padding: 1rem;
  }

  /* Basic & Pro Multi-Tier Mobile */
  .basic-tiers,
  .pro-tiers {
    flex-direction: column;
    gap: 1rem;
  }

  .basic-tier,
  .pro-tier {
    padding: 1rem;
  }

  .tier-price {
    font-size: 1.4rem;
  }

  .tier-badge {
    font-size: 0.55rem;
  }

  /* Dashboard */
  .dashboard-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    padding: 0;
  }

  .sidebar ul {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar ul li {
    flex-shrink: 0;
  }

  .sidebar ul li a {
    padding: 1rem 1.5rem;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
  }

  .sidebar ul li a.active {
    border-bottom-color: var(--primary);
  }

  .dashboard-main {
    padding: 1rem;
  }

  .dashboard-main h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Picks Grid */
  .picks-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pick-card {
    padding: 1rem;
  }

  .pick-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .pick-card h3 {
    font-size: 1.1rem;
  }

  .pick-footer {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  /* Tables */
  .history-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 600px;
  }

  th, td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  /* Account Info */
  .account-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  /* Modals */
  .modal-content {
    margin: 5% auto;
    padding: 1.25rem;
    width: 95%;
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-content h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .payment-plan-info {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .payment-plan-info .plan-name {
    font-size: 1rem;
  }

  .payment-plan-info .plan-price {
    font-size: 1.5rem;
  }

  .payment-form-group {
    margin-bottom: 1rem;
  }

  .payment-form-group label {
    font-size: 0.85rem;
  }

  .payment-form-group input {
    padding: 0.85rem;
  }

  .payment-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .security-badge {
    padding: 0.6rem;
    font-size: 0.8rem;
  }

  .card-brands {
    flex-wrap: wrap;
    margin-top: 0.75rem;
  }

  .close {
    font-size: 2rem;
    right: 1rem;
    top: 0.5rem;
  }

  .age-verification {
    padding: 1rem;
    max-width: 95%;
    margin: 1rem auto;
    max-height: 85vh;
  }

  .age-verification h2 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .warning-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .warning-content {
    font-size: 0.9rem;
  }

  .warning-content ul {
    margin: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .warning-content > div {
    padding: 0.75rem !important;
    margin: 1rem 0 !important;
  }

  .warning-content > div p {
    font-size: 0.8rem !important;
  }

  .age-verification-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .btn-confirm, .btn-decline {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
  }

  .warning-content > p:last-child {
    font-size: 0.75rem !important;
  }

  .modal-content input, 
  .modal-content select {
    padding: 0.75rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .btn-submit, .btn-upgrade {
    width: 100%;
    padding: 1rem;
  }

  /* Admin Controls */
  .admin-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .admin-controls input {
    margin-left: 0 !important;
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    padding: 1rem;
  }

  /* Footer */
  footer .container > div {
    flex-direction: column;
    gap: 1rem;
  }

  footer a {
    display: block;
    margin: 0.5rem 0 !important;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .picks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  /* Larger tap targets for mobile */
  button, a, input, select {
    min-height: 44px;
  }

  .pick-card, .pricing-card, .stat-card {
    cursor: pointer;
  }

  /* Remove hover effects on touch devices */
  .btn-primary:hover,
  .btn-hero:hover,
  .btn-plan:hover,
  .pricing-card:hover {
    transform: none;
  }

  .btn-primary:active,
  .btn-hero:active,
  .btn-plan:active {
    transform: scale(0.98);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes glossShift {
  0% {
    transform: translateX(-10%) translateY(-4%) rotate(0deg);
    opacity: 0.95;
  }
  50% {
    transform: translateX(10%) translateY(4%) rotate(2deg);
    opacity: 1;
  }
  100% {
    transform: translateX(-10%) translateY(-4%) rotate(0deg);
    opacity: 0.95;
  }
}

/* ========================================
   POINTZWIN PREMIUM BRANDING & ENHANCEMENTS
   ======================================== */

/* Logo Styles - Premium & Extra Visible */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

.logo-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1a73e8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.logo-img::after {
  display: none;
}

.logo:hover .logo-img {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.logo h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.logo h2::after {
  display: none;
}

/* Premium Footer Styles - Redesigned */
.site-footer {
  background: linear-gradient(180deg, #050510 0%, #0a0a1a 50%, #0f0f20 100%);
  color: white;
  padding: 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8, #0f9d58);
}

.site-footer::after {
  display: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

@keyframes footerLogoGlow {
  0%, 100% { 
    background-position: 100% 100%, 0% 50%;
    box-shadow: 0 0 30px rgba(26, 115, 232, 0.5), 0 0 60px rgba(15, 157, 88, 0.3);
  }
  50% { 
    background-position: 100% 100%, 100% 50%;
    box-shadow: 0 0 40px rgba(15, 157, 88, 0.6), 0 0 80px rgba(26, 115, 232, 0.4);
  }
}

.footer-logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.footer-brand h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: linear-gradient(90deg, #1a73e8, #0f9d58);
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #4d9fff;
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #1a73e8, #0f9d58);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 115, 232, 0.4);
  border-color: transparent;
}

.social-icon {
  font-size: 1.4rem;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-badges {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.payment-badge:hover {
  background: rgba(26, 115, 232, 0.2);
  border-color: rgba(26, 115, 232, 0.3);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.footer-credit {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-credit p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  margin: 0;
}

.footer-credit a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-credit a:hover {
  color: #0f9d58;
  text-shadow: 0 0 10px rgba(15, 157, 88, 0.5);
}

/* Enhanced Navbar with Premium Gradient */
.navbar {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Professional Hero - No Animation */
.hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a8c 50%, #0d47a1 100%);
}

/* Premium Glass Effects */
.verified-plate {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Premium Button Styles */
.btn-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #1a3a8c;
  font-weight: 700;
  border-radius: 50px;
  padding: 1.2rem 3.5rem;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(26, 115, 232, 0.3);
}

.btn-hero:hover::before {
  left: 100%;
}

/* Enhanced Pricing Cards */
.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8, #0f9d58);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border: 2px solid transparent;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #1a73e8, #0f9d58) border-box;
}

/* Premium Stats Banner */
.stats-banner {
  position: relative;
}

.stats-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.5), transparent);
}

/* Premium Testimonial Cards */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 8rem;
  color: rgba(26, 115, 232, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* Enhanced Expert Cards with Premium Glow */
.expert-card:hover {
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(26, 115, 232, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Premium Trust Section */
.trust-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.3), transparent);
}

.trust-badge {
  transition: all 0.4s ease;
}

.trust-badge:hover {
  transform: translateY(-8px);
}

.trust-badge:hover .trust-icon {
  transform: scale(1.2);
}

.trust-icon {
  transition: transform 0.4s ease;
}

/* Premium FAQ Section Enhancement */
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-item {
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.faq-item:hover {
  border-left-color: #1a73e8;
  padding-left: 1.5rem;
}

/* Mobile Responsive Footer & Logo */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-description {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 3rem 0 2rem;
  }

  .footer-brand h3 {
    font-size: 1.8rem;
  }

  .footer-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: block;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .payment-badges {
    gap: 0.75rem;
  }

  .payment-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .logo-img {
    width: 55px;
    height: 55px;
  }

  .logo h2 {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 48px;
    height: 48px;
  }

  .logo h2 {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .footer-brand h3 {
    font-size: 1.5rem;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }
}

/* ========================================
   PROFESSIONAL CLEAN EFFECTS
   ======================================== */

/* Clean Navbar - No Animation */
.navbar {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Highlight Text in Hero */
.highlight-text {
  background: linear-gradient(135deg, #0f9d58, #f4b400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
}

/* Clean Hero Section - No Animation */
.hero h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes heroTitleGlow {
  0% {
    text-shadow: 
      0 0 10px rgba(255, 255, 255, 0.8),
      0 0 20px rgba(26, 115, 232, 0.6),
      0 0 40px rgba(26, 115, 232, 0.4);
  }
  100% {
    text-shadow: 
      0 0 15px rgba(255, 255, 255, 1),
      0 0 30px rgba(15, 157, 88, 0.8),
      0 0 60px rgba(15, 157, 88, 0.6),
      0 0 100px rgba(15, 157, 88, 0.4);
  }
}

/* Clean Buttons */
.btn-hero {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: none;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Glowing Cards */
.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card::before {
  display: none;
}

/* Flashy Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  display: none;
}

.stat-item {
  position: relative;
  z-index: 1;
}

.stat-number {
  text-shadow: 0 0 20px rgba(26, 115, 232, 0.5);
}

/* Glowing Expert Cards */
.expert-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.expert-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(15, 157, 88, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.expert-card:hover::before {
  opacity: 1;
}

.expert-card:hover {
  border-color: rgba(26, 115, 232, 0.5);
  box-shadow: 
    0 0 30px rgba(26, 115, 232, 0.3),
    0 0 60px rgba(15, 157, 88, 0.2),
    0 25px 80px rgba(0, 0, 0, 0.5);
}

/* Clean Expert Badge */
.expert-badge {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Flashy Pricing Cards */
.pricing-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured .badge {
  background: linear-gradient(135deg, #1a73e8, #0f9d58);
}

/* Clean Sportsbook Badges */
.sportsbook-badge {
  position: relative;
}

.sportsbook-badge::before {
  display: none;
}

/* Clean Live Badge */
.live-badge {
  box-shadow: none;
}

/* Clean Total Winnings */
.total-amount {
  font-size: 2.5rem !important;
  color: #0f9d58;
}

/* League Cards Hover Effect */
.league-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.league-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 
    0 0 30px rgba(15, 157, 88, 0.3),
    0 20px 50px rgba(0, 0, 0, 0.15);
}

.league-card:hover .league-icon {
  transform: scale(1.3);
  filter: drop-shadow(0 0 10px rgba(15, 157, 88, 0.5));
}

.league-icon {
  transition: all 0.4s ease;
  font-size: 3rem;
}

/* Flashy Trust Badges */
.trust-badge {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badge:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 
    0 0 30px rgba(26, 115, 232, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(26, 115, 232, 0.3);
}

.trust-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.trust-badge:hover .trust-icon {
  transform: scale(1.1);
}

/* Clean Footer Logo */
.footer-logo {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Scroll-triggered animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}