@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg-primary:    #080808;
  --bg-secondary:  #0f0f0f;
  --bg-card:       #111111;
  --bg-card-hover: #181818;
  --border:        #1e1e1e;
  --border-hover:  #2a2a2a;

  --red-bright:    #ff2a2a;
  --red-mid:       #e01c1c;
  --red-deep:      #c01010;
  --red-glow:      rgba(255, 42, 42, 0.18);
  --red-glow-soft: rgba(255, 42, 42, 0.07);

  --text-primary:   #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted:     #555;

  --nav-height:    64px;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;

  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.light {
  --bg-primary:    #f5f5f5;
  --bg-secondary:  #ebebeb;
  --bg-card:       #ffffff;
  --bg-card-hover: #f0f0f0;
  --border:        #e0e0e0;
  --border-hover:  #cccccc;

  --red-glow:      rgba(255, 42, 42, 0.12);
  --red-glow-soft: rgba(255, 42, 42, 0.06);

  --text-primary:   #111111;
  --text-secondary: #555555;
  --text-muted:     #999999;

  color-scheme: light;
}

body:not(.light) {
  color-scheme: dark;
}

body.light .navbar {
  background: rgba(245, 245, 245, 0.9);
}

body.light #toast-msg {
  background: #ffffff;
  color: #111111;
  border-color: #e0e0e0;
}

body.light .admin-login-card {
  background: #ffffff;
}

body.light .admin-login-card input {
  background: #f5f5f5;
  color: #111111;
  border-color: #e0e0e0;
}

body.light .admin-login-card input::placeholder {
  color: #aaaaaa;
}

body.light body::before {
  opacity: 0.02;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: border-color 0.3s var(--ease-smooth);
}

.navbar:hover { border-color: var(--border-hover); }

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--red-bright);
  letter-spacing: -0.03em;
  transition: color 0.2s;
}

.nav-logo:hover { color: #ff5555; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red-bright);
  transition: width 0.25s var(--ease-smooth);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

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

.btn-ghost {
  font-size: 0.875rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: var(--red-bright);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s var(--ease-smooth), transform 0.15s var(--ease-bounce), box-shadow 0.2s;
  box-shadow: 0 0 0 0 var(--red-glow);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--red-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--red-glow);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-hover);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s var(--ease-bounce);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--red-bright);
  background: var(--red-glow-soft);
  transform: translateY(-1px);
}

.nav-auth-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, opacity 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav-auth-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.nav-auth-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hide-for-guest {
  display: none !important;
}

.hide-for-guest.show {
  display: inline-flex !important;
}

.signout-btn.hide-for-guest.show {
  display: inline-block !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-height) 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(255, 42, 42, 0.10) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 42, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 42, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%);
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: var(--red-glow-soft);
  border: 1px solid rgba(255, 42, 42, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s var(--ease-smooth) both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s var(--ease-smooth) both;
}

.hero-title span {
  color: var(--red-bright);
  display: inline-block;
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-bright), transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s var(--ease-smooth) both;
}

.hero-cta {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s var(--ease-smooth) both;
}

.hero-cta .btn-primary,
.hero-cta .btn-outline {
  padding: 0.7rem 1.75rem;
  font-size: 0.925rem;
}

.stats-strip {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  animation: fadeUp 0.7s 0.45s var(--ease-smooth) both;
}

.stat-item {
  text-align: center;
  padding: 0 2.5rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

section { padding: 6rem 1.5rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3.5rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  transition: background 0.25s var(--ease-smooth);
  cursor: default;
}

.feature-card:hover { background: var(--bg-card-hover); }

.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--red-glow-soft);
  border: 1px solid rgba(255, 42, 42, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  transition: background 0.25s, border-color 0.25s, transform 0.2s var(--ease-bounce);
}

.feature-card:hover .feature-icon {
  background: var(--red-glow);
  border-color: rgba(255, 42, 42, 0.3);
  transform: scale(1.1);
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s var(--ease-bounce);
}

.step-card:hover {
  border-color: rgba(255, 42, 42, 0.3);
  transform: translateY(-3px);
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-glow-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover::before { opacity: 1; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 42, 42, 0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.vouches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.vouch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.2s var(--ease-bounce);
}

.vouch-card:hover {
  border-color: rgba(255, 42, 42, 0.25);
  transform: translateY(-2px);
}

.vouch-stars {
  color: var(--red-bright);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.vouch-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.vouch-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.vouch-avatar {
  width: 32px;
  height: 32px;
  background: var(--red-glow-soft);
  border: 1px solid rgba(255, 42, 42, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red-bright);
}

.vouch-name {
  font-size: 0.85rem;
  font-weight: 500;
}

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

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq-item {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--red-bright); }

.faq-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.3s var(--ease-smooth);
  color: var(--text-secondary);
}

.faq-item.open .faq-icon {
  background: var(--red-glow-soft);
  border-color: rgba(255, 42, 42, 0.3);
  transform: rotate(45deg);
  color: var(--red-bright);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

.cta-section {
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 42, 42, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.cta-buttons {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--red-bright);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-primary); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.admin-login-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-login-modal.open {
  display: flex;
}

.admin-login-card {
  width: 100%;
  max-width: 380px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.admin-login-card h2 {
  margin: 0 0 0.5rem;
  color: #f0ede8;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.admin-login-card p {
  margin: 0 0 1rem;
  color: #9a968f;
  font-size: 0.9rem;
  line-height: 1.6;
}

.admin-login-card input {
  width: 100%;
  margin-bottom: 0.75rem;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: #f0ede8;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.admin-login-card input::placeholder {
  color: #5f5f5f;
}

.admin-login-card input:focus {
  border-color: rgba(255, 42, 42, 0.45);
}

.admin-login-card button:not(.admin-login-close) {
  width: 100%;
  background: var(--red-bright);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s var(--ease-bounce);
}

.admin-login-card button:not(.admin-login-close):hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.admin-login-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: #9a968f;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem;
}

.admin-login-close:hover {
  color: var(--text-primary);
}

#admin-login-error,
.login-error {
  margin-top: 0.75rem;
  color: var(--red-bright);
  font-size: 0.82rem;
  min-height: 1rem;
  text-align: center;
}

.locked-field {
  opacity: 0.68;
  cursor: not-allowed;
}

[data-admin-only][style*="display: none"] {
  pointer-events: none;
}

#toast-msg {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
  color: #f0ede8;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 10000;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

#toast-msg.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 2.5rem;
}

@media (max-width: 768px) {
  .navbar { padding: 0 1.25rem; }

  .nav-links { display: none; }

  .stats-strip {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }

  .stat-item:last-child { border-bottom: none; }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .navbar {
    padding: 0 1rem;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .btn-primary,
  .btn-outline,
  .nav-auth-btn {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .divider {
    margin: 0 1rem;
  }

  footer {
    padding: 2rem 1rem;
  }

  #toast-msg {
    width: calc(100% - 2rem);
    white-space: normal;
    text-align: center;
  }
}