/* ===========================================
   AI BETPICKS — Premium Design System
   =========================================== */

/* --- Custom Properties --- */
:root {
  --bg-primary: #0B0F19;
  --bg-secondary: #111827;
  --bg-tertiary: #1a1f35;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);

  --accent-gold: #F7B731;
  --accent-gold-dim: rgba(247, 183, 49, 0.15);
  --accent-purple: #8B5CF6;
  --accent-blue: #3B82F6;

  --success: #10B981;
  --success-dim: rgba(16, 185, 129, 0.15);
  --danger: #EF4444;
  --danger-dim: rgba(239, 68, 68, 0.15);
  --warning: #F59E0B;
  --live: #EF4444;

  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(247, 183, 49, 0.25);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --glass-bg: rgba(17, 24, 39, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 30px rgba(247,183,49,0.12);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--border);
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800;
  color: var(--text-primary); text-decoration: none;
}
.brand-ext {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold);
  opacity: 0.8;
  margin-left: 2px;
}
.navbar-brand img { height: 32px; width: 32px; border-radius: 6px; }
.navbar-links { display: flex; gap: 1.8rem; align-items: center; }
.navbar-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--accent-gold); }
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--danger-dim); color: var(--live);
  padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
}
.live-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--live); animation: pulse 1.5s infinite;
}

/* --- Hero --- */
.hero {
  margin-top: 64px; padding: 4rem 2rem 3rem;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0B0F19 0%, #1a1040 40%, #0f2040 70%, #0B0F19 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(247,183,49,0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-date {
  font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 0.8rem;
}
.hero h1 {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800;
  line-height: 1.15; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-secondary); max-width: 540px; margin: 0 auto 1.5rem;
}
.hero-ai-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-gold-dim); border: 1px solid var(--border-accent);
  padding: 8px 18px; border-radius: 30px; font-size: 0.82rem; font-weight: 600;
  color: var(--accent-gold);
}
.hero-ai-badge svg { width: 16px; height: 16px; }

/* --- Stats Bar --- */
.stats-bar {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--bg-secondary); border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; min-width: 120px; }
.stat-value {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--accent-gold);
}
.stat-value.success { color: var(--success); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- Sport Filters --- */
.sport-filters {
  display: flex; gap: 0.5rem; padding: 1.5rem 2rem;
  max-width: 1280px; margin: 0 auto; overflow-x: auto;
}
.sport-filters::-webkit-scrollbar { display: none; }
.sport-filter-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 30px;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-secondary); font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  white-space: nowrap; transition: all 0.25s ease;
}
.sport-filter-btn:hover { border-color: var(--accent-gold); color: var(--text-primary); }
.sport-filter-btn.active {
  background: var(--accent-gold-dim); border-color: var(--accent-gold);
  color: var(--accent-gold); font-weight: 600;
}
.sport-filter-btn .count {
  background: rgba(255,255,255,0.1); padding: 1px 7px; border-radius: 10px; font-size: 0.75rem;
}
.sport-filter-btn.active .count { background: rgba(247,183,49,0.2); }

/* --- Content Layout --- */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

/* Sidebar Track Record Styling */
.track-record-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tr-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.tr-item strong {
    color: var(--text-primary);
}

.tr-highlight {
    margin-top: 0.5rem;
    padding: 0.8rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 0.8rem;
    border-bottom: none;
}

.tr-highlight strong {
    color: var(--accent-color);
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .content-layout {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: 
            "results"
            "tips"
            "sidebar";
        gap: 1.5rem;
    }
    
    #results {
        grid-area: results;
        width: 100%;
    }
    
    .tips-feed {
        grid-area: tips;
        width: 100%;
    }
    
    .sidebar {
        grid-area: sidebar;
        width: 100%;
    }
}

/* --- Tip Card --- */
.tip-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.4rem;
  transition: all 0.3s ease; position: relative;
  animation: fadeInUp 0.5s ease both;
}
.tip-card:hover {
  background: var(--bg-card-hover); border-color: var(--glass-border);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.tip-card.featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(247,183,49,0.05) 0%, var(--bg-card) 100%);
}
.tip-card.featured::before {
  content: '⭐ AI PICK OF THE DAY'; position: absolute; top: -1px; left: 20px;
  background: linear-gradient(135deg, var(--accent-gold), #e0a020);
  color: #000; font-size: 0.65rem; font-weight: 700; padding: 3px 12px;
  border-radius: 0 0 8px 8px; letter-spacing: 1px;
}
.tips-feed { display: flex; flex-direction: column; gap: 1rem; }

.tip-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.tip-league {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-muted); font-weight: 500;
}
.tip-league .sport-icon { font-size: 1rem; }
.tip-status {
  padding: 3px 10px; border-radius: 12px; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.tip-status.upcoming { background: rgba(59,130,246,0.15); color: var(--accent-blue); }
.tip-status.live { background: var(--danger-dim); color: var(--live); animation: pulse 1.5s infinite; }
.tip-status.won { background: var(--success-dim); color: var(--success); }
.tip-status.lost { background: var(--danger-dim); color: var(--danger); }

.tip-matchup {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; gap: 1rem;
}
.tip-team {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; flex: 1; text-align: center;
}
.team-abbr {
  width: 48px; height: 48px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-weight: 700;
  font-size: 0.85rem; font-family: var(--font-heading);
  background: var(--bg-tertiary); border: 1px solid var(--border);
}
.team-name { font-size: 0.82rem; font-weight: 500; color: var(--text-secondary); }
.tip-vs {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.tip-vs-text {
  font-size: 0.7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase;
}
.tip-time { font-size: 0.75rem; color: var(--text-muted); }
.tip-live-score {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--live);
}
.tip-result-score {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--text-primary);
}

.tip-prediction {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-tertiary); border-radius: var(--radius-md);
  padding: 0.8rem 1rem; margin-bottom: 0.8rem; gap: 1rem;
}
.prediction-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.prediction-value { font-weight: 700; font-size: 0.95rem; color: var(--accent-gold); }
.prediction-odds {
  background: var(--accent-gold-dim); color: var(--accent-gold);
  padding: 4px 12px; border-radius: 8px; font-weight: 700; font-size: 0.9rem;
}

.tip-confidence { margin-bottom: 0.8rem; }
.confidence-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.confidence-label { font-size: 0.72rem; color: var(--text-muted); }
.confidence-value { font-size: 0.82rem; font-weight: 700; }
.confidence-bar {
  height: 4px; border-radius: 2px; background: var(--bg-secondary); overflow: hidden;
}
.confidence-fill {
  height: 100%; border-radius: 2px; transition: width 1s ease;
  background: linear-gradient(90deg, var(--danger), var(--warning), var(--success));
}

.tip-reasoning {
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5;
  margin-bottom: 1rem; padding: 0.6rem 0;
  border-top: 1px solid var(--border);
}

.tip-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.bet-btn {
  flex: 1; min-width: 120px; padding: 8px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg-tertiary);
  color: var(--text-secondary); font-size: 0.78rem; font-weight: 500;
  cursor: pointer; text-align: center; transition: all 0.2s;
  font-family: var(--font-body);
}
.bet-btn:hover {
  border-color: var(--accent-gold); color: var(--accent-gold);
  background: var(--accent-gold-dim);
}
.bet-btn.primary {
  background: linear-gradient(135deg, var(--accent-gold), #e0a020);
  color: #000; border: none; font-weight: 700;
}
.bet-btn.primary:hover { filter: brightness(1.1); transform: scale(1.02); }

/* --- Affiliate Banner (inline) --- */
.affiliate-banner-inline {
  background: linear-gradient(135deg, var(--bg-tertiary), rgba(247,183,49,0.05));
  border: 1px solid var(--border-accent); border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.affiliate-info h3 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--accent-gold); margin-bottom: 2px;
}
.affiliate-info p { font-size: 0.82rem; color: var(--text-secondary); }
.affiliate-cta {
  padding: 10px 24px; border-radius: 30px; border: none;
  background: linear-gradient(135deg, var(--accent-gold), #e0a020);
  color: #000; font-weight: 700; font-size: 0.85rem;
  cursor: pointer; white-space: nowrap; transition: all 0.2s;
  font-family: var(--font-body);
}
.affiliate-cta:hover { filter: brightness(1.1); transform: scale(1.03); }

/* --- Sidebar --- */
.sidebar { display: flex; flex-direction: column; gap: 1.2rem; }
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.2rem;
}
.sidebar-card h3 {
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700;
  margin-bottom: 0.8rem; color: var(--text-primary);
}
.sidebar-bookie {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
}
.sidebar-bookie:last-child { border-bottom: none; }
.bookie-name { font-size: 0.85rem; font-weight: 600; }
.bookie-bonus { font-size: 0.72rem; color: var(--text-muted); }
.bookie-btn {
  padding: 5px 14px; border-radius: 6px; border: 1px solid var(--border);
  background: transparent; color: var(--accent-gold); font-size: 0.75rem;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.bookie-btn:hover { background: var(--accent-gold-dim); }

.sidebar-newsletter input {
  width: 100%; padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg-tertiary);
  color: var(--text-primary); font-size: 0.85rem; margin-bottom: 0.6rem;
  font-family: var(--font-body);
}
.sidebar-newsletter input:focus { outline: none; border-color: var(--accent-gold); }
.sidebar-newsletter button {
  width: 100%; padding: 10px; border-radius: var(--radius-sm); border: none;
  background: linear-gradient(135deg, var(--accent-gold), #e0a020);
  color: #000; font-weight: 700; font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s; font-family: var(--font-body);
}
.sidebar-newsletter button:hover { filter: brightness(1.1); }

.sidebar-record-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 0;
}
.sidebar-record-item .label { font-size: 0.82rem; color: var(--text-secondary); }
.sidebar-record-item .value { font-weight: 700; font-size: 0.9rem; }
.sidebar-record-item .value.success { color: var(--success); }
.sidebar-record-item .value.danger { color: var(--danger); }

/* --- Next Update Timer --- */
.next-update {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.8rem; background: var(--bg-secondary); border-bottom: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
}
.next-update .timer { color: var(--accent-gold); font-weight: 700; font-family: var(--font-heading); }

/* --- Sidebar Results (Mini Cards) --- */
.results-sidebar-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tip-card.settled.mini {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  padding: 12px;
  border-radius: 8px;
  transition: transform 0.2s;
}

.tip-card.settled.mini:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.05);
}

.tip-card.settled.mini.won { border-left-color: #10b981; }
.tip-card.settled.mini.lost { border-left-color: #ef4444; }

.tip-header-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.league-tag-mini {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge-mini {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.status-badge-mini.won { background: #10b981; color: white; }
.status-badge-mini.lost { background: #ef4444; color: white; }

.tip-matchup-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.tip-matchup-mini .teams {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.tip-matchup-mini .score {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-left: 10px;
}

.prediction-mini {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.no-data-mini {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 2.5rem 2rem 1.5rem; margin-top: 2rem;
}
.footer-content {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2rem;
}
.footer-brand h3 {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  color: var(--accent-gold); margin-bottom: 0.5rem;
}
.footer-contact {
  color: var(--accent-gold) !important;
  font-weight: 600;
  font-size: 0.9rem;
}
.footer-contact:hover {
  text-decoration: underline !important;
}
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; max-width: 320px; }
.footer-links h4 {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 0.8rem; text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links a {
  display: block; font-size: 0.82rem; color: var(--text-muted);
  padding: 3px 0; transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-gold); }
.footer-disclaimer {
  max-width: 1280px; margin: 2rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--border); text-align: center;
}
.footer-disclaimer p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.8; }
.footer-disclaimer .age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--danger); color: var(--danger);
  font-weight: 800; font-size: 0.7rem; margin: 0 4px; vertical-align: middle;
}
.footer-bottom {
  text-align: center; padding-top: 1rem;
  font-size: 0.72rem; color: var(--text-muted);
}

/* --- Animations --- */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.tip-card:nth-child(1) { animation-delay: 0s; }
.tip-card:nth-child(2) { animation-delay: 0.06s; }
.tip-card:nth-child(3) { animation-delay: 0.12s; }
.tip-card:nth-child(4) { animation-delay: 0.18s; }
.tip-card:nth-child(5) { animation-delay: 0.24s; }
.tip-card:nth-child(6) { animation-delay: 0.30s; }

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .stats-bar { gap: 1rem; }
  .stat-item { min-width: 80px; }
  .stat-value { font-size: 1.2rem; }
  .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .navbar-links { display: none; }
  .menu-toggle { display: block; }
  .navbar-links.active {
    display: flex; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: var(--bg-primary);
    padding: 1rem 2rem; gap: 1rem; border-bottom: 1px solid var(--border);
  }
  .tip-matchup { flex-direction: column; gap: 0.5rem; }
  .content-layout { padding: 0 1rem 2rem; }
  .sport-filters { padding: 1rem; }
}
@media (max-width: 480px) {
  .hero { padding: 2.5rem 1rem 2rem; }
  .hero h1 { font-size: 1.6rem; }
  .tip-card { padding: 1rem; }
  .affiliate-banner-inline { flex-direction: column; text-align: center; }
}
/* ---- Recent Results (Sidebar) ---- */
.results-sidebar-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.tip-card.settled {
    padding: 0.8rem;
    border-radius: 1rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tip-card.settled .tip-header {
    margin: 0;
    font-size: 0.7rem;
}

.tip-card.settled .tip-matchup {
    margin: 0;
    font-size: 0.8rem;
    justify-content: flex-start;
    gap: 0.5rem;
}

.tip-card.settled .team-name {
    font-size: 0.75rem;
}

.tip-card.settled .tip-result {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-left: auto;
}

.tip-card.settled.won { 
    border-left: 3px solid #10b981; 
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(30, 41, 59, 0.4) 100%);
}

.tip-card.settled.lost { 
    border-left: 3px solid #ef4444; 
    opacity: 0.8; 
}

.status-badge.won { background: #10b981; color: white; }
.status-badge.lost { background: #ef4444; color: white; }

@media (max-width: 768px) {
    .sidebar {
        padding: 0 1rem;
    }
}
/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 2rem;
    border-radius: 1.5rem;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.hidden { display: none; }

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-content a { color: var(--accent-color); }

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.6rem 1.2rem;
    border-radius: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-cookie.accept {
    background: var(--accent-color);
    color: white;
}

.btn-cookie.decline {
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
}

.btn-cookie:hover { transform: translateY(-2px); filter: brightness(1.1); }

@keyframes slideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@media (max-width: 600px) {
    .cookie-content { flex-direction: column; text-align: center; }
}
