@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Global Styles - Vibrant Lottery Theme */
:root {
    /* Primary Colors - Vibrant & Exciting */
    --primary-purple: #8B5CF6;  /* Rich purple */
    --primary-pink: #EC4899;    /* Hot pink */
    --primary-gold: #F59E0B;    /* Golden yellow */
    --primary-green: #10B981;   /* Emerald green */
    --primary-blue: #3B82F6;    /* Bright blue */
    --primary-red: #EF4444;     /* Vibrant red */
    
    /* Background Gradients */
    --bg-gradient: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #1E1B4B 100%);
    --card-gradient: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #E0E7FF;
    --text-muted: #A5B4FC;
    
    /* Accent Colors */
    --accent-gold: #FCD34D;
    --accent-green: #34D399;
    --accent-pink: #F472B6;
    
    /* Dark Backgrounds */
    --bg-dark: #0F0E1F;
    --bg-card: rgba(30, 27, 75, 0.6);
    --bg-card-hover: rgba(59, 46, 129, 0.8);
    
    /* Borders */
    --border-color: rgba(139, 92, 246, 0.3);
    --border-hover: rgba(236, 72, 153, 0.5);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-gradient);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.3) 0%, transparent 50%);
  z-index: -1;
  animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, -20px) scale(1.1); }
  66% { transform: translate(20px, -10px) scale(0.9); }
}

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

/* Navigation */
.navbar {
  background: rgba(15, 14, 31, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-circles {
  position: relative;
  width: 40px;
  height: 30px;
  margin-left: 8px;
}

.nav-logo-circle {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-logo-circle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(1px);
}

.circle-1 {
  background: #EC4899;  /* Red/Pink ball */
  top: 0;
  left: 10px;
  z-index: 3;
}

.circle-2 {
  background: #3B82F6;  /* Blue ball */
  bottom: 0;
  left: 0;
  z-index: 2;
}

.circle-3 {
  background: #10B981;  /* Green ball */
  bottom: 0;
  right: 0;
  z-index: 1;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-pink);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(15, 14, 31, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  z-index: 999;
}

.mobile-menu-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: var(--primary-pink);
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Lottery Ball Lists */
.lottery-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.lottery-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.lottery-ball {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 1.1rem;
  box-shadow: 
    inset 0 -3px 0 rgba(0, 0, 0, 0.3),
    0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  flex-shrink: 0;
}

.lottery-ball::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(3px);
}

.ball-1 { background: linear-gradient(135deg, #EC4899, #BE185D); }
.ball-2 { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.ball-3 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.ball-4 { background: linear-gradient(135deg, #10B981, #059669); }
.ball-5 { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.ball-6 { background: linear-gradient(135deg, #EF4444, #DC2626); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--primary-pink);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-pink);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(236, 72, 153, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

/* Cards */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--card-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

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

.card-content {
  position: relative;
  z-index: 1;
}

/* Premium Lottery Balls */
.premium-ball {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 1.5rem;
  box-shadow: 
    inset 0 -4px 0 rgba(0, 0, 0, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.3s ease;
}

.premium-ball:hover {
  transform: scale(1.1) rotate(5deg);
}

.ball-pink { background: linear-gradient(135deg, #EC4899, #BE185D); }
.ball-blue { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.ball-green { background: linear-gradient(135deg, #10B981, #059669); }
.ball-yellow { background: linear-gradient(135deg, #F59E0B, #D97706); }
.ball-purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.ball-red { background: linear-gradient(135deg, #EF4444, #DC2626); }

.ball-shine {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  filter: blur(5px);
}

.blurred {
  filter: blur(8px);
  opacity: 0.5;
}

/* Feature Cards */
.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-pink);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Pricing Cards */
.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--primary-pink);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(236, 72, 153, 0.4);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  color: white;
  padding: 0.25rem 3rem;
  font-size: 0.75rem;
  font-weight: bold;
  transform: rotate(45deg);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer */
.legal-footer {
  background: rgba(15, 14, 31, 0.95);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  margin-top: 4rem;
}

.legal-content {
  text-align: center;
}

.legal-disclaimer {
  margin-bottom: 2rem;
}

.legal-disclaimer h4 {
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

.legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--primary-pink);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .lottery-ball {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .premium-ball {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  /* Ensure no overlapping on mobile */
  .card, .feature-card, .pricing-card {
    margin-bottom: 1.5rem;
  }
  
  /* Fix mobile navigation spacing */
  .mobile-menu-content {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
}

/* Lottogic Logo - More Accurate Design */
.lottogic-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.logo-circles {
  position: relative;
  width: 60px;
  height: 45px;
}

.logo-circle {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-circle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(1px);
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: var(--bg-gradient);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  position: relative;
  display: inline-block;
  padding: 0 0.15em;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.hero-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.hero-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Premium Lottery Machine */
.premium-lotto-machine {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 400px;
}

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

.machine-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--uk-lotto-green);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--uk-lotto-green);
  border-radius: 50%;
}

.status-dot.spinning {
  animation: pulse 1.5s ease-in-out infinite;
}

.machine-brand {
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.machine-body {
  margin-bottom: 1.5rem;
}

.machine-chamber {
  position: relative;
  height: 200px;
  background: radial-gradient(circle at center, rgba(29, 112, 184, 0.3), rgba(29, 112, 184, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.chamber-background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(227, 30, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 221, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(29, 112, 184, 0.2) 0%, transparent 70%);
}

.chamber-balls {
  position: absolute;
  inset: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chamber-ball {
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: absolute;
}

.chamber-ball:nth-child(1) { top: 20%; left: 15%; }
.chamber-ball:nth-child(2) { top: 30%; right: 20%; }
.chamber-ball:nth-child(3) { bottom: 25%; left: 25%; }
.chamber-ball:nth-child(4) { bottom: 35%; right: 15%; }
.chamber-ball:nth-child(5) { top: 50%; left: 50%; }

.chamber-ball.spinning {
  animation: rotate 3s linear infinite;
}

.chamber-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(29, 112, 184, 0.8), rgba(29, 112, 184, 0.4));
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-core {
  position: relative;
  color: var(--text-white);
  font-size: 1.5rem;
}

.ai-pulse {
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(227, 30, 36, 0.6);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

.machine-results {
  text-align: center;
}

.results-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.drawn-balls-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.premium-ball {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.premium-ball:hover {
  transform: scale(1.1);
}

.ball-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  z-index: 2;
}

.ball-shine {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(3px);
}

.bonus-ball {
  position: relative;
}

.bonus-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-gray);
  white-space: nowrap;
}

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

.prediction-confidence {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.confidence-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.confidence-fill {
  width: 87.3%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 3px;
  animation: appear 2s ease-out;
}

/* Ball Colors */
.ball-pink { background: linear-gradient(135deg, #ec4899, #be185d); }
.ball-blue { background: linear-gradient(135deg, #1d70b8, #003078); }
.ball-green { background: linear-gradient(135deg, #00703c, #047857); }
.ball-yellow { background: linear-gradient(135deg, #ffdd00, #d97706); }
.ball-purple { background: linear-gradient(135deg, #4c2c92, #7c3aed); }
.ball-red { background: linear-gradient(135deg, #e31e24, #c41e3a); }

/* Animations */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes appear {
  from { width: 0; }
  to { width: 87.3%; }
}

/* Moving lottery balls around the AI brain */
.orbit-ball {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: orbit 6s linear infinite;
    z-index: 1;
}

.orbit-ball:nth-child(3) { /* First orbit ball after brain and pulse */
    animation-delay: 0s;
    transform-origin: 60px 0;
    top: -30px;
    left: 50%;
    margin-left: -12.5px;
}

.orbit-ball:nth-child(4) {
    animation-delay: -1s;
    transform-origin: 0 60px;
    top: 50%;
    right: -30px;
    margin-top: -12.5px;
}

.orbit-ball:nth-child(5) {
    animation-delay: -2s;
    transform-origin: -60px 0;
    bottom: -30px;
    left: 50%;
    margin-left: -12.5px;
}

.orbit-ball:nth-child(6) {
    animation-delay: -3s;
    transform-origin: 0 -60px;
    top: 50%;
    left: -30px;
    margin-top: -12.5px;
}

.orbit-ball:nth-child(7) {
    animation-delay: -4s;
    transform-origin: 42px -42px;
    top: -21px;
    right: -21px;
}

.orbit-ball:nth-child(8) {
    animation-delay: -5s;
    transform-origin: -42px -42px;
    top: -21px;
    left: -21px;
}

/* Blurred numbers effect */
.premium-ball.blurred {
    filter: blur(2px);
    opacity: 0.8;
    animation: blur-pulse 2s ease-in-out infinite;
}

.premium-ball.blurred .ball-number {
    font-size: 1rem;
    font-weight: 900;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@keyframes orbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes blur-pulse {
    0%, 100% { 
        filter: blur(2px);
        opacity: 0.8;
    }
    50% { 
        filter: blur(3px);
        opacity: 0.6;
    }
}

/* Ball appearance animation */
@keyframes ballAppear {
    0% { 
        transform: scale(0.5); 
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.8;
    }
    100% { 
        transform: scale(1); 
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-stat {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .premium-lotto-machine {
    max-width: 320px;
    padding: 1.5rem;
  }
  
  .machine-chamber {
    height: 150px;
  }
  
  .premium-ball {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .premium-lotto-machine {
    max-width: 280px;
    padding: 1rem;
  }
  
  .machine-chamber {
    height: 120px;
  }
  
  .premium-ball {
    width: 30px;
    height: 30px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Legal Footer */
.legal-footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-disclaimer {
    margin-bottom: 2rem;
}

.legal-disclaimer h4 {
    color: var(--uk-lotto-red);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-disclaimer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.legal-disclaimer strong {
    color: var(--text-white);
    font-weight: 600;
}

.legal-links {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links a {
    color: var(--uk-lotto-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--uk-lotto-gold);
}

.legal-copyright {
    text-align: center;
}

.legal-copyright p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsible Gambling Notice */
.gambling-notice {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.gambling-notice h4 {
    color: var(--uk-lotto-red);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gambling-notice p {
    color: var(--text-white);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .legal-footer {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }
    
    .legal-disclaimer {
        margin-bottom: 1.5rem;
    }
    
    .legal-disclaimer h4 {
        font-size: 1rem;
    }
    
    .legal-disclaimer p {
        font-size: 0.9rem;
    }
    
    .legal-links {
        font-size: 0.9rem;
    }
}

/* Mobile Optimization - Concise Content */
@media (max-width: 768px) {
    /* Hide less critical content on mobile */
    .mobile-hide {
        display: none !important;
    }
    
    /* Reduce text content on mobile */
    .mobile-compact {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Smaller section padding on mobile */
    .section {
        padding: 2rem 0 !important;
    }
    
    /* Compact hero section */
    .hero {
        padding: 3rem 0 !important;
        min-height: auto !important;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Compact cards */
    .feature-card,
    .pricing-card,
    .comparison-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .feature-card h3,
    .pricing-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .feature-card p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    /* Compact pricing */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .pricing-features {
        padding: 1rem 0 !important;
    }
    
    .pricing-features li {
        padding: 0.25rem 0 !important;
        font-size: 0.9rem !important;
    }
    
    /* Compact comparison table */
    .comparison-table {
        font-size: 0.8rem !important;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.25rem !important;
    }
    
    /* Compact stats */
    .hero-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        margin: 2rem 0 !important;
    }
    
    .hero-stat {
        padding: 1rem !important;
    }
    
    .hero-stat h3 {
        font-size: 1.5rem !important;
    }
    
    /* Mobile-first button sizing */
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Compact navigation */
    .nav-links {
        gap: 0.5rem !important;
    }
    
    .nav-link {
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    /* Compact dashboard */
    .dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .dashboard-card {
        padding: 1rem !important;
    }
    
    .card-header h3 {
        font-size: 1.1rem !important;
    }
    
    /* Mobile contact support optimization */
    .contact-support-mobile {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background: var(--uk-lotto-blue);
        color: white;
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .contact-support-mobile:hover {
        transform: scale(1.1);
        background: var(--uk-lotto-red);
    }
    
    /* Hide desktop contact buttons on mobile */
    .contact-desktop-only {
        display: none !important;
    }
}

/* Desktop-only content */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    .contact-support-mobile {
        display: none !important;
    }
}

/* Improved mobile menu */
@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 9999;
        transition: left 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu.active {
        left: 0;
    }
    
    .mobile-menu-content {
        text-align: center;
    }
    
    .mobile-link {
        display: block;
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        margin: 1rem 0;
        padding: 1rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .mobile-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(10px);
    }
}

/* Ripple effect for buttons */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced mobile navigation button */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10000;
        position: relative;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-menu-btn span.active:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn span.active:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn span.active:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 1rem;
}

.user-dropdown-btn {
    background: linear-gradient(135deg, #1d70b8, #0066cc);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(29, 112, 184, 0.3);
}

.user-dropdown-btn:hover {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 112, 184, 0.4);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #1d70b8;
}

.dropdown-item:first-child {
    border-radius: 10px 10px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #e0e0e0;
}

.logout-btn {
    color: #e31e24 !important;
}

.logout-btn:hover {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}

/* Coming Soon Popup Styles */
.coming-soon-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #1d70b8, #0066cc);
    color: white;
    border-radius: 15px 15px 0 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 2rem;
    text-align: center;
}

.popup-body p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.popup-actions .btn-primary,
.popup-actions .btn-secondary {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

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

@keyframes slideUp {
    0% { 
        opacity: 0;
        transform: translateY(20px); 
    }
    100% { 
        opacity: 1;
        transform: translateY(0); 
    }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Ripple Effect for Buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Button styles need position relative for ripple effect */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

/* Professional Fixes and Enhancements */

/* Hero Title Professional Styling */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    position: relative;
    display: inline-block;
    padding: 0 0.15em;
}

/* Fix Button Hover States */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

/* Pricing Card Professional Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features {
    flex: 1;
    padding: 2rem 0;
}

.pricing-footer {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Comparison Table Professional */
.comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    min-width: 800px;
    width: 100%;
    background: rgba(30, 27, 75, 0.6);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: rgba(139, 92, 246, 0.05);
}

.feature-cell {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-cell strong {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.feature-cell small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.value-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.value-cell i {
    font-size: 1.2rem;
}

.value-cell.lottogic i {
    color: var(--accent-green);
}

.value-cell i.fa-times-circle {
    color: #ff4444;
}

.value-cell i.fa-minus-circle {
    color: #ffaa00;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 60%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.stat-card:hover::before {
    top: -150%;
    left: -150%;
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-pink);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ Professional Styling */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--primary-pink);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
}

.faq-item h4 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

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

/* CTA Section Professional */
.cta-section {
    text-align: center;
    padding: 4rem 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Remove any remaining UK lottery color references */
[style*="uk-lotto-red"] {
    color: var(--primary-pink) !important;
}

/* Mobile Professional Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
} 

/* Prediction popup improvements */
.prediction-popup .prediction-set {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.prediction-popup .prediction-set:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.prediction-popup .prediction-set:last-child {
    margin-bottom: 0;
}

.prediction-popup .prediction-numbers {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.prediction-popup .prediction-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.prediction-popup .prediction-number:hover {
    transform: scale(1.1);
}

.prediction-popup .prediction-number::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}

/* Loading spinner for prediction popup */
.prediction-popup .fa-spinner {
    font-size: 1.5rem;
    color: #00ff88;
} 