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

:root {
  --bg-dark: #090d16;
  --bg-card: rgba(19, 27, 44, 0.7);
  --bg-card-hover: rgba(28, 39, 64, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(99, 102, 241, 0.3);
  
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --accent-cyan: #06b6d4;
  
  --speaking-color: #10b981;
  --speaking-glow: 0 0 20px rgba(16, 185, 129, 0.6);
  --muted-color: #ef4444;
  --muted-glow: 0 0 15px rgba(239, 68, 68, 0.4);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-main: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(139, 92, 246, 0.1) 0%, transparent 45%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

/* ==========================================
   AMBIENT BACKGROUND GLOWS & GRID
   ========================================== */
.home-body {
  position: relative;
  overflow-x: hidden;
}

.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, rgba(139, 92, 246, 0.04) 70%, transparent 100%);
  top: -100px;
  left: 5%;
}

.bg-glow-2 {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(59, 130, 246, 0.04) 70%, transparent 100%);
  top: 140px;
  right: -60px;
}

.bg-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Header & Brand Navbar */
.navbar {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  background: rgba(9, 13, 22, 0.75);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 1.15rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.brand-text-group {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-version {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  letter-spacing: 0.02em;
}

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

/* Install to Desktop Navbar Button */
.nav-install-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #c7d2fe;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.nav-install-btn:hover {
  background: rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.6);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.35);
  transform: translateY(-1px);
}

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

/* Shortcut Modal Elements */
.shortcut-modal-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(6, 182, 212, 0.25) 100%);
  border: 1.5px solid rgba(99, 102, 241, 0.4);
  color: #818cf8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.shortcut-step-pill {
  width: 100%;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #bae6fd;
  font-size: 0.8rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.shortcut-step-pill span {
  font-weight: 700;
  color: #38bdf8;
}

.nav-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.08);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.22);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulse-dot 2s infinite;
}

.badge-pill {
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.18);
  color: #a7f3d0;
}

.participant-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Layout Containers */
.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-container {
  padding: 2.5rem 2rem 5rem;
  z-index: 1;
  position: relative;
}

/* ==========================================
   HERO SECTION & 2-COLUMN SPLIT
   ========================================== */

.hero-tag-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.28);
  color: #c7d2fe;
  font-size: 0.825rem;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.hero-tag-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: pulse-dot 2s infinite;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3.5rem;
  align-items: flex-start;
  margin-bottom: 5.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 560px;
}

/* ==========================================
   ADVANCED ACTION CARD (V2)
   ========================================== */

.action-card-v2 {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 35px rgba(99, 102, 241, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
  max-width: 520px;
}

.action-card-v2:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 45px rgba(99, 102, 241, 0.18);
}

.card-tab-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  gap: 0.3rem;
}

.card-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.card-tab-btn:hover {
  color: var(--text-main);
}

.card-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.45);
}

.form-group-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
}

.form-label-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  font-weight: 600;
  color: #cbd5e1;
}

.required-badge {
  font-size: 0.7rem;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  font-weight: 600;
}

.input-with-avatar {
  display: flex;
  align-items: center;
  position: relative;
}

.avatar-mini-preview {
  position: absolute;
  left: 0.65rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
  pointer-events: none;
  user-select: none;
}

.input-field-v2 {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.input-with-avatar .input-field-v2 {
  padding-left: 3.25rem;
}

.input-field-v2:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
  background: rgba(15, 23, 42, 0.9);
}

.tab-pane {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.tab-pane.active {
  display: flex;
}

.join-form-group {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  width: 100%;
}

.quick-perks {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.perk-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
}

.btn-block-v2 {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.btn-arrow-icon {
  transition: transform 0.2s ease;
}

.btn-block-v2:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.input-with-action {
  position: relative;
  display: flex;
  align-items: center;
}

.btn-paste-action {
  position: absolute;
  right: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-paste-action:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.card-footer-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #7dd3fc;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  line-height: 1.4;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================
   HERO SHOWCASE MOCKUP WINDOW (RIGHT COLUMN)
   ========================================== */

.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  perspective: 1200px;
  padding-top: 0.25rem;
}

.mockup-window {
  width: 100%;
  max-width: 500px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(28px);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.85), 0 0 45px rgba(99, 102, 241, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: rotateY(-2deg) rotateX(1deg);
}

.mockup-window:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow: 0 45px 85px -15px rgba(0, 0, 0, 0.9), 0 0 60px rgba(99, 102, 241, 0.3);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(9, 13, 22, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-controls {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #10b981; }

.mockup-room-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-dot 1.5s infinite;
}

.mockup-time {
  color: #94a3b8;
  font-size: 0.7rem;
}

.mockup-quality-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
}

.mockup-stage {
  padding: 1rem 1.25rem 0.5rem;
}

.mockup-screen-content {
  background: linear-gradient(145deg, #090e1a 0%, #111827 100%);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 20px rgba(6, 182, 212, 0.1);
  position: relative;
  overflow: hidden;
}

.mockup-code-graphics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-code-line {
  height: 6px;
  border-radius: 3px;
}
.line-1 { width: 55%; background: linear-gradient(90deg, #6366f1, #818cf8); opacity: 0.8; }
.line-2 { width: 75%; background: rgba(255, 255, 255, 0.12); }
.line-3 { width: 40%; background: linear-gradient(90deg, #06b6d4, #38bdf8); opacity: 0.7; }
.line-4 { width: 60%; background: rgba(255, 255, 255, 0.08); }

.mockup-presenter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  color: #bae6fd;
  background: rgba(15, 23, 42, 0.85);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
}

.mockup-card {
  background: rgba(19, 27, 44, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.mockup-card.is-speaking {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.mockup-status {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-status.unmuted {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.mockup-status.muted {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.mockup-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.mockup-avatar.avatar-speaking {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.5), 0 0 14px rgba(16, 185, 129, 0.6);
  animation: speaking-pulse 1.3s infinite ease-in-out;
}

.mockup-waves {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 12px;
  margin-bottom: 0.3rem;
}

.m-wave {
  width: 2.5px;
  height: 100%;
  background: #34d399;
  border-radius: 2px;
  animation: wave-anim 0.6s infinite alternate ease-in-out;
}
.m-wave:nth-child(1) { animation-delay: 0.1s; }
.m-wave:nth-child(2) { animation-delay: 0.3s; }
.m-wave:nth-child(3) { animation-delay: 0.45s; }
.m-wave:nth-child(4) { animation-delay: 0.2s; }

.mockup-user-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-main);
}

.mockup-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem;
  background: rgba(9, 13, 22, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.m-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-btn-screen.active {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.m-btn-leave {
  background: rgba(239, 68, 68, 0.25);
  color: #f87171;
}

/* ==========================================
   BALANCED 4-COLUMN BENTO GRID
   ========================================== */

.bento-section {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.bento-header {
  text-align: center;
}

.bento-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.bento-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.features-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bento-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  padding: 1.6rem 1.35rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
  transition: var(--transition);
  position: relative;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(28, 39, 64, 0.85);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(99, 102, 241, 0.15);
}

.bento-badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.bento-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-icon-emerald {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.bento-icon-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.bento-icon-purple {
  background: rgba(139, 92, 246, 0.15);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.bento-icon-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.bento-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.bento-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================
   HOME FOOTER
   ========================================== */

.home-footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  flex-wrap: wrap;
  justify-content: center;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.input-error-msg {
  font-size: 0.8rem;
  color: #fca5a5;
  font-weight: 500;
}

.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
}

@media (max-width: 1024px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .features-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content {
    text-align: center;
    align-items: center;
  }
  .hero-tag-wrapper {
    justify-content: center;
  }
  .action-card-v2 {
    max-width: 500px;
    width: 100%;
  }
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 640px) {
  .features-bento-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .mockup-window {
    transform: none;
  }
  .navbar {
    padding: 1rem 1.25rem;
  }
  .home-container {
    padding: 1.5rem 1rem 3rem;
  }
}


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

/* Room Page Styles */
.room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.room-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.room-title-wrapper {
  display: flex;
  flex-direction: column;
}

.room-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  font-weight: 700;
}

.room-id {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon-label {
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}

/* Warning & Permission Alerts */
.alert-card {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #ef4444;
}

/* Participants Section & Grid */
.participants-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
  margin-bottom: 6rem;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.participants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.user-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.75rem 1.25rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-main);
}

.user-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.avatar-container {
  position: relative;
  margin-bottom: 1.25rem;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #a5b4fc;
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  user-select: none;
}

/* Active Speaking Glow & Wave Ring */
.user-card.is-speaking {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 12px 32px -6px rgba(16, 185, 129, 0.22), var(--shadow-main);
}

.user-card.is-speaking .avatar {
  border-color: var(--speaking-color);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.4), 0 0 22px rgba(16, 185, 129, 0.6);
  animation: speaking-pulse 1.3s infinite ease-in-out;
}

@keyframes speaking-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.4), 0 0 16px rgba(16, 185, 129, 0.45);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.15), 0 0 30px rgba(16, 185, 129, 0.8);
  }
}

.speaking-waves {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 22px;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9, 13, 22, 0.94);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--speaking-color);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.45);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.user-card.is-speaking .speaking-waves {
  display: flex;
}

.wave-bar {
  width: 3px;
  height: 100%;
  background: linear-gradient(to top, #059669 0%, #34d399 100%);
  border-radius: 3px;
  animation: wave-anim 0.7s infinite ease-in-out alternate;
  transform-origin: bottom;
}

.wave-bar:nth-child(1) { animation-delay: 0.1s; animation-duration: 0.55s; }
.wave-bar:nth-child(2) { animation-delay: 0.3s; animation-duration: 0.75s; }
.wave-bar:nth-child(3) { animation-delay: 0.45s; animation-duration: 0.6s; }
.wave-bar:nth-child(4) { animation-delay: 0.2s; animation-duration: 0.7s; }

@keyframes wave-anim {
  0% { transform: scaleY(0.2); opacity: 0.6; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* User Mute Badge on Card */
.status-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.status-badge svg {
  display: block;
}

.status-badge.muted {
  background: rgba(239, 68, 68, 0.22);
  border-color: rgba(239, 68, 68, 0.65);
  color: #f87171;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.35);
}

.status-badge.unmuted {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.5);
  color: #34d399;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.25);
}

.user-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  word-break: break-word;
}

.you-tag {
  font-size: 0.75rem;
  color: #a5b4fc;
  font-weight: 600;
  margin-top: 0.2rem;
  background: rgba(99, 102, 241, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

/* User Card Screen Share Badge */
.screenshare-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(6, 182, 212, 0.22);
  border: 1px solid rgba(6, 182, 212, 0.6);
  color: #38bdf8;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.4);
  animation: live-screen-pulse 2s infinite ease-in-out;
  z-index: 10;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.user-card.is-screensharing {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

@keyframes live-screen-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

/* ==========================================
   SCREEN SHARE STAGE (THEATER MODE)
   ========================================== */

.screen-stage {
  background: #030712;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.screen-stage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 10;
}

.screen-presenter-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.screen-presenter-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(6, 182, 212, 0.4);
}

.screen-presenter-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.screen-presenter-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.screen-sub-badge {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

.screen-presenter-sub {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.live-indicator-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #f87171;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.badge-dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: pulse-dot 1.5s infinite;
}

.screen-timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}

/* Stage Actions & Controls Toolbar */
.screen-stage-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stage-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.stage-action-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.stage-btn-text {
  font-size: 0.8rem;
}

.btn-danger-sm {
  background: rgba(239, 68, 68, 0.9);
  color: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
  transition: var(--transition);
}

.btn-danger-sm:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
}

/* Screen Audio Slider Wrapper */
.screen-audio-control {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-md);
}

.screen-audio-control .stage-action-btn {
  background: transparent;
  border: none;
  padding: 0.25rem;
}

.volume-slider {
  -webkit-appearance: none;
  width: 65px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #38bdf8;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.6);
}

/* Screen Viewport & Video Player */
.screen-viewport {
  position: relative;
  width: 100%;
  min-height: 400px;
  max-height: 75vh;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.screen-viewport video {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: object-fit 0.25s ease;
}

.screen-viewport video.video-cover {
  object-fit: cover;
}

/* ==========================================
   FULLSCREEN CINEMA THEATER MODE
   ========================================== */
.screen-stage:fullscreen,
.screen-stage:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  background: #000000 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
}

/* Fullscreen Floating Overlay Header */
.screen-stage:fullscreen .screen-stage-header,
.screen-stage:-webkit-full-screen .screen-stage-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.94) 0%, rgba(3, 7, 18, 0.5) 75%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  padding: 1.1rem 2rem;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Fullscreen Header Autohide on Idle */
.screen-stage.header-idle:fullscreen .screen-stage-header,
.screen-stage.header-idle:-webkit-full-screen .screen-stage-header {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

/* Fullscreen Viewport & Centered Video */
.screen-stage:fullscreen .screen-viewport,
.screen-stage:-webkit-full-screen .screen-viewport {
  flex: 1;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  background: #000000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  position: relative !important;
}

.screen-stage:fullscreen .screen-viewport video,
.screen-stage:-webkit-full-screen .screen-viewport video {
  width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
  object-position: center center !important;
}

.screen-stage:fullscreen .screen-viewport video.video-cover,
.screen-stage:-webkit-full-screen .screen-viewport video.video-cover {
  object-fit: cover !important;
}

.screen-stage:fullscreen .screen-viewport video:not(.video-cover),
.screen-stage:-webkit-full-screen .screen-viewport video:not(.video-cover) {
  object-fit: contain !important;
}

/* Stage Action Active State (Sığdır/Doldur aktif göstergesi) */
.stage-action-btn.is-active {
  background: rgba(6, 182, 212, 0.25);
  border-color: rgba(6, 182, 212, 0.6);
  color: #38bdf8;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.35);
}

.screen-audio-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 5;
}

/* Theater Mode Participants List */
.container.theater-mode .participants-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.container.theater-mode .user-card {
  padding: 1.25rem 1rem;
}

.container.theater-mode .avatar {
  width: 64px;
  height: 64px;
  font-size: 1.6rem;
}

/* Bottom Control Bar */
.control-bar {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
  z-index: 99;
}

.control-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

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

/* Mic Button Icon Toggle in CSS */
.control-btn .icon-mic-on {
  display: block;
  color: #f8fafc;
}

.control-btn .icon-mic-off {
  display: none;
}

.control-btn.muted {
  background: #ef4444 !important;
  border-color: #f87171 !important;
  color: #ffffff !important;
  box-shadow: 0 0 22px rgba(239, 68, 68, 0.65) !important;
}

.control-btn.muted:hover {
  background: #dc2626 !important;
  box-shadow: 0 0 28px rgba(239, 68, 68, 0.8) !important;
}

.control-btn.muted .icon-mic-on {
  display: none !important;
}

.control-btn.muted .icon-mic-off {
  display: block !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* Screen Share Button Icon Toggle */
.control-btn .icon-screen-off {
  display: block;
}

.control-btn .icon-screen-on {
  display: none;
}

.control-btn.active-sharing {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%) !important;
  border-color: #38bdf8 !important;
  color: #ffffff !important;
  box-shadow: 0 0 22px rgba(6, 182, 212, 0.7) !important;
  animation: sharing-btn-pulse 2s infinite;
}

.control-btn.active-sharing:hover {
  box-shadow: 0 0 28px rgba(6, 182, 212, 0.9) !important;
}

.control-btn.active-sharing .icon-screen-off {
  display: none !important;
}

.control-btn.active-sharing .icon-screen-on {
  display: block !important;
  color: #ffffff !important;
}

/* Stage Audio Button Toggle */
.screen-audio-control .icon-audio-on {
  display: block;
}
.screen-audio-control .icon-audio-off {
  display: none;
}
.screen-audio-control.audio-muted .icon-audio-on {
  display: none !important;
}
.screen-audio-control.audio-muted .icon-audio-off {
  display: block !important;
  color: #f87171 !important;
}

/* Fullscreen Button Toggle */
.stage-action-btn .icon-fullscreen-enter {
  display: block;
}
.stage-action-btn .icon-fullscreen-exit {
  display: none;
}
.stage-action-btn.is-fullscreen .icon-fullscreen-enter {
  display: none !important;
}
.stage-action-btn.is-fullscreen .icon-fullscreen-exit {
  display: block !important;
}

@keyframes sharing-btn-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(6, 182, 212, 0.6); }
  50% { box-shadow: 0 0 25px rgba(59, 130, 246, 0.85); }
}

.control-btn-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.control-btn-danger:hover {
  background: var(--muted-color);
  color: #ffffff;
}

/* Nickname Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 999;
}

.modal-card {
  background: rgba(19, 27, 44, 0.95);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-card-wide {
  max-width: 540px;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   STREAMLINED SCREEN SHARE MODAL
   ========================================== */

.modal-card-streamlined {
  max-width: 460px;
  width: 100%;
  padding: 1.6rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(99, 102, 241, 0.12);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

/* Header */
.modal-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-header-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
}

.modal-title-compact {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.modal-desc-compact {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-main);
  transform: scale(1.05);
}

/* 3-Column Segmented Quality Selector */
.quality-selector-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.quality-tile {
  background: rgba(19, 27, 44, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.5rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  user-select: none;
}

.quality-tile:hover {
  background: rgba(28, 39, 64, 0.85);
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
}

.quality-tile.active {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.08) 100%);
  border-color: #6366f1;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
}

.quality-tile-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  transition: var(--transition);
}

.quality-tile.active .quality-tile-icon {
  background: rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
}

.quality-tile-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.quality-tile-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: #94a3b8;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.quality-tile.active .quality-tile-badge {
  color: #c7d2fe;
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.35);
}

.quality-tile-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #6366f1;
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}

.quality-tile.active .quality-tile-check {
  display: flex;
}

/* Minimal Audio Hint Bar */
.audio-hint-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.audio-hint-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audio-hint-text {
  font-size: 0.78rem;
  color: #bae6fd;
  line-height: 1.4;
}

.audio-hint-text strong {
  color: #ffffff;
}

/* Actions Compact */
.modal-actions-compact {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.btn-secondary-compact {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary-compact:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-compact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
  transition: var(--transition);
}

.btn-primary-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.55);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================
   TOP DYNAMIC CAPSULE TOAST NOTIFICATION
   ========================================== */
.toast-capsule {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-28px) scale(0.92);
  background: rgba(13, 19, 33, 0.94);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.9rem 0.5rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.8), 0 0 25px rgba(99, 102, 241, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.25s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  z-index: 999999 !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 90vw;
  overflow: hidden;
}

.toast-capsule.show {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) scale(1) !important;
}

/* Event Type Specific Accents */
.toast-capsule.toast-join {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.8), 0 0 28px rgba(16, 185, 129, 0.3);
}

.toast-capsule.toast-leave {
  border-color: rgba(244, 63, 94, 0.5);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.8), 0 0 28px rgba(244, 63, 94, 0.3);
}

.toast-capsule.toast-screen {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.8), 0 0 28px rgba(6, 182, 212, 0.3);
}

.toast-capsule.toast-copy,
.toast-capsule.toast-success {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.8), 0 0 28px rgba(99, 102, 241, 0.3);
}

.toast-capsule.toast-error {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.8), 0 0 28px rgba(239, 68, 68, 0.3);
}

/* Toast Icon Wrapper */
.toast-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(99, 102, 241, 0.18);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.35);
  transition: all 0.25s ease;
}

.toast-join .toast-icon-wrapper {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.4);
}

.toast-leave .toast-icon-wrapper {
  background: rgba(244, 63, 94, 0.18);
  color: #fb7185;
  border-color: rgba(244, 63, 94, 0.4);
}

.toast-screen .toast-icon-wrapper {
  background: rgba(6, 182, 212, 0.18);
  color: #22d3ee;
  border-color: rgba(6, 182, 212, 0.4);
}

.toast-copy .toast-icon-wrapper,
.toast-success .toast-icon-wrapper {
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
  border-color: rgba(99, 102, 241, 0.4);
}

.toast-error .toast-icon-wrapper {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.4);
}

/* Toast Content Text */
.toast-content {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #cbd5e1;
  white-space: nowrap;
  user-select: none;
}

.toast-content strong,
.toast-content .toast-name {
  color: #ffffff;
  font-weight: 700;
}

.toast-content .toast-action {
  color: #94a3b8;
}

/* Toast Close Button */
.toast-close {
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  margin-left: 0.15rem;
}

.toast-close:hover {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.12);
}

/* Animated Countdown Progress Bar */
.toast-progress-bar {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
}

.toast-capsule.show .toast-progress-bar {
  animation: toast-countdown 3.2s linear forwards;
}

@keyframes toast-countdown {
  from {
    transform: scaleX(1);
    opacity: 0.9;
  }
  to {
    transform: scaleX(0);
    opacity: 0.2;
  }
}

@media (max-width: 640px) {
  .toast-capsule {
    top: 4.6rem;
    max-width: calc(100vw - 2rem);
    font-size: 0.82rem;
  }
}

/* ==========================================
   GATEWAY JOIN MODAL (ROOM INVITATION)
   ========================================== */

.modal-card-gateway {
  max-width: 440px;
  width: 100%;
  padding: 2.2rem 2rem 1.8rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.85), 0 0 40px rgba(99, 102, 241, 0.16);
  backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.modal-card-gateway::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #06b6d4, #6366f1, #a855f7);
}

.gateway-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 600;
}

.gateway-room-code {
  color: #38bdf8;
  font-family: monospace;
  font-weight: 700;
}

.gateway-avatar-box {
  position: relative;
  width: 82px;
  height: 82px;
  margin: 0.25rem 0 0.1rem;
}

.gateway-avatar-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45) 0%, transparent 70%);
  filter: blur(8px);
  animation: pulse-dot 2.5s infinite;
}

.gateway-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
  transition: transform 0.3s ease;
}

.gateway-avatar-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0f172a;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.gateway-intro {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gateway-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.015em;
}

.gateway-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 340px;
}

.gateway-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.gateway-options-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.gateway-check-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #94a3b8;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.gateway-check-label:hover {
  color: #e2e8f0;
}

.gateway-switch-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Oval Capsule Toggle Track */
.custom-switch-slider {
  position: relative;
  width: 38px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  display: inline-block;
}

/* Oval Slider Knob / Thumb */
.custom-switch-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 15px;
  height: 15px;
  background: #cbd5e1;
  border-radius: 50%;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gateway-check-label:hover .custom-switch-slider {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.18);
}

.gateway-switch-input:checked + .custom-switch-slider {
  background: var(--primary-gradient);
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.45);
}

.gateway-switch-input:checked + .custom-switch-slider::after {
  transform: translateX(16px);
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.gateway-switch-input:focus-visible + .custom-switch-slider {
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.6);
}

.gateway-check-text {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
}

.gateway-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  margin-top: 0.1rem;
}

.gateway-back-link:hover {
  color: var(--text-main);
  transform: translateX(-2px);
}

/* ==========================================
   RELOAD CONFIRMATION MODAL (F5 / CTRL+R GUARD)
   ========================================== */
.reload-warning-card {
  max-width: 440px;
  width: 100%;
  text-align: center;
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.85), 0 0 35px rgba(245, 158, 11, 0.16);
  padding: 2.25rem 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modal-spring-up 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.reload-warning-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #eab308);
}

.reload-warning-header {
  margin-bottom: 1.25rem;
}

.reload-warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.38);
  color: #f87171;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.22);
}

.reload-warning-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  border: 2px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.22);
  animation: pulse-warning-glow 2.5s infinite ease-in-out;
}

@keyframes pulse-warning-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(245, 158, 11, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 32px rgba(245, 158, 11, 0.42); }
}

.reload-modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.reload-modal-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  max-width: 360px;
}

.reload-modal-desc strong {
  color: #e2e8f0;
}

.reload-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.reload-btn-stay {
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.reload-btn-leave {
  width: 100%;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  box-shadow: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.reload-btn-leave:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.6);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .navbar-container { padding: 0.85rem 1rem; }
  .hero-title { font-size: 2.25rem; }
  .room-header { flex-direction: column; align-items: flex-start; }
  .screen-stage-header { flex-direction: column; align-items: flex-start; }
  .screen-stage-actions { width: 100%; justify-content: space-between; }
  .stage-btn-text { display: none; }
  .control-bar { bottom: 1rem; padding: 0.6rem 1rem; gap: 0.75rem; }
}
