/* ============================================
   IndiaFXGuide — Global Styles
   Dark theme, Indian Blue + Saffron accent
   ============================================ */

/* --- Fonts --- */
@import url('https://api.fontshare.com/v2/css?f[]=clash-grotesk@400,500,600,700&f[]=cabinet-grotesk@400,500,700&f[]=satoshi@400,500,700&f[]=general-sans@400,500,600&display=swap');

/* --- Custom Properties --- */
:root {
  --blue: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-dark: #1e3a8a;
  --saffron: #fb923c;
  --saffron-light: #fdba74;
  --saffron-dark: #ea580c;
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --bg-card-hover: #1f2b42;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e293b;
  --border-light: #334155;
  --success: #22c55e;
  --danger: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.35);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.5);
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Clash Grotesk', 'Satoshi', system-ui, sans-serif;
  --font-body: 'Cabinet Grotesk', 'General Sans', system-ui, sans-serif;
  --container: 1200px;
}

/* --- Reset --- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  background:var(--bg-primary);
  color:var(--text-primary);
  line-height:1.7;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{max-width:100%;display:block}
a{color:var(--saffron);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--saffron-light)}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:700;line-height:1.25;color:var(--text-primary)}

/* --- Utility --- */
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
.accent{color:var(--saffron)}
.blue{color:var(--blue-light)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.badge{
  display:inline-block;
  padding:4px 14px;
  border-radius:100px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.badge--blue{background:rgba(29,78,216,.2);color:var(--blue-light);border:1px solid rgba(29,78,216,.3)}
.badge--saffron{background:rgba(251,146,60,.15);color:var(--saffron);border:1px solid rgba(251,146,60,.25)}

/* --- Buttons --- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 32px;
  border-radius:var(--radius);
  font-family:var(--font-heading);
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  border:none;
  transition:all var(--transition);
  text-transform:none;
  letter-spacing:.2px;
}
.btn--primary{
  background:linear-gradient(135deg,var(--blue),var(--blue-light));
  color:#fff;
  box-shadow:0 4px 20px rgba(29,78,216,.35);
}
.btn--primary:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(29,78,216,.45);
  color:#fff;
}
.btn--saffron{
  background:linear-gradient(135deg,var(--saffron-dark),var(--saffron));
  color:#fff;
  box-shadow:0 4px 20px rgba(251,146,60,.3);
}
.btn--saffron:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(251,146,60,.4);
  color:#fff;
}
.btn--outline{
  background:transparent;
  border:2px solid var(--border-light);
  color:var(--text-primary);
}
.btn--outline:hover{
  border-color:var(--saffron);
  color:var(--saffron);
  background:rgba(251,146,60,.06);
}

/* --- Top Bar --- */
.topbar{
  background:var(--blue-dark);
  padding:8px 0;
  font-size:13px;
  color:rgba(255,255,255,.7);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}
.topbar a{color:var(--saffron-light);font-weight:500}

/* --- Header / Nav --- */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(10,14,26,.92);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  padding:0;
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  max-width:var(--container);
  margin:0 auto;
}
.logo{
  font-family:var(--font-heading);
  font-size:26px;
  font-weight:700;
  color:var(--text-primary);
  display:flex;
  align-items:center;
  gap:4px;
}
.logo span{
  color:var(--saffron);
}
.logo .logo-dot{
  width:8px;height:8px;
  background:var(--saffron);
  border-radius:50%;
  display:inline-block;
  margin-left:2px;
}
.nav{display:flex;align-items:center;gap:8px}
.nav a{
  color:var(--text-secondary);
  font-size:15px;
  font-weight:500;
  padding:8px 16px;
  border-radius:var(--radius-sm);
  transition:all var(--transition);
}
.nav a:hover,.nav a.active{color:var(--text-primary);background:rgba(255,255,255,.05)}
.nav-cta{
  margin-left:8px;
  padding:10px 24px !important;
  background:linear-gradient(135deg,var(--blue),var(--blue-light)) !important;
  color:#fff !important;
  border-radius:var(--radius) !important;
  font-weight:600 !important;
}
.nav-cta:hover{box-shadow:0 4px 20px rgba(29,78,216,.4)}

/* Mobile Nav Toggle */
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.nav-toggle span{
  width:24px;height:2px;
  background:var(--text-primary);
  border-radius:2px;
  transition:var(--transition);
}

/* --- Hero --- */
.hero{
  position:relative;
  padding:100px 0 80px;
  overflow:hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(29,78,216,.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(251,146,60,.08) 0%, transparent 60%),
    var(--bg-primary);
}
.hero::before{
  content:'';
  position:absolute;
  top:-200px;right:-200px;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(29,78,216,.12),transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.hero__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.hero__content{position:relative;z-index:2}
.hero__badge{margin-bottom:20px}
.hero h1{
  font-size:clamp(2.2rem,5vw,3.4rem);
  margin-bottom:20px;
  letter-spacing:-.5px;
}
.hero h1 .highlight{
  background:linear-gradient(135deg,var(--saffron),var(--saffron-light));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero p{
  font-size:18px;
  color:var(--text-secondary);
  margin-bottom:32px;
  max-width:520px;
}
.hero__actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:32px}
.hero__stats{
  display:flex;
  gap:40px;
  padding-top:24px;
  border-top:1px solid var(--border);
}
.hero__stat{text-align:left}
.hero__stat-number{
  font-family:var(--font-heading);
  font-size:28px;
  font-weight:700;
  color:var(--saffron);
}
.hero__stat-label{font-size:13px;color:var(--text-muted);margin-top:2px}

/* Hero Visual */
.hero__visual{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.hero__card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
  width:100%;
  max-width:480px;
  box-shadow:var(--shadow-lg);
}
.hero__card-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}
.hero__card-pair{
  font-family:var(--font-heading);
  font-size:20px;
  font-weight:600;
}
.hero__card-badge{
  padding:4px 12px;
  border-radius:100px;
  font-size:12px;
  font-weight:600;
}
.hero__card-badge.up{background:rgba(34,197,94,.15);color:var(--success)}
.hero__card-badge.down{background:rgba(239,68,68,.15);color:var(--danger)}
.hero__chart-placeholder{
  width:100%;
  height:120px;
  background:linear-gradient(135deg,rgba(29,78,216,.1),rgba(251,146,60,.05));
  border-radius:var(--radius-sm);
  margin-bottom:20px;
  position:relative;
  overflow:hidden;
}
.hero__chart-placeholder svg{position:absolute;bottom:0;left:0;width:100%;height:100%}
.hero__card-row{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-size:14px;
}
.hero__card-row:last-child{border-bottom:none}
.hero__card-label{color:var(--text-muted)}
.hero__card-value{font-weight:600;font-family:var(--font-heading)}

/* --- Section Common --- */
.section{padding:80px 0}
.section--alt{background:var(--bg-secondary)}
.section__header{text-align:center;max-width:680px;margin:0 auto 56px}
.section__header h2{font-size:clamp(1.8rem,3.5vw,2.6rem);margin-bottom:16px}
.section__header p{color:var(--text-secondary);font-size:17px}

/* --- Features Grid --- */
.features__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.feature-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:36px 28px;
  transition:all var(--transition);
  position:relative;
  overflow:hidden;
}
.feature-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,var(--blue),var(--saffron));
  opacity:0;
  transition:opacity var(--transition);
}
.feature-card:hover{
  border-color:var(--border-light);
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.feature-card:hover::before{opacity:1}
.feature-card__icon{
  width:52px;height:52px;
  border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  font-size:24px;
}
.feature-card__icon--blue{background:rgba(29,78,216,.15);color:var(--blue-light)}
.feature-card__icon--saffron{background:rgba(251,146,60,.15);color:var(--saffron)}
.feature-card h3{font-size:19px;margin-bottom:10px}
.feature-card p{color:var(--text-secondary);font-size:15px;line-height:1.65}

/* --- Broker Comparison --- */
.broker-table-wrap{
  overflow-x:auto;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:var(--bg-card);
}
.broker-table{
  width:100%;
  border-collapse:collapse;
  font-size:15px;
}
.broker-table th{
  background:rgba(29,78,216,.1);
  padding:16px 20px;
  text-align:left;
  font-family:var(--font-heading);
  font-weight:600;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--text-secondary);
  border-bottom:1px solid var(--border);
  white-space:nowrap;
}
.broker-table td{
  padding:16px 20px;
  border-bottom:1px solid var(--border);
  vertical-align:middle;
}
.broker-table tr:last-child td{border-bottom:none}
.broker-table tr:hover td{background:rgba(255,255,255,.02)}
.broker-name{
  font-weight:600;
  font-family:var(--font-heading);
  display:flex;
  align-items:center;
  gap:10px;
}
.broker-logo{
  width:36px;height:36px;
  border-radius:8px;
  background:var(--bg-secondary);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:14px;
  border:1px solid var(--border);
}
.broker-logo.xm{background:rgba(29,78,216,.15);color:var(--blue-light)}
.broker-logo.exness{background:rgba(251,146,60,.15);color:var(--saffron)}
.broker-table .btn{padding:8px 20px;font-size:13px}
.broker-highlight{
  background:rgba(251,146,60,.04) !important;
}

/* --- Articles Grid --- */
.articles__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.article-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:all var(--transition);
}
.article-card:hover{
  border-color:var(--border-light);
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.article-card__img{
  width:100%;
  height:200px;
  background:linear-gradient(135deg,var(--bg-secondary),var(--bg-card));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:48px;
  position:relative;
  overflow:hidden;
}
.article-card__img::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 50%,var(--bg-card));
}
.article-card__body{padding:24px}
.article-card__tag{
  display:inline-block;
  padding:3px 10px;
  border-radius:100px;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.4px;
  margin-bottom:12px;
}
.article-card__tag--regulation{background:rgba(29,78,216,.15);color:var(--blue-light)}
.article-card__tag--guide{background:rgba(34,197,94,.12);color:var(--success)}
.article-card__tag--broker{background:rgba(251,146,60,.15);color:var(--saffron)}
.article-card__tag--tax{background:rgba(168,85,247,.15);color:#a855f7}
.article-card__tag--payment{background:rgba(14,165,233,.15);color:#0ea5e9}
.article-card h3{
  font-size:18px;
  margin-bottom:10px;
  line-height:1.35;
}
.article-card h3 a{color:var(--text-primary)}
.article-card h3 a:hover{color:var(--saffron)}
.article-card p{
  color:var(--text-secondary);
  font-size:14px;
  line-height:1.6;
  margin-bottom:16px;
}
.article-card__meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:var(--text-muted);
}
.article-card__read{
  color:var(--saffron);
  font-weight:600;
  font-size:13px;
  display:flex;align-items:center;gap:4px;
}

/* --- CTA Section --- */
.cta-section{
  padding:80px 0;
  background:
    linear-gradient(135deg,rgba(29,78,216,.08),rgba(251,146,60,.05)),
    var(--bg-primary);
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:'';
  position:absolute;
  top:-100px;left:50%;
  transform:translateX(-50%);
  width:800px;height:400px;
  background:radial-gradient(ellipse,rgba(29,78,216,.1),transparent 70%);
  pointer-events:none;
}
.cta-box{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:56px 48px;
  text-align:center;
  position:relative;
  max-width:800px;
  margin:0 auto;
}
.cta-box h2{font-size:clamp(1.6rem,3vw,2.2rem);margin-bottom:16px}
.cta-box p{color:var(--text-secondary);font-size:17px;margin-bottom:32px;max-width:560px;margin-left:auto;margin-right:auto}
.cta-box__buttons{display:flex;justify-content:center;gap:16px;flex-wrap:wrap}

/* --- Risk Disclaimer --- */
.risk-disclaimer{
  background:rgba(239,68,68,.06);
  border:1px solid rgba(239,68,68,.15);
  border-radius:var(--radius);
  padding:24px 28px;
  margin:40px auto;
  max-width:900px;
}
.risk-disclaimer h4{
  color:var(--danger);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:8px;
  display:flex;align-items:center;gap:8px;
}
.risk-disclaimer p{
  color:var(--text-secondary);
  font-size:13px;
  line-height:1.7;
}

/* --- Regulation Banner --- */
.regulation-bar{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  margin-bottom:56px;
  flex-wrap:wrap;
}
.regulation-bar__item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
}
.regulation-bar__icon{
  width:44px;height:44px;
  border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
  background:rgba(29,78,216,.12);
  color:var(--blue-light);
  flex-shrink:0;
}
.regulation-bar__text{line-height:1.4}
.regulation-bar__text strong{display:block;font-size:14px;color:var(--text-primary)}
.regulation-bar__text span{font-size:12px;color:var(--text-muted)}

/* --- Footer --- */
.footer{
  background:var(--bg-secondary);
  border-top:1px solid var(--border);
  padding:60px 0 0;
}
.footer__grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:48px;
}
.footer__brand p{color:var(--text-secondary);font-size:14px;margin-top:16px;line-height:1.7;max-width:320px}
.footer__col h4{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--text-muted);
  margin-bottom:16px;
  font-family:var(--font-heading);
}
.footer__col ul li{margin-bottom:10px}
.footer__col ul a{
  color:var(--text-secondary);
  font-size:14px;
  transition:color var(--transition);
}
.footer__col ul a:hover{color:var(--saffron)}
.footer__regulatory{
  padding:24px 0;
  border-top:1px solid var(--border);
  margin-top:8px;
}
.footer__regulatory p{
  text-align:center;
  font-size:12px;
  color:var(--text-muted);
  line-height:1.8;
  max-width:900px;
  margin:0 auto;
}
.footer__bottom{
  border-top:1px solid var(--border);
  padding:20px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.footer__bottom p{font-size:13px;color:var(--text-muted)}
.footer__bottom-links{display:flex;gap:20px}
.footer__bottom-links a{font-size:13px;color:var(--text-muted)}
.footer__bottom-links a:hover{color:var(--saffron)}

/* --- Article Page Styles --- */
.article-hero{
  padding:60px 0 40px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(29,78,216,.1) 0%, transparent 60%),
    var(--bg-primary);
}
.article-hero .breadcrumb{
  font-size:13px;
  color:var(--text-muted);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:8px;
}
.article-hero .breadcrumb a{color:var(--text-muted)}
.article-hero .breadcrumb a:hover{color:var(--saffron)}
.article-hero h1{
  font-size:clamp(1.8rem,4vw,2.8rem);
  margin-bottom:16px;
  max-width:800px;
}
.article-hero .article-meta{
  display:flex;
  align-items:center;
  gap:20px;
  font-size:14px;
  color:var(--text-muted);
}
.article-content{
  padding:40px 0 80px;
}
.article-content__inner{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:48px;
  align-items:start;
}
.article-body{max-width:none}
.article-body h2{font-size:24px;margin:40px 0 16px;padding-top:20px;border-top:1px solid var(--border)}
.article-body h3{font-size:19px;margin:28px 0 12px}
.article-body p{color:var(--text-secondary);margin-bottom:16px;font-size:16px;line-height:1.8}
.article-body ul,.article-body ol{margin:16px 0;padding-left:24px}
.article-body ul{list-style:disc}
.article-body ol{list-style:decimal}
.article-body li{color:var(--text-secondary);margin-bottom:8px;font-size:15px;line-height:1.7}
.article-body blockquote{
  border-left:3px solid var(--saffron);
  padding:16px 24px;
  margin:24px 0;
  background:rgba(251,146,60,.05);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote p{color:var(--text-primary);margin-bottom:0}
.article-body .info-box{
  background:rgba(29,78,216,.08);
  border:1px solid rgba(29,78,216,.2);
  border-radius:var(--radius);
  padding:20px 24px;
  margin:24px 0;
}
.article-body .info-box p{color:var(--text-primary);margin-bottom:0;font-size:14px}

/* Sidebar */
.article-sidebar{position:sticky;top:100px}
.sidebar-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px;
  margin-bottom:24px;
}
.sidebar-card h4{
  font-size:15px;
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:1px solid var(--border);
}
.sidebar-card ul li{margin-bottom:8px}
.sidebar-card ul a{color:var(--text-secondary);font-size:14px}
.sidebar-card ul a:hover{color:var(--saffron)}
.sidebar-broker{
  text-align:center;
}
.sidebar-broker__name{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:18px;
  margin-bottom:4px;
}
.sidebar-broker__desc{
  font-size:13px;
  color:var(--text-muted);
  margin-bottom:16px;
}
.sidebar-broker .btn{width:100%;justify-content:center}

/* --- Responsive --- */
@media(max-width:1024px){
  .hero__grid{grid-template-columns:1fr;gap:40px}
  .hero__visual{order:-1}
  .hero__card{max-width:400px;margin:0 auto}
  .features__grid{grid-template-columns:repeat(2,1fr)}
  .articles__grid{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:repeat(2,1fr)}
  .article-content__inner{grid-template-columns:1fr;gap:32px}
  .article-sidebar{position:static}
}

@media(max-width:768px){
  .nav{
    position:fixed;
    top:0;left:0;right:0;bottom:0;
    background:rgba(10,14,26,.98);
    flex-direction:column;
    justify-content:center;
    gap:4px;
    transform:translateX(100%);
    transition:transform .35s cubic-bezier(.4,0,.2,1);
    z-index:999;
  }
  .nav.open{transform:translateX(0)}
  .nav a{font-size:20px;padding:14px 32px}
  .nav-toggle{display:flex;z-index:1001}
  .topbar__inner{justify-content:center;text-align:center}
  .hero{padding:60px 0 50px}
  .hero h1{font-size:1.9rem}
  .hero__stats{gap:24px;flex-wrap:wrap}
  .features__grid{grid-template-columns:1fr}
  .articles__grid{grid-template-columns:1fr}
  .regulation-bar{flex-direction:column;text-align:center;padding:24px}
  .broker-table{font-size:13px}
  .broker-table th,.broker-table td{padding:12px 14px}
  .footer__grid{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;text-align:center}
  .cta-box{padding:40px 24px}
  .section{padding:56px 0}
}

@media(max-width:480px){
  .hero__actions{flex-direction:column}
  .hero__actions .btn{width:100%;justify-content:center}
  .cta-box__buttons{flex-direction:column}
  .cta-box__buttons .btn{width:100%;justify-content:center}
}

/* --- Scroll Animation --- */
.fade-up{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease,transform .6s ease;
}
.fade-up.visible{
  opacity:1;
  transform:translateY(0);
}

/* --- Cookie / Misc --- */
.cookie-bar{
  position:fixed;
  bottom:0;left:0;right:0;
  background:var(--bg-card);
  border-top:1px solid var(--border);
  padding:16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  z-index:9999;
  transform:translateY(100%);
  transition:transform .4s ease;
  flex-wrap:wrap;
}
.cookie-bar.show{transform:translateY(0)}
.cookie-bar p{font-size:13px;color:var(--text-secondary)}
.cookie-bar .btn{padding:8px 20px;font-size:13px}
