/* ============================================================
   SUREPREDICTIONS — Modern Dark Theme Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --bg:        #0a0e1a;
  --bg2:       #0f1525;
  --bg3:       #141c30;
  --panel:     #1a2340;
  --border:    rgba(255,255,255,0.07);
  --accent:    #00e676;
  --accent2:   #00bfa5;
  --gold:      #ffb300;
  --danger:    #ff4444;
  --text:      #e8eaf0;
  --muted:     #7b88a8;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 8px 32px rgba(0,0,0,0.4);
  --glow:      0 0 20px rgba(0,230,118,0.2);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* ── Background texture ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0,230,118,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(0,191,165,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

img, svg, video, canvas, iframe {
  max-width: 100%;
  height: auto;
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
  background: rgba(0,230,118,0.08);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}

.nav-cta:hover { background: #00ff8a !important; transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

/* ══════════════════════════════════
   PAGE HERO
══════════════════════════════════ */
.page-hero {
  padding: 60px 24px 40px;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.page-hero h1 span { color: var(--accent); }

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ══════════════════════════════════
   CARDS & PANELS
══════════════════════════════════ */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

.card-header h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex; align-items: center; gap: 8px;
}

.card-body { padding: 24px; }

/* ══════════════════════════════════
   STAT PILLS
══════════════════════════════════ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-pill {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.stat-pill:hover { transform: translateY(-3px); border-color: var(--accent); }

.stat-pill::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 0 0 2px 2px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  display: block;
}

.stat-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ══════════════════════════════════
   BADGES
══════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
}

.badge-green  { background: rgba(0,230,118,0.12); color: var(--accent); border: 1px solid rgba(0,230,118,0.25); }
.badge-orange { background: rgba(255,179,0,0.12); color: var(--gold);   border: 1px solid rgba(255,179,0,0.25); }
.badge-red    { background: rgba(255,68,68,0.12);  color: var(--danger); border: 1px solid rgba(255,68,68,0.25); }
.badge-blue   { background: rgba(100,180,255,0.12);color: #64b4ff;       border: 1px solid rgba(100,180,255,0.25); }
.badge-live   { background: var(--danger); color: #fff; animation: pulse 1.5s infinite; }

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

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: #00ff8a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,230,118,0.3); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: rgba(0,230,118,0.08); transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ff9800);
  color: #1a0a00;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,179,0,0.3); }

.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ══════════════════════════════════
   PREDICTION TABLE
══════════════════════════════════ */
.pred-table { width: 100%; border-collapse: collapse; }

.pred-table thead th {
  background: var(--bg3);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  text-align: left;
}

.pred-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.pred-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.pred-table td { padding: 16px; color: var(--text); font-size: 0.9rem; }

.league-sep td {
  background: rgba(0,230,118,0.05);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 16px;
}

.match-teams { font-weight: 600; }
.match-teams .vs { color: var(--muted); font-size: 0.8rem; margin: 0 6px; font-weight: 400; }

/* ══════════════════════════════════
   MATCH CARD
══════════════════════════════════ */
.match-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  margin-bottom: 16px;
}

.match-card:hover { transform: translateY(-3px); border-color: rgba(0,230,118,0.2); }

.match-card-header {
  padding: 12px 20px;
  background: var(--bg3);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}

.match-card-body { padding: 24px; }

.teams-display {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
}

.vs-divider {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--bg3);
  padding: 8px 14px;
  border-radius: 8px;
}

.odds-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.odd-box {
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.odd-box:hover { border-color: var(--accent); background: rgba(0,230,118,0.05); }

.odd-box.selected {
  border-color: var(--accent);
  background: rgba(0,230,118,0.1);
  box-shadow: 0 0 16px rgba(0,230,118,0.15);
}

.odd-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.odd-value { font-family: 'JetBrains Mono', monospace; font-size: 1.3rem; font-weight: 600; color: var(--white); }
.odd-box.selected .odd-value { color: var(--accent); }

/* ══════════════════════════════════
   PRICING CARDS
══════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

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

.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255,179,0,0.15);
}

.popular-badge {
  position: absolute;
  top: 20px; right: -30px;
  background: var(--gold);
  color: #1a0a00;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 44px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.pricing-header { padding: 32px 28px; text-align: center; border-bottom: 1px solid var(--border); }

.plan-name {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}

.plan-price sup { font-size: 1.2rem; vertical-align: super; }
.plan-price sub { font-size: 1rem; color: var(--muted); }

.pricing-features { padding: 28px; }

.feature-line {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.feature-line:last-child { border-bottom: none; }

.feature-line .check { color: var(--accent); font-size: 0.9rem; }
.feature-line .cross { color: var(--danger); font-size: 0.9rem; }

/* ══════════════════════════════════
   FORM ELEMENTS
══════════════════════════════════ */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.93rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,230,118,0.1); }
.form-input::placeholder { color: var(--muted); }

textarea.form-input { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════
   RESULT ITEMS
══════════════════════════════════ */
.result-chip {
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
}

.result-chip .date { color: var(--muted); font-size: 0.72rem; margin-bottom: 4px; }
.result-chip .odds { color: var(--accent); font-weight: 600; font-size: 1rem; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.75fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  min-width: 0;
}

.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 16px; line-height: 1.7; }

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  min-width: 0;
}

.footer-col {
  min-width: 0;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li { margin-bottom: 0; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a,
.footer-col p {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}

.footer-bottom p { color: var(--muted); font-size: 0.82rem; }

.disclaimer-box {
  background: rgba(255,179,0,0.06);
  border: 1px solid rgba(255,179,0,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

.disclaimer-box strong { color: var(--gold); }

/* ══════════════════════════════════
   TABS
══════════════════════════════════ */
.tabs { display: flex; gap: 4px; margin-bottom: 24px; background: var(--bg3); border-radius: var(--radius); padding: 4px; width: fit-content; }

.tab-btn {
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.tab-btn.active { background: var(--panel); color: var(--text); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .footer-col-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .teams-display { grid-template-columns: 1fr; gap: 8px; }
  .tabs {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .tab-btn { flex: 1 1 140px; }
  .card-header, .match-card-header { flex-wrap: wrap; gap: 10px; }
  .ticker-content span { margin: 0 18px; }
  #notificationContainer {
    top: 76px;
    left: 12px;
    right: 12px;
  }
  .toast {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 40px 0 24px; }
  .tabs { gap: 6px; }
  .tab-btn { padding: 10px 16px; }
  .footer {
    padding: 48px 16px 24px;
  }
  .footer-grid {
    gap: 24px;
    margin-bottom: 32px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-col {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
  }
  .footer-col:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* ══════════════════════════════════
   UTILITIES
══════════════════════════════════ */
.text-accent { color: var(--accent); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-danger { color: var(--danger); }
.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.flex   { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ══════════════════════════════════
   SECTION TITLE
══════════════════════════════════ */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.section-title span { color: var(--accent); }

.section-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 32px; }

/* ══════════════════════════════════
   LIVE TICKER (scrolling)
══════════════════════════════════ */
.ticker-wrap {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

.ticker-content span { margin: 0 32px; }
.ticker-content .hot { color: var(--accent); font-weight: 600; }

@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════
   CONFIDENCE METER
══════════════════════════════════ */
.conf-bar {
  height: 4px;
  background: var(--bg3);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.conf-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  transition: width 1s ease;
}

/* ══════════════════════════════════
   NOTIFICATIONS TOAST
══════════════════════════════════ */
#notificationContainer {
  position: fixed;
  top: 80px; right: 20px;
  z-index: 999;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  max-width: 320px;
  box-shadow: var(--shadow);
  animation: slideIn 0.3s ease;
}

/* ============================================================
   PREMIUM CONTENT LOCKING STYLES
   ============================================================ */

.premium-locked {
  position: relative;
  overflow: hidden;
}

.premium-locked::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
  pointer-events: none;
}

.premium-locked .prediction-tip,
.premium-locked .prediction-odds,
.premium-locked .prediction-confidence,
.premium-locked .prediction-analyst {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.premium-lock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
  pointer-events: none;
}

.premium-lock-overlay .lock-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.premium-lock-overlay .lock-text {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.premium-lock-overlay .lock-subtext {
  color: var(--muted);
  font-size: 0.8rem;
}

.premium-card {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(255, 179, 0, 0.1), rgba(255, 179, 0, 0.05));
  position: relative;
}

.premium-card::before {
  content: '👑 PREMIUM';
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gold);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 15;
}

/* Mobile-specific premium locking */
@media (max-width: 768px) {
  .premium-locked::before {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .premium-locked .prediction-tip,
  .premium-locked .prediction-odds,
  .premium-locked .prediction-confidence,
  .premium-locked .prediction-analyst {
    filter: blur(8px);
    -webkit-filter: blur(8px);
  }
  
  .premium-lock-overlay .lock-icon {
    font-size: 2.5rem;
  }
  
  .premium-lock-overlay .lock-text {
    font-size: 1rem;
  }
}

/* High-DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .premium-locked::before {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .premium-locked .prediction-tip,
  .premium-locked .prediction-odds,
  .premium-locked .prediction-confidence,
  .premium-locked .prediction-analyst {
    filter: blur(8px);
    -webkit-filter: blur(8px);
  }
}

@keyframes slideIn { from { transform: translateX(100%); opacity:0; } to { transform: translateX(0); opacity:1; } }
