/* ============================================
   BMU CRAFT — PLAYER PORTAL v2
   Two-column hero layout, auth-aware navbar
   ============================================ */

:root {
  /* Colors */
  --bg-deep: #060B14;
  --bg-card: #0C1220;
  --bg-card-hover: #111827;
  --border-subtle: rgba(74, 222, 128, 0.08);
  --border-glow: rgba(74, 222, 128, 0.2);
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent: #4ADE80;
  --accent-dim: rgba(74, 222, 128, 0.15);
  --accent-glow: rgba(74, 222, 128, 0.3);
  --red: #F87171;
  --red-dim: rgba(248, 113, 113, 0.15);
  --amber: #FBBF24;
  --amber-dim: rgba(251, 191, 36, 0.15);
  --blue: #60A5FA;
  --blue-dim: rgba(96, 165, 250, 0.15);

  /* Typography */
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --nav-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(6, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.logo-cubes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.logo-cubes span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 1.5px;
}

.logo-cubes span:nth-child(2) { opacity: 0.6; }
.logo-cubes span:nth-child(3) { opacity: 0.4; }
.logo-cubes span:nth-child(4) { opacity: 0.7; }

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

.nav-back {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-back:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

/* Nav Profile Pill */
.nav-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: 100px;
  transition: all 0.25s;
  cursor: default;
}

.nav-profile:hover {
  border-color: rgba(74, 222, 128, 0.25);
  background: rgba(74, 222, 128, 0.1);
}

.nav-profile.hidden { display: none; }

.nav-profile-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(74, 222, 128, 0.2);
}

.nav-profile-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================
   PORTAL MAIN
   ============================================ */

.portal-main {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Background effects */
.portal-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.portal-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 30%, rgba(74, 222, 128, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(96, 165, 250, 0.03) 0%, transparent 60%);
}

.portal-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.portal-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 222, 128, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 222, 128, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */

.portal-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - var(--nav-height) - 6rem);
}

/* LEFT: Hero illustration */
.portal-hero-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 3rem);
}

.portal-hero-art {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.portal-hero-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(74, 222, 128, 0.12));
  animation: hero-bob 6s ease-in-out infinite;
}

@keyframes hero-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.portal-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 65%);
  filter: blur(50px);
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.portal-hero-tagline {
  text-align: center;
  max-width: 400px;
}

.tagline-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.tagline-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.tagline-heading .accent { color: var(--accent); }

.tagline-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* RIGHT: Content column */
.portal-content-col {
  display: flex;
  flex-direction: column;
}

/* States */
.portal-state {
  width: 100%;
  animation: fadeSlideUp 0.5s ease both;
}

.portal-state.hidden { display: none; }

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

/* ============================================
   PORTAL CARD
   ============================================ */

.portal-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
}

.portal-card-glow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 0 0 4px 4px;
  opacity: 0.6;
}

/* ============================================
   SIGNED OUT — SIGN IN CARD
   ============================================ */

.portal-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.portal-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.portal-title .accent { color: var(--accent); }

.portal-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* Google Sign In Button */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: #fff;
  color: #1f2937;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.google-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
  opacity: 0;
  transition: opacity 0.25s;
}

.google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.google-btn:hover::before { opacity: 1; }

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

.google-icon { flex-shrink: 0; }

.portal-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.portal-hint code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

/* Divider */
.portal-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}

.portal-divider::before,
.portal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.portal-divider span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* External Request Section */
.external-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.request-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group label .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  transition: all 0.2s;
  outline: none;
}

.form-group textarea {
  font-family: var(--font-body);
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

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

.request-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-glow);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
}

.request-submit-btn:hover {
  background: rgba(74, 222, 128, 0.25);
  transform: translateY(-1px);
}

.request-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.discord-fallback {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.discord-fallback a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.discord-fallback a:hover { text-decoration: underline; }

/* ============================================
   SIGNED IN — PROFILE
   ============================================ */

.profile-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 2px solid var(--border-subtle);
  object-fit: cover;
  background: var(--bg-card-hover);
}

.profile-info { flex: 1; min-width: 0; }

.profile-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-email {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-sign-out {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.15);
  border-radius: 10px;
  color: var(--red);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-sign-out:hover {
  background: rgba(248, 113, 113, 0.15);
  border-color: rgba(248, 113, 113, 0.3);
}

/* Status Bar */
.profile-status-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.status-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.status-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.status-value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-primary);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

.status-badge.whitelisted {
  background: var(--accent-dim);
  color: var(--accent);
}

.status-badge.pending {
  background: var(--amber-dim);
  color: var(--amber);
}

.status-badge.not-set {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.status-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   USERNAME CARD
   ============================================ */

.card-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.card-title svg { color: var(--accent); flex-shrink: 0; }

/* Current username display */
.current-username {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  border-radius: 14px;
}

.current-username.hidden { display: none; }

.mc-username-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mc-head {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  image-rendering: pixelated;
  background: rgba(0,0,0,0.2);
}

.mc-username-tag code {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}

.btn-change-username {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-change-username:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

/* Username Form */
.username-form { margin-bottom: 1.5rem; }
.username-form.hidden { display: none; }

.username-form-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.username-input-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.username-input-row input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
}

.username-input-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.username-input-row input::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.btn-set-username {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  background: var(--accent);
  color: #060B14;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-set-username:hover {
  background: #5CE890;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-set-username:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-cancel-change {
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cancel-change:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--text-primary);
}

.btn-cancel-change.hidden { display: none; }

/* Note */
.username-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: var(--blue-dim);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.username-note svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   ERROR STATE
   ============================================ */

.error-card {
  text-align: center;
  padding: 3rem 2.5rem;
}

.error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.error-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.error-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-try-again {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: var(--accent);
  color: #060B14;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-try-again:hover {
  background: #5CE890;
  transform: translateY(-1px);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--text-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  animation: toastIn 0.35s ease both;
  max-width: 380px;
}

.toast.toast-success { border-color: var(--accent-glow); }
.toast.toast-error { border-color: rgba(248, 113, 113, 0.3); }
.toast.toast-info { border-color: rgba(96, 165, 250, 0.3); }

.toast.toast-out {
  animation: toastOut 0.3s ease both;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-10px) scale(0.96); }
}

.toast-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */

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

  .portal-hero-col {
    position: static;
    gap: 1.5rem;
  }

  .portal-hero-art {
    max-width: 320px;
  }

  .portal-main {
    padding: calc(var(--nav-height) + 1.5rem) 1.5rem 3rem;
  }
}

@media (max-width: 640px) {
  .portal-main {
    padding: calc(var(--nav-height) + 1rem) 1rem 3rem;
  }

  .portal-card {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }

  .portal-title {
    font-size: 1.5rem;
  }

  .portal-hero-art {
    max-width: 260px;
  }

  .tagline-heading {
    font-size: 1.3rem;
  }

  .username-input-row {
    flex-direction: column;
  }

  .btn-set-username {
    justify-content: center;
  }

  .profile-status-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .status-divider {
    width: 100%;
    height: 1px;
  }

  .current-username {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .toast { max-width: 100%; }

  .nav-profile-name { display: none; }
}
