/* === Design System === */
:root {
  --bg: #000000;
  --white: #ffffff;
  --gray-95: #f5f5f5;
  --gray-60: #999999;
  --gray-40: #666666;
  --gray-27: #434343;
  --blue: #4285f4;
  --red: #ea4335;
  --green: #34a853;
  --yellow: #fbbc04;
  --cyan: #7dcfff;
  --code-blue: #79c0ff;
  --code-orange: #ffa657;
  --code-str: #a5d6ff;
  --code-red: #ff7b72;
  --code-bg: #0d1117;
  --font: 'Urbanist', sans-serif;
  --mono: 'Roboto Mono', monospace;
  --scale: 1;
}

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

html, body {
  background: #0a0a0a;
  width: 100%; height: 100%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

/* === Slide Container (720x405 scaled to viewport) === */
.slides-container {
  width: 720px; height: 405px;
  background: var(--bg);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(var(--scale));
  transform-origin: center center;
  overflow: hidden;
}

/* === Slide === */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--bg);
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* === Footer === */
.slide-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 37px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 7px;
  font-weight: 500;
  color: var(--gray-60);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 10;
}
.slide-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 19px; right: 19px;
  height: 0.75px;
  background: rgba(255,255,255,0.06);
}
.footer-left::before {
  content: '●';
  margin-right: 6px;
  font-size: 5px;
  vertical-align: middle;
}
.footer-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.footer-center::before {
  content: '■';
  margin-right: 6px;
  font-size: 4px;
  vertical-align: middle;
}

/* === Slide Content === */
.slide-content {
  position: relative;
  width: 100%; height: 100%;
  padding: 44px 50px 45px 50px;
  z-index: 2;
}

/* === Background Image (Slide 1) === */
.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* === Title Slide === */
.title-layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px;
  padding-left: 18px;
  padding-right: 18px;
}
.main-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-60);
  margin-top: 8px;
}
.author {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-60);
  margin-top: 20px;
}

/* === Standard Header Layout === */
.header-layout {
  padding: 44px 50px 45px 18px;
}
.slide-header {
  font-size: 34px;
  font-weight: 600;
  color: var(--gray-95);
  line-height: 1.2;
  letter-spacing: -0.02em;
  view-transition-name: slide-header;
}
.slide-header .sub {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-40);
  margin-top: -2px;
  letter-spacing: -0.01em;
}

/* === Bullet Lists (like slide 5, 20, 22, 35) === */
.bullet-list {
  list-style: none;
  margin-top: 24px;
  padding-left: 46.61px;
}
.bullet-list > li {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  position: relative;
}
.bullet-list > li:has(ul) {
  margin-bottom: 0;
}
.bullet-list > li::before {
  content: '▸';
  position: absolute;
  left: -26px;
  top: 0;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.5;
}
.bullet-list > li strong {
  font-weight: 600;
  color: var(--white);
}
.bullet-list .sub-list {
  list-style: none;
  margin-top: 8px;
  padding-left: 36px;
}
.bullet-list .sub-list li {
  font-size: 17px;
  color: var(--gray-95);
  line-height: 1.3;
  margin-bottom: 8px;
  position: relative;
}
.bullet-list .sub-list li::before {
  content: '○';
  position: absolute;
  left: -26px;
  top: 0;
  color: var(--gray-60);
  font-size: 12px;
  line-height: 1.8;
}

/* === Code Slides (6-13, 23-24) === */
.code-layout {
  display: flex;
  flex-direction: column;
  padding: 36px 18px 37px 18px;
}
.code-layout .slide-header {
  margin-bottom: 10px;
}
.code-body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  flex: 1;
  align-items: start;
}
.code-block {
  font-family: var(--mono);
  font-weight: 400;
  /* font-size/line-height:0 collapses the whitespace text-nodes
     between the block <span class="line"> elements inside <pre> */
  font-size: 0;
  line-height: 0;
  color: var(--white);
  white-space: normal;
  background: var(--code-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 8px 12px;
  margin: 0;
  overflow: hidden;
  align-self: center;
}
.code-block .line {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  white-space: pre;
  opacity: 0.25;
  transition: opacity 0.15s;
}
.code-block .line.hl {
  opacity: 1;
}
.code-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-95);
  line-height: 1.5;
  padding-right: 20px;
}

/* === Diagram (Slides 3, 4, 16-18) === */
.diagram {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.diagram .node {
  position: absolute;
  border: 1px solid rgba(122,162,247,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: var(--bg);
  width: 92.17px;
  height: 66.56px;
  border-radius: 3px;
}
.diagram .node-label {
  position: absolute;
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-60);
}
.diagram .tools-stack {
  position: absolute;
}
.diagram .tools-card {
  position: absolute;
  border: 1px solid rgba(122,162,247,0.25);
  width: 65.52px;
  height: 52.94px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--white);
  background: var(--bg);
  border-radius: 3px;
}
.diagram .conn {
  position: absolute;
  z-index: 1;
}
.diagram .mcp-node {
  background: #1e2030;
  border-color: rgba(122,162,247,0.45);
}
.diagram .badge {
  font-size: 8px;
  color: var(--gray-60);
}

/* === Slide 2: Agentic Systems === */
.s2-layout {
  position: relative;
  width: 100%; height: 100%;
}
.s2-title {
  position: absolute;
  top: 44px; left: 18px;
  font-size: 34px; font-weight: 600;
  color: var(--gray-95);
}
.s2-imgs {
  position: absolute;
  top: 0; left: 0;
  width: 720px; height: 405px;
}
.s2-imgs img {
  position: absolute;
  border-radius: 4px;
  object-fit: cover;
}
.s2-img1 { left: 0; top: 0; width: 314px; height: 261px; z-index: 2; }
.s2-img2 { left: 337px; top: 0; width: 318px; height: 264px; z-index: 2; }
.s2-img3 { left: 269px; top: 65px; width: 426px; height: 284px; z-index: 1; opacity: 0.12; }

/* === Slide 19: Making agents more powerful (topics) === */
.topics-layout {
  padding: 44px 18px;
}
.topics-layout .slide-header {
  margin-bottom: 2px;
}
.topics-sub {
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-40);
  margin-bottom: 50px;
}
.topics-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}
.topic-box {
  border: 1px solid rgba(122,162,247,0.3);
  width: 240px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 500;
  color: var(--white);
  border-radius: 4px;
  background: rgba(122,162,247,0.04);
}

/* === Slide 21: CLIs ❤️ Skills === */
.center-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 10px;
}
.center-statement .big-text {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 30px;
}
.center-statement .big-text .heart {
  font-size: 64px;
  line-height: 1;
}

/* === Slide 25/26: Anti-pattern (full-bleed image) === */
.fullbleed-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.dont-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dont-text {
  font-size: 92px;
  font-weight: 900;
  color: var(--red);
  transform: rotate(-15deg);
  text-shadow: 0 4px 20px rgba(247,118,142,0.4);
  letter-spacing: 0.05em;
}
.dont-circle {
  position: absolute;
  width: 350px; height: 350px;
  border: 20px solid var(--red);
  border-radius: 50%;
  border-style: dashed;
}

/* === Slide 27: Statement text === */
.statement-layout {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 60px;
}
.statement-text {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* === Slide 28: Five Best Practices === */
.practices-layout {
  padding: 30px 18px;
}
.practices-layout .slide-header {
  font-size: 40px;
  margin-bottom: 20px;
}
.practice-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 18px;
  margin-bottom: 8px;
  background: #0d1017;
}
.practice-num {
  font-size: 22px;
  font-weight: 700;
  min-width: 36px;
}
.practice-label {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

/* === Slide 29: Skills vs Scripts === */
.split-layout {
  display: flex;
  flex-direction: column;
  padding: 44px 18px 45px 18px;
}
.split-layout .slide-header {
  margin-bottom: 18px;
}
.terminal-window {
  background: #1a1b26;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  position: absolute;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 16px 40px rgba(0,0,0,0.5);
}
.terminal-window::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 18.39px;
  height: 1px;
  background: rgba(0,0,0,0.4);
}
.terminal-window .terminal-dots {
  position: absolute;
  inset: 0;
  height: 18.39px;
  background: #1e2030;
  padding: 0;
}
.terminal-window .terminal-dots span {
  position: absolute;
  width: 5.95px; height: 5.95px;
  border-radius: 50%;
}
.terminal-window .terminal-dots .dot-r { left: 5.62px; top: 6.15px; background: #ff5f57; }
.terminal-window .terminal-dots .dot-y { left: 15.74px; top: 6.15px; background: #febc2e; }
.terminal-window .terminal-dots .dot-g { left: 25.86px; top: 6.15px; background: #28c840; }
.terminal-window .terminal-body {
  position: absolute;
  inset: 18.39px 0 0 0;
  padding: 11px 8px 0 8px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.3;
  color: var(--white);
  white-space: pre-wrap;
}
.terminal-window .terminal-body.mono {
  font-family: var(--mono);
  font-size: 11.5px;
}
.terminal-window .terminal-body .numbered-item {
  margin-bottom: 14px;
}

/* Python code syntax in slide 29 */
.py-kw  { color: var(--code-orange); }
.py-fn  { color: var(--white); }
.py-str { color: var(--code-str); }
.py-op  { color: var(--gray-60); }

/* === Slide 31/32: Pyramid === */
.pyramid-layout {
  display: flex;
  flex-direction: column;
  padding: 44px 18px;
}
.pyramid-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.pyramid-label {
  position: absolute;
  font-family: var(--font);
  font-size: 11px !important;
  color: var(--white);
  text-align: center;
  pointer-events: auto;
  line-height: 1.3;
  font-weight: 400;
}
.pyramid-label .small {
  font-size: 11px;
}
.pyramid-label .tier-sub {
  font-size: 6px;
  color: var(--gray-60);
  display: block;
  margin-top: 1px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.pyramid-tier {
  transition: all 0.3s ease;
}
.pyramid-tier.active {
  filter: drop-shadow(0 0 10px rgba(122, 162, 247, 0.45));
  stroke-width: 1.2px;
}
.pyramid-container.has-active .pyramid-tier:not(.active) {
  opacity: 0.45;
}
.pyramid-container.has-active .pyramid-label:not(.active) {
  opacity: 0.45;
}
.pyramid-label {
  transition: all 0.3s ease;
}
.pyramid-label.active {
  color: var(--blue);
  text-shadow: 0 0 8px rgba(122, 162, 247, 0.3);
}
.pyramid-label.active .tier-sub {
  color: var(--blue);
}

/* === Slide Overrides === */

.left-margin-31-7 .slide-header,
:host(.left-margin-31-7) .slide-header {
  margin-left: 13.71px;
}

.practice-row {
  position: absolute;
  left: 45px;
  width: 630px;
  height: 41.24px;
  background: #1a1b26;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding-left: 14.09px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
}
.practice-row.r1 { top: 105.0px;  color: #7aa2f7; }
.practice-row.r2 { top: 153.75px; color: #f7768e; }
.practice-row.r3 { top: 202.5px;  color: #e0af68; }
.practice-row.r4 { top: 251.25px; color: #9ece6a; }
.practice-row.r5 { top: 300.0px;  color: #bb9af7; }
.practice-num {
  margin-right: 28px;
}

.underline {
  color: var(--blue);
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 2px;
  background: var(--blue);
  opacity: 0.55;
  border-radius: 2px;
}

/* === Slide 33/34: Full-bleed images === */
.img-layout {
  position: relative;
  width: 100%; height: 100%;
}
.img-layout .placed-img {
  position: absolute;
  border-radius: 4px;
}

/* === Slide 29: Skills vs Scripts — left terminal overflow fix === */

/* === Slide 35: Skill evals — bullet overflow fix === */

/* === Slide 36: Terminal + bullets === */
.s36-terminal {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 2.0;
  color: var(--white);
}
.s36-terminal .prompt { color: var(--green); }

/* === Slide 37: Evals terminology === */
.terms-layout {
  padding: 44px 18px;
}
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  padding: 0 30px;
}
.term-block { text-align: center; }
.term-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}
.term-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
}

/* === Slide 38 / 39: Embedded demos === */
.slide-iframe {
  position: absolute;
  inset: 0;
  border: none;
  display: block;
  width: 720px;
  height: 405px;
}

/* === HUD Navigation === */
.presentation-hud {
  position: fixed;
  bottom: 20px; right: 20px;
  background: rgba(30,32,48,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 24px;
  display: flex; align-items: center; gap: 10px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s;
  font-family: var(--mono);
}
body:hover .presentation-hud,
.presentation-hud:focus-within { opacity: 1; }
.hud-btn {
  background: none; border: none;
  color: var(--gray-95);
  font-size: 14px; cursor: pointer;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}
.hud-btn:hover { background: rgba(122,162,247,0.1); color: var(--blue); }
.hud-progress {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gray-60);
}

/* === Progress Bar === */
.timeline-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.04);
  z-index: 101;
}
.timeline-progress {
  height: 100%;
  width: 0%;
  background: var(--blue);
  transition: width 0.25s ease;
}

/* === View Transitions === */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.2s;
  animation-timing-function: ease;
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}

/* === Terminal Cursor Glimmer === */
.terminal-cursor {
  display: inline-block;
  color: var(--cyan);
}
:host(.active) .terminal-cursor {
  animation: terminal-blink 0.8s step-end 5;
}
@keyframes terminal-blink {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}


/* === Takeaway Card Shimmer === */
.takeaway-card {
  position: relative;
  overflow: hidden;
}
.takeaway-card::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.takeaway-card.active::before {
  animation: card-shimmer 0.75s ease-out forwards;
}
@keyframes card-shimmer {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* === Presenter Mode === */
body.presenter-mode {
  background-color: #0c0d12 !important;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.presenter-mode #presentation {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  background: transparent !important;
  overflow: visible !important;
  pointer-events: none !important;
  z-index: 1000 !important;
  top: 0 !important;
  left: 0 !important;
}

body.presenter-mode .slide {
  pointer-events: auto !important;
}

body.presenter-mode .slide.active {
  display: block !important;
  opacity: 1 !important;
  position: fixed !important;
  left: var(--current-left) !important;
  top: var(--current-top) !important;
  width: 720px !important;
  height: 405px !important;
  transform: scale(var(--current-scale)) !important;
  transform-origin: top left !important;
  z-index: 1010 !important;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.presenter-mode .slide.next-slide-preview {
  display: block !important;
  opacity: 1 !important;
  position: fixed !important;
  left: var(--next-left) !important;
  top: var(--next-top) !important;
  width: 720px !important;
  height: 405px !important;
  transform: scale(var(--next-scale)) !important;
  transform-origin: top left !important;
  z-index: 1010 !important;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.presenter-mode .timeline-bar,
body.presenter-mode .presentation-hud {
  display: none !important;
}

/* Presenter UI Elements */
.presenter-ui {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
  color: #e2e8f0;
  background-color: #08090c;
  font-family: var(--font);
}

.presenter-header {
  height: 56px;
  background-color: #0f111a;
  border-bottom: 1px solid #1a1c28;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.presenter-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.presenter-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.presenter-slide-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray-60);
}

.presenter-timer-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #161822;
  padding: 4px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.presenter-timer {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
}

.presenter-reset-timer {
  background: none;
  border: none;
  color: var(--gray-60);
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color 0.15s;
}

.presenter-reset-timer:hover {
  color: var(--white);
}

.presenter-clock {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-95);
}

.presenter-main {
  flex: 1;
  display: flex;
  gap: 24px;
  padding: 24px;
  box-sizing: border-box;
  min-height: 0;
}

.presenter-current-section {
  flex: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.presenter-next-section {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.presenter-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-60);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.presenter-slide-frame {
  flex: 1;
  background: #0b0c10;
  border: 1px solid #1a1c28;
  border-radius: 8px;
  position: relative;
  min-height: 0;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.presenter-footer {
  height: 56px;
  background-color: #0f111a;
  border-top: 1px solid #1a1c28;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.presenter-footer-left {
  display: flex;
  gap: 12px;
}

.presenter-btn {
  background: #161822;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--gray-95);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.presenter-btn:hover {
  background: #222436;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.presenter-status {
  font-size: 11px;
  color: var(--gray-60);
  display: flex;
  align-items: center;
  gap: 8px;
}

.presenter-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4cd964;
  box-shadow: 0 0 8px rgba(76, 217, 100, 0.5);
  display: inline-block;
}

.presenter-status-dot.disconnected {
  background-color: #ff3b30;
  box-shadow: 0 0 8px rgba(255, 59, 48, 0.5);
}

