/* ===== BetWizard.uk - Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0a0a1a;
  --bg-secondary: #0f0f2a;
  --bg-card: #12123a;
  --bg-card-hover: #1a1a4a;
  --blue: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.3);
  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.3);
  --purple: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.3);
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(59, 130, 246, 0.15);
  --border-hover: rgba(59, 130, 246, 0.4);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; line-height: 1.3; }

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

img { max-width: 100%; height: auto; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== Particles Canvas ===== */
#particles-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(10, 10, 26, 0.95); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar .logo {
  font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar .logo span { font-weight: 400; opacity: 0.7; -webkit-text-fill-color: var(--text-secondary); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 1px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff !important; padding: 10px 24px; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--blue-glow);
  color: #fff !important;
}
.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }

/* ===== Hero Section ===== */
.hero {
  position: relative; padding: 160px 0 100px; text-align: center; z-index: 1;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59, 130, 246, 0.1); border: 1px solid var(--border);
  padding: 8px 20px; border-radius: 100px; font-size: 0.8rem;
  color: var(--blue); font-weight: 500; margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 10px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: all var(--transition);
  border: none; font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--blue-glow); color: #fff; }
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--blue); background: rgba(59, 130, 246, 0.05); color: var(--text-primary); }

/* ===== Section ===== */
.section { position: relative; z-index: 1; padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--blue); margin-bottom: 12px;
}

/* ===== Cards / Features ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(59, 130, 246, 0.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== How It Works ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; counter-reset: step; }
.step {
  text-align: center; padding: 40px 24px; position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step); display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700;
  color: #fff; margin: 0 auto 24px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 12px; }
.step p { color: var(--text-secondary); font-size: 0.9rem; }

/* ===== Stats Preview ===== */
.stats-preview {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; overflow: hidden; }
.stats-grid .stat-number, .stats-grid .stat-value { font-size: clamp(1.5rem, 5vw, 2.5rem); word-break: break-word; overflow-wrap: break-word; }
.stat-item h3 {
  font-size: clamp(1.5rem, 5vw, 2.5rem); font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  overflow-wrap: break-word; word-break: break-word;
}
.stat-item p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 4px; }

/* ===== Bookmakers Table ===== */
.bookmaker-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.bookmaker-table th, .bookmaker-table td {
  padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border);
}
.bookmaker-table th {
  color: var(--text-secondary); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.bookmaker-table td { font-size: 0.95rem; }
.bookmaker-table tr:hover td { background: rgba(59, 130, 246, 0.03); }
.bookmaker-table .rating { color: var(--green); font-weight: 600; }
.bookmaker-table .visit-btn {
  display: inline-block; padding: 8px 20px; border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; font-size: 0.85rem; font-weight: 600;
  transition: all var(--transition);
}
.bookmaker-table .visit-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px var(--blue-glow); color: #fff; }
.affiliate-note { color: var(--text-muted); font-size: 0.75rem; margin-top: 12px; }

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.testimonial-card .stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; }
.testimonial-card blockquote { color: var(--text-secondary); font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.testimonial-card .author { font-weight: 600; font-size: 0.9rem; }
.testimonial-card .role { color: var(--text-muted); font-size: 0.8rem; }

/* ===== Responsible Gambling Banner ===== */
.rg-banner {
  background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius); padding: 32px; text-align: center;
}
.rg-banner h3 { color: #f59e0b; margin-bottom: 12px; }
.rg-banner p { color: var(--text-secondary); font-size: 0.9rem; max-width: 700px; margin: 0 auto; }
.rg-banner a { color: #f59e0b; font-weight: 600; }

/* ===== Predictions Dashboard ===== */
.dashboard-header {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}
.filters { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-select, .date-input {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); padding: 10px 16px; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color var(--transition);
}
.filter-select:focus, .date-input:focus { outline: none; border-color: var(--blue); }

.predictions-table { width: 100%; border-collapse: collapse; }
.predictions-table th {
  padding: 14px 16px; text-align: left; font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
  cursor: pointer; user-select: none; white-space: nowrap;
}
.predictions-table th:hover { color: var(--blue); }
.predictions-table th .sort-icon { margin-left: 4px; opacity: 0.5; }
.predictions-table td {
  padding: 16px; border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  font-size: 0.9rem;
}
.predictions-table tr:hover td { background: rgba(59, 130, 246, 0.03); }
.confidence-bar {
  display: inline-flex; align-items: center; gap: 8px;
}
.confidence-bar .bar {
  width: 60px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.confidence-bar .bar-fill { height: 100%; border-radius: 3px; transition: width 0.5s ease; }
.confidence-high .bar-fill { background: var(--green); }
.confidence-medium .bar-fill { background: #f59e0b; }
.confidence-low .bar-fill { background: #ef4444; }
.value-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
}
.value-high { background: rgba(16, 185, 129, 0.15); color: var(--green); }
.value-medium { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.value-low { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.sport-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-secondary);
}
.demo-notice {
  background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-sm); padding: 16px 24px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px; font-size: 0.9rem;
}
.demo-notice .icon { font-size: 1.2rem; }

/* ===== About Page ===== */
.about-content { max-width: 800px; margin: 0 auto; }
.about-content h2 { font-size: 1.5rem; margin: 48px 0 16px; color: var(--text-primary); }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; }
.about-content ul { color: var(--text-secondary); padding-left: 24px; margin-bottom: 16px; }
.about-content li { margin-bottom: 8px; }

/* ===== Contact Form ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; color: var(--text-secondary); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); padding: 14px 16px; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.form-group textarea { min-height: 140px; resize: vertical; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.checkbox-group label { font-size: 0.85rem; color: var(--text-secondary); }
.hp-field { position: absolute; left: -9999px; }
.form-success {
  display: none; text-align: center; padding: 40px;
  background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
}
.form-success.show { display: block; }
.form-success h3 { color: var(--green); margin-bottom: 12px; }
.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.contact-info-card h3 { margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-info-item .icon { font-size: 1.3rem; color: var(--blue); }
.contact-info-item p { color: var(--text-secondary); font-size: 0.9rem; }
.contact-info-item strong { color: var(--text-primary); display: block; margin-bottom: 4px; }

/* ===== Legal Pages ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-content .last-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 12px; color: var(--text-primary); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal-content p { color: var(--text-secondary); margin-bottom: 12px; font-size: 0.95rem; }
.legal-content ul, .legal-content ol { color: var(--text-secondary); padding-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; font-size: 0.95rem; }
.legal-content a { color: var(--blue); }

/* ===== Footer ===== */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px 0 24px; background: var(--bg-secondary);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo {
  font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block; margin-bottom: 12px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.footer h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--text-secondary); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: var(--text-muted); font-size: 0.85rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-badges { display: flex; gap: 12px; align-items: center; }
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #ef4444; color: #ef4444;
  font-weight: 800; font-size: 0.8rem;
}
.footer .affiliate-disclosure {
  color: var(--text-muted); font-size: 0.75rem; margin-top: 16px;
  padding: 12px 16px; background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.04);
}
.gamble-aware {
  display: flex; align-items: center; gap: 8px; color: var(--text-muted);
  font-size: 0.8rem; font-weight: 500;
}
.gamble-aware a { color: #f59e0b; }

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 20px 24px; display: none;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.cookie-banner.show { display: block; }
.cookie-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-banner p { color: var(--text-secondary); font-size: 0.85rem; flex: 1; }
.cookie-banner a { color: var(--blue); }
.cookie-buttons { display: flex; gap: 12px; }
.cookie-btn {
  padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; border: none; font-family: 'Inter', sans-serif; transition: all var(--transition);
}
.cookie-accept { background: var(--blue); color: #fff; }
.cookie-accept:hover { background: #2563eb; }
.cookie-decline { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.cookie-decline:hover { border-color: var(--blue); }

/* ===== Page Header ===== */
.page-header {
  padding: 140px 0 60px; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; }
.page-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg-primary); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero { padding: 120px 0 60px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dashboard-header { flex-direction: column; }
  .predictions-table { font-size: 0.8rem; }
  .predictions-table th, .predictions-table td { padding: 10px 8px; }
  .bookmaker-table { font-size: 0.8rem; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-grid .stat-number, .stats-grid .stat-value { font-size: 1.4rem; }
  .cookie-inner { flex-direction: column; text-align: center; }
}

/* ===== Loading Animation ===== */
.page-loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-primary); display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.5s ease;
}
.page-loader.fade-out { opacity: 0; pointer-events: none; }
.wizard-loader {
  width: 60px; height: 60px; position: relative;
}
.wizard-loader::before {
  content: '✦'; position: absolute; font-size: 2rem;
  animation: wizardSpin 1.5s ease-in-out infinite;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@keyframes wizardSpin {
  0% { transform: rotate(0deg) scale(1); opacity: 1; }
  50% { transform: rotate(180deg) scale(1.3); opacity: 0.6; }
  100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

/* ===== Scroll animations ===== */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Glow effects ===== */
.glow-border { position: relative; }
.glow-border::after {
  content: ''; position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(135deg, var(--blue), var(--green), var(--purple));
  opacity: 0; transition: opacity var(--transition); z-index: -1;
  filter: blur(8px);
}
.glow-border:hover::after { opacity: 0.3; }

/* Table responsive wrapper */
.table-wrap { overflow-x: auto; }

/* ===== Pick Cards ===== */
.picks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.pick-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; transition: all var(--transition);
}
.pick-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.pick-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.pick-time { color: var(--text-muted); font-size: 0.8rem; }
.pick-match { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.pick-prediction {
  display: inline-block; background: rgba(59,130,246,0.12); color: var(--blue);
  padding: 6px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px;
}
.pick-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.pick-stat { display: flex; flex-direction: column; gap: 4px; }
.pick-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.pick-value { font-size: 1rem; font-weight: 600; }
.pick-bookie {
  display: block; text-align: center; padding: 10px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; font-weight: 600; font-size: 0.85rem; transition: all var(--transition);
}
.pick-bookie:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--blue-glow); color: #fff; }

/* ===== Blog ===== */
.blog-grid { display: grid; gap: 24px; }
.blog-card {
  display: block; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: all var(--transition);
  color: inherit; text-decoration: none;
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-glow); color: inherit; }
.blog-card h2 { font-size: 1.3rem; margin-bottom: 12px; color: var(--text-primary); }
.blog-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 12px; }
.blog-meta { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 8px; }
.blog-read { color: var(--blue); font-weight: 600; font-size: 0.9rem; }

/* ===== Loading State ===== */
.loading-state {
  text-align: center; padding: 60px 0; color: var(--text-muted);
}
.loading-state .wizard-loader { margin: 0 auto 16px; }
.loading-state p { font-size: 0.9rem; }

/* ===== Bet Cards (Dashboard Style) ===== */
.bet-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 20px;
}
.bet-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}
.bet-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.bet-card .edge-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 2px 0;
}
.bet-card .event-name {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.bet-card .value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 6px;
  margin-bottom: 10px;
}
.bet-card .vg-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.bet-card .vg-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bet-card .vg-val {
  font-size: 0.88rem;
  font-weight: 700;
}
.bet-card .card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  padding: 4px 0;
}
.bet-card .card-row .label {
  color: var(--text-muted);
}
.badge-market {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(59,130,246,0.12);
  color: var(--blue);
  white-space: nowrap;
}
.badge-confidence {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid;
}
.bet-now-btn {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--green), #059669);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  letter-spacing: 0.5px;
}
.bet-now-btn:hover {
  background: linear-gradient(135deg, #059669, var(--green));
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
  transform: translateY(-1px);
  color: #fff;
}

/* Probability comparison bars */
.prob-compare {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prob-bar-wrap {
  display: grid;
  grid-template-columns: 110px 1fr 45px;
  align-items: center;
  gap: 8px;
}
.prob-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.prob-bar {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.prob-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}
.prob-fill.prob-ai {
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.prob-fill.prob-bm {
  background: rgba(148,163,184,0.4);
}
.prob-pct {
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 600px) {
  .bet-cards-grid {
    grid-template-columns: 1fr;
  }
  .prob-bar-wrap {
    grid-template-columns: 90px 1fr 40px;
  }
}
