:root {
  --bg-primary: #131313;
  --bg-card: #1c1c1e;
  --bg-card-hover: #242428;
  --bg-input: #0f0f11;
  --border-color: #2a2a2e;
  --border-focus: #27b1c6;
  --text-primary: #f0f0f1;
  --text-muted: #8e8e93;
  --text-dim: #636366;
  --primary: #27b1c6;
  --primary-hover: #1e9cb0;
  --secondary: #59cda1;
  --accent-gradient: linear-gradient(135deg, #27b1c6 0%, #59cda1 100%);
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #10b981;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--secondary);
}

/* Navbar */
.navbar {
  background: rgba(28, 28, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.token-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(39, 177, 198, 0.12);
  border: 1px solid rgba(39, 177, 198, 0.35);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* Layout */
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  flex: 1;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s;
}
.card:hover {
  border-color: rgba(39, 177, 198, 0.3);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #131313;
  box-shadow: 0 4px 14px rgba(39, 177, 198, 0.3);
}
.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  color: #fff;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
}

.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.btn-danger:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(39, 177, 198, 0.15);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Stat Box */
.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.stat-val {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0.25rem 0;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tabs Header */
.tab-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.75rem;
  overflow-x: auto;
}
.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.tab-btn:hover {
  color: #fff;
}
.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Tables */
.table-responsive {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}
th {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}
tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Dropzone */
.dropzone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.01);
}
.dropzone:hover, .dropzone.dragover {
  border-color: var(--primary);
  background: rgba(39, 177, 198, 0.04);
}
.dropzone-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
}

/* Footer */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding: 2rem 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Badges */
.badge-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-cyan { background: rgba(39, 177, 198, 0.15); color: var(--primary); border: 1px solid rgba(39, 177, 198, 0.3); }
.badge-green { background: rgba(89, 205, 161, 0.15); color: var(--secondary); border: 1px solid rgba(89, 205, 161, 0.3); }
.badge-orange { background: rgba(245, 158, 11, 0.15); color: var(--warning); border: 1px solid rgba(245, 158, 11, 0.3); }

/* Banner / Alerts */
.alert {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alert-info {
  background: rgba(39, 177, 198, 0.12);
  border: 1px solid rgba(39, 177, 198, 0.3);
  color: #c9f0f5;
}
.alert-success {
  background: rgba(89, 205, 161, 0.12);
  border: 1px solid rgba(89, 205, 161, 0.3);
  color: #cff6e7;
}
.alert-danger {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* App Views Visibility */
.app-view {
  display: none;
}
.app-view.active {
  display: block;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 3rem 1rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39, 177, 198, 0.12);
  border: 1px solid rgba(39, 177, 198, 0.35);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Personal Intro Box (Björn Eberhardt) */
.intro-box {
  background: linear-gradient(145deg, rgba(28, 28, 30, 0.95) 0%, rgba(39, 177, 198, 0.08) 100%);
  border: 1px solid rgba(39, 177, 198, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.intro-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.intro-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(39, 177, 198, 0.4);
}
.intro-author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.intro-author-title {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}
.intro-text {
  font-size: 1.02rem;
  color: #d1d1d6;
  line-height: 1.75;
}
.intro-quote-highlight {
  background: rgba(39, 177, 198, 0.1);
  border-left: 3px solid var(--primary);
  padding: 0.75rem 1rem;
  margin: 1.25rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: #e5f8fa;
}

/* Workflow Steps */
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.step-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(39, 177, 198, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Feature Cards */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: rgba(39, 177, 198, 0.4);
  background: var(--bg-card-hover);
}
.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pricing Card */
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, rgba(39, 177, 198, 0.1) 0%, rgba(28, 28, 30, 0.95) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(39, 177, 198, 0.15);
}
.pricing-badge {
  display: inline-block;
  background: var(--accent-gradient);
  color: #131313;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.pricing-amount {
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-currency {
  font-size: 2rem;
  vertical-align: super;
  color: var(--primary);
}
.pricing-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.pricing-features {
  text-align: left;
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #e5e5ea;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.pricing-features li:last-child {
  margin-bottom: 0;
}
.pricing-check {
  color: var(--secondary);
  font-weight: bold;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
}
details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
details.faq-item:hover {
  border-color: rgba(39, 177, 198, 0.4);
}
details.faq-item[open] {
  border-color: var(--primary);
}
summary.faq-summary {
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  color: #fff;
}
summary.faq-summary::-webkit-details-marker {
  display: none;
}
summary.faq-summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.2s;
  margin-left: 1rem;
}
details[open] summary.faq-summary::after {
  content: "−";
}
.faq-body {
  padding: 0 1.4rem 1.4rem;
  color: #d1d1d6;
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.25rem;
  padding-top: 1rem;
}

/* Protected Support Channels */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.support-card:hover {
  background: rgba(39, 177, 198, 0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.support-card .support-icon {
  font-size: 1.8rem;
}
.support-card .support-title {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.support-card .support-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
  word-break: break-all;
}

/* Mobile Tabs (Export View) */
.mobile-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
}
.mobile-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.mobile-tab-btn:hover {
  color: #fff;
  border-color: var(--primary);
}
.mobile-tab-btn.active {
  background: var(--primary);
  color: #131313;
  border-color: var(--primary);
}
.mobile-tab-pane {
  display: none;
}
.mobile-tab-pane.active {
  display: block;
}

/* Code Boxes */
.code-box {
  background: #0f0f11;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  color: #e2e8f0;
  overflow-x: auto;
  line-height: 1.6;
}

/* Legal Container */
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.75;
  color: #d1d1d6;
}
.legal-container h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.legal-container h2 {
  font-size: 1.25rem;
  color: #fff;
  margin: 2rem 0 0.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}
.legal-container h3 {
  font-size: 1.05rem;
  color: #fff;
  margin: 1.25rem 0 0.5rem;
}
.legal-container p {
  margin-bottom: 1rem;
}
.legal-container ul, .legal-container ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.legal-container li {
  margin-bottom: 0.4rem;
}
.legal-info-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1rem 0 1.5rem;
}
.legal-disclaimer-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.75rem 0;
  color: #fca5a5;
}
.legal-disclaimer-box p {
  color: #fca5a5;
}
.reveal-btn {
  background: rgba(39, 177, 198, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}
.reveal-btn:hover {
  background: var(--primary);
  color: #131313;
}

/* Secondary Sub-Navigation directly below primary navbar */
.home-subnav-bar {
  background: rgba(20, 20, 22, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 56px;
  z-index: 45;
  padding: 0.4rem 1.5rem;
}
.home-subnav-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-subnav {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.home-subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.home-subnav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.home-subnav-link.active {
  color: var(--primary);
  background: rgba(39, 177, 198, 0.14);
  font-weight: 600;
}

/* Legal Support Channels */
#legal-support-contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.legal-support-btn, .messenger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 120px;
  text-align: center;
  transition: opacity 0.2s, transform 0.1s;
  border: none !important;
}
.legal-support-btn:hover, .messenger-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: white !important;
}
.legal-support-btn:active, .messenger-btn:active {
  transform: scale(0.98);
}

/* Toast Notifications Container */
#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 420px;
  width: calc(100% - 48px);
}

.toast {
  pointer-events: auto;
  background: #1C1C1E;
  color: #f0f0f1;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast.toast-success {
  border-left: 4px solid var(--secondary);
}

.toast.toast-error {
  border-left: 4px solid var(--danger);
}

.toast.toast-info {
  border-left: 4px solid var(--primary);
}

.toast.toast-warning {
  border-left: 4px solid #f59e0b;
}

.toast i {
  font-size: 1.15rem;
  flex-shrink: 0;
}
.toast.toast-success i { color: var(--secondary); }
.toast.toast-error i { color: var(--danger); }
.toast.toast-info i { color: var(--primary); }
.toast.toast-warning i { color: #f59e0b; }



