.video-fullscreen { position: fixed; inset: 0; width: 100vw; height: 100vh; height: 100dvh; background: #000; color: #fff; z-index: 2000; overflow: hidden; }
.video-top-bar { position: absolute; top: 0; left: 0; right: 0; z-index: 3; display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0)); pointer-events: none; }
.live-timer { background: var(--green); padding: 6px 14px; border-radius: 8px; font-weight: 700; font-family: monospace; }
.live-badge { font-size: 0.85rem; opacity: .8; }
.video-main { position: absolute; inset: 0; margin: 0; border-radius: 0; overflow: hidden; background: #000; }
.video-area { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.video-area iframe { position: absolute; inset: 0; width: 100% !important; height: 100% !important; border: none; display: block; }
.self-preview { position: absolute; bottom: 16px; right: 16px; width: 80px; height: 100px; background: var(--deep-blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; border: 2px solid #fff; }
.session-warn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); padding: 16px 32px; border-radius: 12px; font-weight: 700; z-index: 10; }
.session-warn.warn-yellow { background: #eab308; color: #000; }
.session-warn.warn-amber { background: var(--amber); }
.session-note { display: none; }
.video-controls-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; align-items: center; gap: 12px; padding: 20px; padding-bottom: max(20px, env(safe-area-inset-bottom)); background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0)); }
.vc-btn { width: 48px; height: 48px; border-radius: 50%; border: none; background: #21262d; font-size: 1.25rem; cursor: pointer; }
.vc-btn.vc-end { background: var(--red); width: auto; padding: 0 24px; border-radius: 24px; color: #fff; }
.vc-btn.vc-leave { background: #d97706; width: auto; padding: 0 24px; border-radius: 24px; color: #fff; }
.post-call { text-align: center; padding: 80px 24px; max-width: 480px; margin: 0 auto; }

.video-container {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 70vh;
  position: relative;
}

.video-container iframe,
#daily-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.session-timer {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,.7);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10;
}

.session-warning {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--amber);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 20;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

.video-controls {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

/* Incoming call banner */
.incoming-call-banner {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: calc(100% - 32px);
  max-width: 420px;
}
.incoming-call-banner.hidden { display: none; }
.incoming-call-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0a2463;
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.incoming-call-icon { font-size: 24px; }
.incoming-call-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.incoming-call-text strong { font-size: 15px; }
.incoming-call-actions {
  display: flex;
  gap: 8px;
}
.btn-call-accept, .btn-call-decline {
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.btn-call-accept { background: #22c55e; color: #fff; }
.btn-call-decline { background: #ef4444; color: #fff; }
