/* 
 * 18Tooly Premium Glassmorphic Design System
 * Customized with Dark Mode by default and Light Mode toggle
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Color Palette - Dark Mode Default */
  --bg-gradient: linear-gradient(135deg, #07040d 0%, #0d0a1b 50%, #150e2a 100%);
  --bg-color: #07040d;
  --surface-color: rgba(21, 16, 38, 0.6);
  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-glow: rgba(147, 51, 234, 0.15);
  --text-primary: #f3f1f8;
  --text-secondary: #9e9aa8;
  --text-muted: #646077;
  
  --primary-gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --primary-color: #a855f7;
  --primary-hover: #9333ea;
  --secondary-color: #06b6d4;
  --secondary-hover: #0891b2;
  
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --glass-blur: blur(16px);
  --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

:root.light-mode {
  /* Color Palette - Light Mode */
  --bg-gradient: linear-gradient(135deg, #f4f2f9 0%, #e9e7f4 50%, #dfdcf0 100%);
  --bg-color: #f4f2f9;
  --surface-color: rgba(255, 255, 255, 0.65);
  --surface-border: rgba(0, 0, 0, 0.06);
  --surface-glow: rgba(168, 85, 247, 0.05);
  --text-primary: #151121;
  --text-secondary: #585368;
  --text-muted: #8b859e;
  
  --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
  --primary-color: #7c3aed;
  --primary-hover: #6d28d9;
  --secondary-color: #0891b2;
  --secondary-hover: #0d9488;
  
  --card-shadow: 0 8px 32px 0 rgba(31, 20, 60, 0.08);
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Premium Layout & Glass Grid */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(var(--bg-color), 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--surface-border);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 0 15px var(--surface-glow);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  text-shadow: 0 0 8px var(--surface-glow);
}

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

/* Glassmorphic Cards & Panels */
.glass-card {
  background: var(--surface-color);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 12px 40px 0 var(--surface-glow);
}

.glass-card:hover::before {
  background: var(--primary-gradient);
}

/* Form Inputs & Controls */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.light-mode .form-control {
  background: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

/* Range Sliders styling */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--text-muted);
  border-radius: 3px;
  outline: none;
  margin: 10px 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
  background: var(--surface-color);
  color: var(--text-primary);
  border: 1px solid var(--surface-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 3rem 0;
  text-align: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.05) 50%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(50px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  color: #c084fc;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -1.5px;
}

.hero-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Unified Search Bar styling */
.search-container {
  max-width: 600px;
  margin: 0 auto 4rem auto;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon-left {
  position: absolute;
  left: 1.25rem;
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1.1rem;
  background: rgba(20, 16, 38, 0.7);
  backdrop-filter: var(--glass-blur);
  border: 2px solid var(--surface-border);
  border-radius: 50px;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
}

.light-mode .search-input {
  background: rgba(255, 255, 255, 0.8);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

/* Category Grid & Cards */
.section-title {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: var(--surface-border);
}

.category-nav {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}

.category-pill {
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.category-pill:hover, .category-pill.active {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.tool-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tool-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.tool-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tool-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.tool-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--surface-border);
  padding-top: 1rem;
}

.tool-card-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: rgba(6, 182, 212, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.bookmark-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.bookmark-btn:hover, .bookmark-btn.active {
  color: var(--warning);
}

/* User System Widgets */
.user-widget-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .user-widget-grid {
    grid-template-columns: 1fr;
  }
}

.rewards-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.calendar-day {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.25rem;
  text-align: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.calendar-day.claimed {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--success);
  color: var(--success);
}

.calendar-day.today {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--surface-glow);
}

/* Referral Card styling */
.referral-link-box {
  display: flex;
  margin-top: 1rem;
  gap: 0.5rem;
}

/* Leaderboard */
.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.leaderboard-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
}

.leaderboard-rank {
  font-weight: 800;
  width: 24px;
  color: var(--primary-color);
}

.leaderboard-name {
  flex-grow: 1;
  font-weight: 600;
  margin-left: 0.5rem;
}

.leaderboard-points {
  font-weight: 700;
  color: var(--secondary-color);
}

/* Audio & Circular Progress for Pomodoro */
.timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}

.timer-circle {
  position: relative;
  width: 220px;
  height: 220px;
}

.timer-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.timer-bg-circle {
  fill: none;
  stroke: var(--surface-border);
  stroke-width: 8;
}

.timer-progress-circle {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.timer-text-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

/* Advertisement Visuals */
.ad-placement {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 10px rgba(168, 85, 247, 0.05);
}

.ad-placement::before {
  content: 'SPONSORED AD';
  position: absolute;
  font-size: 8px;
  top: 6px;
  left: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 800;
}

.ad-leaderboard {
  width: 100%;
  height: 90px;
  margin: 2rem 0;
}

.ad-leaderboard::after {
  content: '⚡ Boost Code Speeds & Deploy Globally with 18Cloud Hosting — Start Free Trail Today! ⚡';
  font-size: 0.9rem;
  color: var(--secondary-color);
  text-align: center;
  padding: 0 1.5rem;
}

.ad-sidebar {
  width: 100%;
  height: 250px;
  margin-bottom: 2rem;
  padding: 1.5rem;
  text-align: center;
}

.ad-sidebar::after {
  content: '💻 Need a Faster DB?\n\nApexDB Serverless offers instant global setups, edge queries, and autoscales to zero.\n\n👉 Click to Deploy!';
  white-space: pre-line;
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.ad-native {
  width: 100%;
  height: 90px;
  margin-bottom: 2rem;
}

.ad-native::after {
  content: '🚀 Sponsor: Build and deploy responsive web tools using 18Tooly UI Kits.';
  font-size: 0.85rem;
  color: var(--primary-color);
}


/* Modals System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 450px;
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer Section */
footer {
  border-top: 1px solid var(--surface-border);
  background: rgba(5, 3, 10, 0.8);
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--surface-border);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Interactive SEO content layout */
.seo-content-section {
  padding: 3rem 0;
  border-top: 1px solid var(--surface-border);
  margin-top: 4rem;
}

.seo-rich-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.seo-rich-text h2 {
  font-size: 1.5rem;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.seo-rich-text h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.seo-rich-text p {
  margin-bottom: 1.25rem;
}

.seo-rich-text ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.seo-rich-text li {
  margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  background: var(--surface-color);
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  color: var(--text-secondary);
  border-top: 0px solid transparent;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.25rem;
  border-top: 1px solid var(--surface-border);
}

.faq-icon-arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

/* Tool Workspace Styles */
.tool-workspace {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

@media (max-width: 992px) {
  .tool-workspace {
    grid-template-columns: 1fr;
  }
}

.tool-output-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--text-primary);
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 350px;
  overflow-y: auto;
  margin-top: 1rem;
}

.tool-badge-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.tool-preview-panel {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

/* Notification Popups */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--surface-color);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--surface-border);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(120%);
  animation: slideIn 0.3s forwards;
  border-left: 4px solid var(--primary-color);
}

.toast.success {
  border-left-color: var(--success);
}

.toast.info {
  border-left-color: var(--secondary-color);
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}
