:root {
  --main: #1f87a4;
  --main-dark: rgb(18,95,118);
  --main-glow: rgba(31,135,164,0.18);
  --main-soft: rgba(31,135,164,0.07);
  --accent: #5fd1cc;
  --ink: #0b1620;
  --ink-mid: #3d4e5c;
  --ink-light: #8a9baa;

  --surface: #f6f9fb;
  --font-display: 'Syne', sans-serif;

  --border: rgba(31,135,164,0.12);
  --border-pale: rgba(0,0,0,0.06);
  --white: #ffffff;
  --surface: #f5f8fa;
  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --brand:    rgb(31,135,164);
  --brand-lt: rgb(80,180,210);
  --brand-dim:rgba(31,135,164,0.12);
  --ink-2:    #080f18;
  --panel:    rgba(255,255,255,0.03);
  --edge:     rgba(255,255,255,0.07);
  --edge-b:   rgba(31,135,164,0.25);
  --text:     #ffffff;
  --sub:      rgba(255,255,255,0.5);
  --muted:    rgba(255,255,255,0.28);
  --light-bg: #f3f6f9;
  --light-panel:#ffffff;
  --light-edge: rgba(0,0,0,0.07);
  --light-sub:  #4a5568;
  --ff-head: 'Syne', sans-serif;
  --ff-body: 'IBM Plex Sans', sans-serif;
  --radius:  12px;
  --radius-lg:20px;
}
html{scroll-behavior:smooth;}
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 body { font-family: var(--font-b); background: var(--surface); color: var(--ink); min-height: 200vh; }

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;font-size:16px;}
/* *{
    box-sizing: border-box;
} */

body{
  /* background:var(--ink);
  color:var(--text); */
  font-family:var(--ff-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: -34.63px;
    width: 100%;
    z-index: 2000;
    font-family: var(--font-b);
    height: 95.64px;
}
/* TOP BAR */
.header-topbar {
  background: var(--ink);
  padding: 7px 24px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.header-topbar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.header-topbar a:hover { text-decoration: underline; }
.tb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* MAIN NAV */
.nav {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-pale);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1240px; margin: auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 32px;
}

/* LOGO */
.logo-wrap {
  display: flex; align-items: center; gap: 0px;
  text-decoration: none; flex-shrink: 0;
}

/* NAV LINKS */
.nav-links {
  display: flex; align-items: center;
  gap: 4px; list-style: none; flex: 1;
  justify-content: flex-end;
}
.nav-item { position: relative; }
.nav-trigger {
  background: none; border: none;
  padding: 8px 14px;
  font-family: var(--font-b);
  font-size: 14px; font-weight: 500;
  color: var(--ink-mid);
  cursor: pointer;
  border-radius: 8px;
  display: flex; align-items: center; gap: 5px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-trigger:hover { color: var(--ink); background: var(--main-soft); }
.nav-trigger svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform .25s;
}
.nav-item:hover .nav-trigger svg,
.nav-item.active .nav-trigger svg { transform: rotate(180deg); }

/* HOVER BRIDGE */
.nav-item::after {
  content: ''; position: absolute;
  top: 100%; left: 0; width: 100%; height: 16px;
}

/* ── MEGA MENU ── */
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 55%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.11), 0 0 0 1px rgba(0,0,0,0.05);
  padding: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  min-width: 520px;
}
.nav-item:hover .mega-menu,
.nav-item.active .mega-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* 3-column layout */
.mega-3col {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  gap: 24px;
  width: 820px;
}
/* 2-column layout */
.mega-2col {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  width: 660px;
}

/* MEGA LEFT */
.mega-left { padding-right: 20px; border-right: 1px solid #f0f4f6; }
.mega-left h3 {
  font-family: var(--font-d);
  font-size: 16px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.mega-left p { font-size: 13px; color: var(--ink-light); line-height: 1.6; margin-bottom: 16px; }
.mega-highlight {
  background: var(--main-soft);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px; margin-top: 14px;
}
.mega-highlight strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.mega-highlight span { font-size: 12px; color: var(--ink-light); }
.mega-stats { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.mega-stats li {
  font-size: 13px; color: var(--ink-mid); font-weight: 500;
  display: flex; align-items: center; gap: 7px;
}
.mega-stats li::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--main);
}
.mega-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--main);
  text-decoration: none; margin-top: 14px;
  transition: gap .2s;
}
.mega-cta:hover { gap: 10px; }

/* MEGA RIGHT / GRID */
.mega-right, .mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-content: start;
}

/* MEGA CARD */
.mega-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: 12px;
  text-decoration: none; color: var(--ink);
  transition: all .22s ease;
  opacity: 0; transform: translateY(10px);
}
.nav-item:hover .mega-card,
.nav-item.active .mega-card { opacity: 1; transform: translateY(0); }
.nav-item:hover .mega-card:nth-child(1) { transition-delay: .04s; }
.nav-item:hover .mega-card:nth-child(2) { transition-delay: .08s; }
.nav-item:hover .mega-card:nth-child(3) { transition-delay: .12s; }
.nav-item:hover .mega-card:nth-child(4) { transition-delay: .16s; }
.mega-card:hover { background: var(--main-soft); transform: translateY(-2px); }
.mega-card.highlight { background: var(--main-soft); border: 1px solid var(--border); }
.mega-card .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: #f0f4f6;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mid);
  transition: all .22s;
}
.mega-card:hover .icon,
.mega-card.highlight .icon {
  background: linear-gradient(135deg, var(--main), var(--accent));
  color: white; box-shadow: 0 6px 16px var(--main-glow);
}
.mega-card .icon svg { width: 18px; height: 18px; }
.mega-card h4 { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.mega-card p { font-size: 12px; color: var(--ink-light); line-height: 1.4; }
.coming { font-size: 11px; color: var(--main); font-weight: 500; margin-top: 3px; display: block; }
.mega-card.disabled { opacity: .65; }
.mega-card.disabled:hover { background: transparent; transform: none; }

/* MEGA FEATURE */
.mega-feature {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 180px;
    box-sizing: border-box;}
.mega-feature img {
  width: 100%; border-radius: 12px;
  height: 120px; object-fit: cover;
  background: linear-gradient(135deg, var(--main), var(--accent));
}
.mega-feature-body { padding: 12px 0 0; }
.mega-feature-body h4 { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.mega-feature-body p { font-size: 12px; color: var(--ink-light); line-height: 1.5; margin-bottom: 8px; }
.feature-link {
  font-size: 12px; font-weight: 600; color: var(--main);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.feature-link:hover { gap: 8px; }

/* LEFT MEGA ANIMATE */
.mega-left, .mega-feature {
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s ease .05s, transform .3s ease .05s;
}
.nav-item:hover .mega-left,
.nav-item:hover .mega-feature,
.nav-item.active .mega-left,
.nav-item.active .mega-feature { opacity: 1; transform: translateY(0); }

/* NAV RIGHT ACTIONS */
.nav-actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

/* PROFILE */
.profile-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--main);
  transition: all .2s; position: relative;
}
.profile-btn:hover { background: var(--main-soft); border-color: var(--main); }
.profile-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* USER SIDEBAR */
.user-sidebar {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 240px; background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  opacity: 0; transform: translateY(-8px);
  pointer-events: none; transition: .25s ease;
  z-index: 100;
}
.user-sidebar.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sidebar-header { padding: 16px; border-bottom: 1px solid #f0f4f6; }
.sidebar-header strong { display: block; font-size: 14px; color: var(--ink); }
.sidebar-header small { font-size: 12px; color: var(--ink-light); }
.sidebar-links { padding: 8px; }
.sidebar-links a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 13.5px; color: var(--ink-mid); text-decoration: none;
  transition: .2s;
}
.sidebar-links a:hover { background: var(--main-soft); color: var(--main); }
.sidebar-links .sico { width: 16px; height: 16px; fill: currentColor; }

/* CTA BUTTON */
.btn-nav {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--main);
  color: var(--white)!important;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13.5px; font-weight: 600;
  text-decoration: none; font-family: var(--font-b);
  transition: all .3s; position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-nav::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: .5s;
}
.btn-nav:hover::after { left: 100%; }
.btn-nav:hover { background: var(--main-dark); transform: translateY(-1px); box-shadow: 0 8px 20px var(--main-glow); }
.btn-nav svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; }

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none; cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 9px; border: 1.5px solid var(--border);
  align-items: center; justify-content: center; color: var(--ink);
  transition: .2s;
}
.mobile-toggle:hover { background: var(--main-soft); border-color: var(--main); }
.mobile-toggle svg { width: 20px; height: 20px; fill: currentColor; }

/* OVERLAY */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: .3s; z-index: 1900;
  backdrop-filter: blur(2px);
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed; top: 0; left: 0;
  width: 290px; height: 100%;
  background: var(--white);
  z-index: 2100;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-body { padding: 24px 20px 40px; }
.drawer-logo { margin-bottom: 28px; }
.drawer-top { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.drawer-primary {
  background: var(--main); color: #fff;
  padding: 13px; border-radius: 10px;
  text-align: center; font-weight: 600;
  text-decoration: none; font-size: 14px;
}
.drawer-secondary {
  border: 1.5px solid var(--border); color: var(--ink-mid);
  padding: 12px; border-radius: 10px;
  text-align: center; font-size: 14px; text-decoration: none;
}
.drawer-links {
  display: flex; flex-direction: column; gap: 2px;
  padding-bottom: 20px; border-bottom: 1px solid #f0f4f6; margin-bottom: 20px;
}
.drawer-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-mid);
  text-decoration: none; padding: 9px 12px; border-radius: 8px;
  transition: .2s; display: flex; align-items: center; justify-content: space-between;
}
.drawer-links a:hover { background: var(--main-soft); color: var(--main); }
.drawer-links a svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.drawer-section-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-light); margin: 18px 0 8px 12px; }

/* RESPONSIVE */
@media (max-width: 960px) { .nav-links { display: none; } .mobile-toggle { display: flex; } }
@media (max-width: 600px) { .header-topbar { display: none; } .btn-nav { display: none;} }

.racing-sans-one-regular {
  font-family: "Racing Sans One", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 36px !important;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  font-family: var(--font-b);
  position: relative;
  overflow: hidden;
}

/* FOOTER GLOW */
.site-footer::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(31,135,164,0.12), transparent 70%);
  filter: blur(60px); pointer-events: none;
}

/* NEWSLETTER STRIP */
.footer-newsletter {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 64px 24px;
  position: relative; z-index: 1;
}
.footer-newsletter-inner {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.nl-left {}
.nl-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.nl-eyebrow::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--accent); border-radius: 2px; }
.nl-left h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -.5px;
  color: var(--white); margin-bottom: 10px;
}
.nl-left h2 span { color: var(--main); }
.nl-left p { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.nl-right {}
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nl-field label {
  display: block; font-size: 11.5px; font-weight: 500;
  color: rgba(255,255,255,0.4); margin-bottom: 6px; letter-spacing: .03em;
}
.nl-field input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px; font-family: var(--font-b);
  font-size: 14px; color: var(--white);
  outline: none; transition: all .25s;
}
.nl-field input::placeholder { color: rgba(255,255,255,0.2); }
.nl-field input:focus {
  border-color: var(--main);
  background: rgba(31,135,164,0.08);
  box-shadow: 0 0 0 3px rgba(31,135,164,0.12);
}
.nl-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.5; cursor: pointer;
}
.nl-consent input[type="checkbox"] { margin-top: 2px; accent-color: var(--main); flex-shrink: 0; }
.nl-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--main); color: white;
  padding: 14px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; font-family: var(--font-b);
  transition: all .3s; width: 100%; position: relative; overflow: hidden;
}
.nl-submit::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: .5s;
}
.nl-submit:hover::after { left: 100%; }
.nl-submit:hover { background: var(--main-dark); box-shadow: 0 8px 24px var(--main-glow); }
.nl-submit svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }
@media (max-width: 768px) {
  .footer-newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
  .nl-row { grid-template-columns: 1fr; }
}

/* FOOTER MAIN GRID */
.footer-main {
  padding: 72px 24px 60px;
  position: relative; z-index: 1;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  max-width: 1200px; margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.withubb-color{
  color: var(--main) !important;
}
/* FOOTER BRAND COL */
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 0px; margin-bottom: 18px; text-decoration: none; }
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-bottom: 24px; max-width: 260px;
}
.footer-reg {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 8px 14px;
  font-size: 11.5px; color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}
.footer-reg strong { color: rgba(255,255,255,0.5); }

/* SOCIAL ICONS */
.footer-social { display: flex; gap: 10px; margin-bottom: 28px; }
.social-link {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: all .25s;
}
.social-link:hover {
  background: var(--main); border-color: var(--main);
  color: white; transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--main-glow);
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

/* CONTACT STRIP */
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color .2s;
}
.contact-item:hover { color: var(--accent); }
.contact-item svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; color: var(--main); }

/* FOOTER LINK COLUMNS */
.footer-col {}
.footer-col-title {
  font-family: var(--font-d);
  font-size: 13px; font-weight: 700;
  color: var(--white); letter-spacing: .02em;
  margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.footer-col-title::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,0.07); border-radius: 1px;
}
.footer-links { display: flex; flex-direction: column; gap: 1px; }
.footer-links a {
  font-size: 13.5px; color: rgba(255,255,255,0.4);
  text-decoration: none; padding: 5px 0;
  transition: color .2s; display: flex; align-items: center; gap: 5px;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a .new-badge {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  background: var(--main); color: white;
  padding: 2px 6px; border-radius: 4px; letter-spacing: .05em;
}
.footer-links a .soon-badge {
  font-size: 9px; font-weight: 600; text-transform: uppercase;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4);
  padding: 2px 6px; border-radius: 4px; letter-spacing: .05em;
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* FOOTER BOTTOM */
.footer-bottom {
  padding: 24px;
  position: relative; z-index: 1;
}
.footer-bottom-inner {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-copy a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-copy a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 12.5px; color: rgba(255,255,255,0.25);
  text-decoration: none; transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--accent); }
.footer-wa {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.2);
  color: #25d366; padding: 7px 14px; border-radius: 8px;
  font-size: 12.5px; font-weight: 500; text-decoration: none;
  transition: all .25s;
}
.footer-wa:hover { background: rgba(37,211,102,0.2); }
.footer-wa svg { width: 14px; height: 14px; fill: currentColor; }

#withubb-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.withubb-toast {
    pointer-events: auto;
    min-width: 280px;
    max-width: 340px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: slideIn 0.35s ease forwards;
    overflow: hidden;
    position: relative;
}

/* Progress bar */
.withubb-toast::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(255,255,255,0.6);
    animation: progress linear forwards;
}

/* Variants */
.withubb-toast.info {
    background: var(--main);
    color: #fff;
}

.withubb-toast.success {
    background: #16a34a;
    color: #fff;
}

.withubb-toast.error {
    background: #dc2626;
    color: #fff;
}

.withubb-toast.warning {
    background: #facc15;
    color: #000;
}

/* Content */
.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

/* Close button */
.toast-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 16px;
    cursor: pointer;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
}

@keyframes progress {
    from { width: 100%; }
    to { width: 0%; }
}

/* Dark mode tweak */
@media (prefers-color-scheme: dark) {
    .withubb-toast {
        box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    }
}