body,
html {
  margin: 0;
  background-color: #000;
  color: #444;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

::selection {
  color: white;
}

div {
  color: antiquewhite;
  touch-action: none;
}

h1,
p {
  margin: 0 0 1em;
}

.flex-container {
  display: flex;
  align-items: stretch;
  background-color: #2e9097;
}

.flex-container > div {
  background-color: #1c802d;
  border: 1px;
  color: grey;
}

#snookerScore {
  font-family: var(--font-family-primary);
  font-size: 32px;
  color: yellow;
  text-align: center;
  filter: drop-shadow(0.08em 0.08em black);
}

#snookerScoreOverlay {
  position: absolute;
  bottom: 10px;
  right: 80px;
}

.p1Score,
.p2Score {
  font-size: 12px;
}

.p1Score.is-active,
.p2Score.is-active {
  font-weight: 800;
  filter: brightness(1.2);
}

.breakScore {
  font-size: 32px;
  font-style: italic;
  color: yellow;
  text-align: center;
  margin-top: 0.2em;
}

.view3d {
  width: 100%;
  flex: 1;
  min-height: 0;
  cursor: none;
  caret-color: transparent;
  -webkit-user-drag: none;
  user-select: none;
  position: relative;
}

.view3d:focus {
  outline: none;
}

canvas {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border-radius: 5px;
  -webkit-user-drag: none;
  user-select: none;
}

.panel {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0;
  padding: 0;
  background: linear-gradient(rgb(0 64 94), #000214);
  border-radius: 0;
  border-top: 1px solid #2d1e16;
  box-sizing: border-box;
  position: relative;
}

.aimControlColumn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}

.toggleButton {
  height: 100%;
  width: 20%;
  margin-right: 4px;
  aspect-ratio: 0.4;
  border-radius: 10px;
  border-width: 4px;
  padding: 0;
  max-width: 80px;
}

.toggleButton:active,
.menuButton:active {
  transform: scale(0.97);
}

a.pill {
  outline: none;
  background: rgb(0 0 0 / 40%);
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgb(255 255 255 / 15%);
  margin: 0;
  padding: 0 8px;
  font-size: 12px;
  height: 30px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

a {
  color: lightblue;
}

.constants {
  background: linear-gradient(#495155, #0b0b0e);
  border-radius: 5px;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  padding: 5px;
  border: double;
  max-width: 50%;
  font-size: 12px;
}

.nw {
  display: inline-block;
}

label {
  display: inline-block;
  width: 9ch;
}

/* Bot Debug Overlay */
#botDebugOverlay {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 320px;
  min-height: 30px;
  max-height: 400px;
  background: rgb(0 0 0 / 40%);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 8px;
  padding: 0 8px;
  font-family: var(--font-family-mono);
  font-size: 16px;
  color: #ccc;
  z-index: 2000;
  overflow: hidden;
  display: none;
  box-sizing: border-box;
  align-items: center;
  flex-direction: column;
}

#botDebugOverlay header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  min-height: 30px;
}

#botDebugOverlay header span#botDebugToggle {
  cursor: pointer;
}

#botDebugOverlay header button {
  background: transparent;
  border: 1px solid #666;
  color: #aaa;
  cursor: pointer;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  height: 22px;
}

#botDebugOverlay header button:hover {
  background: #333;
  color: #fff;
}

#botDebugOverlay header div {
  display: flex;
  align-items: center;
  gap: 8px;
}

#botDebugLog {
  margin: 4px 0 0;
  padding: 0;
  max-height: 340px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-all;
}

#botDebugLog::-webkit-scrollbar {
  width: 8px;
}

#botDebugLog::-webkit-scrollbar-track {
  background: #222;
}

#botDebugLog::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}

/* Compact mode */
#botDebugOverlay.compact {
  width: 50px;
  height: 30px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

#botDebugOverlay.compact #botDebugLog {
  max-height: 0;
  overflow: hidden;
}

#botDebugOverlay.compact #botDebugClear {
  display: none;
}

/* Lobster emoji in header */
#botDebugOverlay header > span {
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
  top: -2px;
}

#helpOverlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 380px);
  height: min(90%, 620px);
  background: rgb(0 0 0 / 100%);
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  z-index: 3000;
  box-shadow: 0 8px 16px rgb(0 0 0 / 75%);
}

#helpOverlay[hidden] {
  display: none !important;
}

#helpOverlay iframe {
  width: 100%;
  flex: 1;
  border: none;
  border-radius: 8px;
}

.help-footer {
  display: flex;
  gap: 4px;
  padding: 8px 16px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  justify-content: center;
  align-items: center;
}

.help-text {
  color: #ccc;
  font-size: 0.75rem;
}

.lobby-btn,
#helpClose {
  padding: 6px 6px;
  background: rgb(255 255 255 / 10%);
  color: white;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.lobby-btn:hover,
#helpClose:hover {
  background: rgb(255 255 255 / 20%);
  border-color: rgb(255 255 255 / 40%);
}

#botDebugLog::-webkit-scrollbar-thumb:hover {
  background: #777;
}

.drill-panel {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
  pointer-events: auto;
}

.drill-panel-top {
  top: 10px;
  transform: none;
}

.drill-panel-right {
  left: auto;
  right: 10px;
  top: auto;
  /* .outerMenu (hamburger/camera buttons) overflows 39px above #panel's top
     edge, i.e. above #viewP1's bottom edge; clear that plus a small gap. */
  bottom: 49px;
  transform: none;
}

/* When the elevation panel is open the Hit button shifts up; the drill buttons
   are lifted above it. DrillPanel sets `bottom` inline at runtime by measuring
   the Hit button's actual top; here we just switch to bottom-anchoring. */
.drill-panel.elevation-open {
  top: auto;
  transform: none;
}

/* The 44px spacer aligns Preview with the Hit button when centered; it is not
   needed once the stack is lifted above the elevation panel. */
.drill-panel.elevation-open .drill-gap {
  height: 0;
}

.drill-gap {
  height: 44px;
}

.drill-btn {
  width: 90px;
  height: 44px;
  border-radius: 8px;
  border: 2px solid rgb(255 255 255 / 25%);
  background: rgb(0 30 60 / 75%);
  color: antiquewhite;
  font-size: 13px;
  font-family: var(--font-family-primary, sans-serif);
  cursor: pointer;
  user-select: none;
  transition:
    opacity 0.15s,
    background 0.15s;
}

.drill-btn:not(:disabled):hover {
  background: rgb(0 60 110 / 85%);
  border-color: rgb(255 255 255 / 50%);
}

.drill-btn:not(:disabled):active {
  transform: scale(0.96);
}

.drill-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ===========================================================================
   Shot analysis split-screen mode (?ruletype=threecushion&practice&analysis)
   Left: live 3D table (#viewP1). Right: results panel (#analysisPanel). The
   table pane is responsively sized so CameraTop orients it (upright in a
   narrow pane, horizontal in a wide one) automatically.
   =========================================================================== */
/* Grid: table top-left, the game's control panel bottom-left, analysis panel
   down the right. Using grid (not flex) keeps #panel's own internal layout
   (cue-ball spin widget, hit button, power slider) intact — we just hand it the
   bottom-left cell and hide the menu buttons. */
body.analysis-mode {
  display: grid;
  grid-template-columns: 72% 28%;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "table panel"
    "controls panel";
}

body.analysis-mode #viewP1 {
  grid-area: table;
  width: auto;
  height: 100%;
  /* Let the table cell shrink: the WebGL canvas carries an explicit pixel size,
     which would otherwise become the cell's min-content size and overflow. */
  min-width: 0;
  min-height: 0;
}

/* The renderer sets an explicit pixel size on its canvas; cap it to the cell. */
body.analysis-mode #viewP1 > canvas {
  max-width: 100%;
}

/* Keep the control panel, but show only the aim controls the analysis view
   wants (cue-ball spin + elevation, hit button, speed slider). Hide the game
   menu/share/concede/comment buttons; the camera toggle is the floating button. */
body.analysis-mode #panel {
  grid-area: controls;
  background: transparent;
  border-top: 0;
}

body.analysis-mode .outerMenu,
body.analysis-mode #commentMenu {
  display: none;
}

#analysisPanel {
  grid-area: panel;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #15151a;
  border-left: 1px solid #2a2a30;
  color: #eee;
  font-family: system-ui, sans-serif;
  overflow-y: auto;
}

.analysis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #2a2a30;
}

.analysis-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.analysis-content {
  padding: 14px;
}

/* Floating camera-toggle, lower-right of the table pane (only active control). */
.analysis-camera-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid rgb(255 255 255 / 25%);
  background: rgb(0 30 60 / 75%);
  color: antiquewhite;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
}

.analysis-camera-btn:hover {
  background: rgb(0 60 110 / 85%);
}

/* Stack table / controls / analysis vertically on portrait/narrow screens. */
@media (orientation: portrait) {
  body.analysis-mode {
    grid-template-columns: 100%;
    grid-template-rows: 1fr auto 45%;
    grid-template-areas:
      "table"
      "controls"
      "panel";
  }
  #analysisPanel {
    border-left: 0;
    border-top: 1px solid #2a2a30;
  }
}

/* --- analysis results (ported from the former standalone page) --- */
#analysisPanel h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9aa0a6;
  margin: 16px 0 8px;
}

.analysis-status {
  color: #9aa0a6;
  font-size: 13px;
  margin-bottom: 8px;
}

.analysis-results .legend {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: #9aa0a6;
  margin: 8px 0;
}

.analysis-results .legend span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

.analysis-results .legend .ok::before {
  background: #2ec27e;
}

.analysis-results .legend .fail::before {
  background: #e0556b;
}

.analysis-results .legend .original::before {
  background: transparent;
  border: 2px solid #fff;
}

.plot-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.analysis-content canvas {
  background: #0d0d10;
  border-radius: 6px;
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}

.bars {
  margin-top: 14px;
}

.bar-row {
  margin: 16px 0;
}

.bar-label {
  font-size: 14px;
  color: #9aa0a6;
  margin-bottom: 2px;
}

/* Header row of a 1-D bar: the on-demand "Show" button left of the label. */
.bar-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.bar-head .bar-label {
  margin-bottom: 0;
}

.bar-show {
  flex: none;
  padding: 2px 10px;
  font-size: 12px;
  color: #fff;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  background: #2f7d6e;
}

.bar-show:hover:not(:disabled) {
  background: #3a988e;
}

.bar-show:disabled {
  opacity: 0.5;
  cursor: default;
}

/* The bar whose 1-D sweep is currently shown (blue = the live/active accent). */
.bar-row.active .bar-show {
  background: #4aa3ff;
}

.bar-row.active .bar-label {
  color: #cfd3d8;
}

.bar-shiftrow {
  position: relative;
  height: 16px;
  font-size: 13px;
  color: #9aa0a6;
  margin-bottom: 2px;
}

.bar-shift-label {
  position: absolute;
  top: 0;
  white-space: nowrap;
}

.bar-shift-label--left {
  padding-right: calc(6px + 3ch);
}

.bar-shift-label--right {
  padding-left: calc(6px + 3ch);
}

/* Row containing the track+ruler column flanked by the two step buttons.
   flex-start (not center) — .bar-trackcol holds the track AND the taller
   ruler below it, so centering against the whole column would push the
   buttons below the track; flex-start aligns them with the track itself,
   the column's first/top child. */
.bar-trackrow {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.bar-trackcol {
  flex: 1;
  min-width: 0;
}

.bar-track {
  position: relative;
  display: flex;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  background: #0d0d10;
}

.bar-cell {
  flex: 1;
}

/* A small colored patch under the marker, showing the live point's result
   (red/green, matching the scatter dot colors) even when the bar hasn't been
   Shown — also doubles as a visual cue for the size of one grid step.
   Positioned/sized by positionMarkers; colored via .scored/.missed by
   updateBarLiveCellFill, always on, independent of which bar is "active". */
.bar-live-cell {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.bar-live-cell.scored {
  background: #2ec27e;
}

.bar-live-cell.missed {
  background: #e0556b;
}

/* The bowtie marker = the current shot's value on that bar (two triangles
   meeting at the marker's position). Always plain white — coloring it
   directly used to camouflage it against an identically-colored cell once
   the bar was Shown (the live-cell patch above now carries the color
   instead). Positioned by AnalysisPanel via left %. */
.bar-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12px;
  margin-left: -6px;
  pointer-events: none;
  z-index: 2;
}

.bar-marker::before,
.bar-marker::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.bar-marker::before {
  left: 0;
  border-width: 8px 6px 8px 0;
  border-color: transparent #fff transparent transparent;
}

.bar-marker::after {
  right: 0;
  border-width: 8px 0 8px 6px;
  border-color: transparent transparent transparent #fff;
}

/* Step buttons: move the marker exactly one grid step left/right. Solid CSS
   triangles (same construction as the marker) so the two read as one visual
   language; muted grey by default, white on hover, dimmed once the studied
   window's edge is reached (no further step possible). */
.bar-step {
  flex: none;
  width: 14px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.bar-step::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.bar-step--left::before {
  right: 1px;
  border-width: 6px 7px 6px 0;
  border-color: transparent #cdd1d6 transparent transparent;
}

.bar-step--right::before {
  left: 1px;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #cdd1d6;
}

.bar-step--left:hover:not(:disabled)::before {
  border-right-color: #fff;
}

.bar-step--right:hover:not(:disabled)::before {
  border-left-color: #fff;
}

.bar-step:disabled {
  cursor: default;
}

.bar-step--left:disabled::before {
  border-right-color: #3a3a40;
}

.bar-step--right:disabled::before {
  border-left-color: #3a3a40;
}

/* The single white ring = the current shot's spin on the scatter. Positioned by
   AnalysisPanel via left/top %. */
.spin-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 50%);
}

/* Filled with the live point's simulated result (green/red, matching the
   scatter dot colors) once known; hollow/white while pending or while a 1-D
   bar is the active display. */
.spin-marker.scored {
  background: #2ec27e;
}

.spin-marker.missed {
  background: #e0556b;
}

.bar-ruler {
  position: relative;
  height: 22px;
  margin-top: 2px;
}

.bar-tick {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}

.bar-tick--start {
  align-items: flex-start;
  transform: none;
}

.bar-tick--end {
  align-items: flex-end;
  transform: translateX(-100%);
}

.bar-tick-mark {
  width: 1px;
  height: 4px;
  background: #51515a;
}

.bar-tick-label {
  font-size: 12px;
  color: #9aa0a6;
  margin-top: 2px;
  white-space: nowrap;
}

.analysis-results .error {
  color: #e0556b;
  font-size: 15px;
}

.spin-show {
  position: absolute;
  left: 10px;
  bottom: 14px;
  width: auto;
  padding: 8px 14px;
  font-size: 14px;
  color: #fff;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  background: #2f7d6e;
  box-shadow: 0 1px 4px rgb(0 0 0 / 40%);
}

.spin-show:hover:not(:disabled) {
  background: #3a988e;
}

/* The spin scatter is currently the live display (blue = the live/active
 * accent, matching .bar-row.active .bar-show). Needs an explicit :hover
 * override too — otherwise .spin-show:hover (2 selectors) outranks
 * .spin-show.active (also 2) on hover and the green flashes back. */
.spin-show.active,
.spin-show.active:hover {
  background: #4aa3ff;
}

.analysis-toolbar {
  display: none;
}

.analysis-toolbar button.secondary {
  background: #34343c;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 13px;
  cursor: pointer;
}

#analysisPanel button:disabled {
  opacity: 0.5;
  cursor: default;
}
