/* PORT 2040 — Boardroom Presentation Player Styles */

body {
  margin: 0;
  padding: 0;
  background: #0f172a;
  color: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.presentation-toolbar {
  height: 56px;
  background: #1e293b;
  border-bottom: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.presentation-title-text {
  font-size: 15px;
  font-weight: 600;
  color: #38bdf8;
}

.presentation-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-ctrl {
  background: #334155;
  color: #f8fafc;
  border: 1px solid #475569;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-ctrl:hover {
  background: #0284c7;
  border-color: #0284c7;
}

.slide-viewport {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.slide-canvas {
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.slide-header {
  border-bottom: 2px solid #0284c7;
  padding-bottom: 16px;
}

.slide-title {
  font-size: 24px;
  font-weight: 700;
  color: #38bdf8;
  margin: 0 0 6px 0;
}

.slide-subtitle {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

.slide-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.slide-kpi-box {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}

.slide-kpi-box .kpi-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #38bdf8;
  font-weight: 600;
}

.slide-kpi-box .kpi-value {
  font-size: 22px;
  font-weight: 700;
  color: #f8fafc;
  margin-top: 4px;
}

.slide-body-content {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  background: #0f172a;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #334155;
}

.slide-footer-bar {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #64748b;
  border-top: 1px solid #334155;
  padding-top: 12px;
}
