/* ==========================================================================
   One Try — Complete Stylesheet
   ========================================================================== */

:root {
  --bg: #0b0c16;
  --bg-card: rgba(18, 20, 34, 0.95);
  --bg-subtle: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5f6fc;
  --text-dim: #8e92a8;
  
  --brand-yellow: #ffe600;
  --brand-red: #ff3366;
  --brand-cyan: #00f0ff;
  --brand-green: #00ff88;
  --brand-purple: #9d4edd;
  --brand-orange: #ff9100;
  
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(255, 230, 0, 0.4);
}

* {
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

#game-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #151829 0%, #080911 100%);
  overflow: hidden;
}

/* Canvas Styling */
#gameCanvas {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

/* Screen and Modal Overlays */
.screen-overlay,
.modal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 9, 17, 0.85);
  backdrop-filter: blur(8px);
  z-index: 50;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.modal-overlay.hidden,
.screen-overlay.hidden,
.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

/* Brand & Main Menu */
.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 580px;
  width: 90%;
  gap: 20px;
}

.brand-pill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--brand-cyan);
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 5px 14px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 6px;
}

.game-logo {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.game-logo span {
  color: var(--brand-yellow);
  display: inline-block;
  transform: rotate(-3deg);
  text-shadow: 0 0 25px rgba(255, 230, 0, 0.6);
}

.tagline {
  font-size: 15px;
  color: var(--text-dim);
  margin-top: 4px;
}

.menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.menu-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.menu-row .btn {
  flex: 1;
}

.menu-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 6px;
}

.stat-pill {
  font-size: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--text-dim);
}

.stat-pill b {
  color: var(--brand-yellow);
}

/* Button System */
.btn {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}

.btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(30, 34, 56, 0.95);
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.97) translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #ffbb00 100%);
  color: #0b0c16;
  border-color: #ffd000;
  box-shadow: 0 4px 18px rgba(255, 204, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fff04d 0%, #ffc400 100%);
  box-shadow: 0 6px 24px rgba(255, 204, 0, 0.5);
}

.btn-danger {
  background: linear-gradient(135deg, var(--brand-red) 0%, #d91448 100%);
  color: #ffffff;
  border-color: #ff5c85;
  box-shadow: 0 4px 18px rgba(255, 51, 102, 0.3);
}

.btn-danger:hover {
  background: linear-gradient(135deg, #ff4d7a 0%, #eb1e54 100%);
  box-shadow: 0 6px 24px rgba(255, 51, 102, 0.5);
}

.btn-success {
  background: linear-gradient(135deg, var(--brand-green) 0%, #00cc6a 100%);
  color: #0b0c16;
  border-color: #33ff9f;
  box-shadow: 0 4px 18px rgba(0, 255, 136, 0.3);
}

.btn-huge {
  padding: 16px 24px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.btn-huge .btn-icon {
  font-size: 24px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn-main {
  font-size: 15px;
  font-weight: 800;
}

.btn-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
}

.streamer-mode-btn:hover {
  border-color: var(--brand-purple);
  box-shadow: 0 0 16px rgba(157, 78, 221, 0.4);
}

.daily-mode-btn:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 0 16px rgba(255, 145, 0, 0.4);
}

.speedrun-mode-btn:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.4);
}

/* In-Game HUD */
#game-hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 20;
}

.hud-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.hud-left, .hud-right {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.level-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--brand-yellow);
  letter-spacing: 1px;
}

.objective-box {
  background: rgba(14, 16, 28, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.obj-label {
  font-weight: 800;
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 1px;
}

.obj-text {
  font-weight: 700;
  color: #ffffff;
}

.hud-center {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.mod-badge {
  background: rgba(255, 51, 102, 0.2);
  border: 1px solid var(--brand-red);
  color: #ff99b3;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulseBadge 1.5s infinite alternate ease-in-out;
}

@keyframes pulseBadge {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.05); opacity: 1; }
}

.timer-box, .streak-box, .score-box {
  background: rgba(14, 16, 28, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.timer-box {
  font-variant-numeric: tabular-nums;
  color: var(--brand-cyan);
}

.streak-box {
  color: var(--brand-orange);
}

.score-box {
  color: var(--brand-green);
  font-variant-numeric: tabular-nums;
}

.hud-icon-btn {
  background: rgba(14, 16, 28, 0.85);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
  pointer-events: auto;
  transition: transform 0.1s ease, border-color 0.15s ease;
}

.hud-icon-btn:hover {
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Streamer HUD Overlay */
#streamer-hud {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.streamer-badge {
  background: #ff0044;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  width: fit-content;
  box-shadow: 0 0 12px rgba(255, 0, 68, 0.5);
}

.streamer-stats {
  display: flex;
  gap: 6px;
}

.s-stat {
  background: rgba(10, 11, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 4px 10px;
  display: flex;
  flex-direction: column;
}

.s-label {
  font-size: 8px;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.s-val {
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.s-val.glow {
  color: var(--brand-yellow);
  text-shadow: 0 0 10px rgba(255, 230, 0, 0.6);
}

.chat-card {
  background: rgba(18, 14, 32, 0.92);
  border: 1px solid var(--brand-purple);
  border-radius: 10px;
  padding: 10px 14px;
  max-width: 240px;
  box-shadow: 0 4px 16px rgba(157, 78, 221, 0.25);
  animation: floatChat 3s ease-in-out infinite;
}

@keyframes floatChat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.chat-title {
  font-size: 10px;
  font-weight: 800;
  color: var(--brand-purple);
  letter-spacing: 1px;
}

.chat-desc {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 3px 0;
}

.chat-status {
  font-size: 10px;
  font-weight: 800;
  color: var(--brand-green);
}

/* Clip Banner */
.clip-banner {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, rgba(255, 0, 85, 0.95), rgba(157, 78, 221, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(255, 0, 85, 0.4);
  animation: slideInBanner 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
  z-index: 35;
}

@keyframes slideInBanner {
  from { transform: translateX(50px) scale(0.9); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}

.clip-icon {
  font-size: 26px;
}

.clip-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
}

.clip-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Modals & Dialog Cards */
.chaos-card,
.fail-card,
.win-card,
.pause-card,
.panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.level-panel {
  max-width: 680px;
}

/* Pre-Level Chaos Card */
.chaos-tag {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--brand-orange);
  background: rgba(255, 145, 0, 0.15);
  border: 1px solid rgba(255, 145, 0, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.chaos-card h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 6px;
}

.chaos-rule {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.modifiers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 18px;
}

.mod-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: left;
}

.mod-icon {
  font-size: 24px;
}

.mod-info-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-yellow);
}

.mod-info-desc {
  font-size: 11px;
  color: var(--text-dim);
}

.chat-opt-box {
  background: rgba(157, 78, 221, 0.12);
  border: 1px dashed rgba(157, 78, 221, 0.4);
  border-radius: 10px;
  padding: 10px 14px;
  width: 100%;
  margin-bottom: 18px;
  text-align: left;
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
}

.toggle-container input {
  accent-color: var(--brand-purple);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.press-hint {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 10px;
}

/* Comedic Failure Card */
.fail-stamp {
  font-size: 42px;
  font-weight: 900;
  color: var(--brand-red);
  letter-spacing: -1px;
  text-transform: uppercase;
  transform: rotate(-4deg);
  text-shadow: 0 0 25px rgba(255, 51, 102, 0.6);
  margin-bottom: 6px;
}

.fail-cause {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.fail-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--brand-yellow);
  margin-bottom: 18px;
}

.streak-broken-banner {
  background: rgba(255, 51, 102, 0.15);
  border: 1px solid rgba(255, 51, 102, 0.3);
  padding: 6px 14px;
  border-radius: 8px;
  color: #ff85a0;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.fail-actions, .win-actions, .pause-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Victory Card */
.win-sparkle {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--brand-green);
  margin-bottom: 4px;
}

.win-card h2 {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
}

.win-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-bottom: 16px;
}

.stat-cell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-cell .stat-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.stat-cell .stat-val {
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.stat-cell .stat-val.highlight {
  color: var(--brand-yellow);
}

.win-compliment {
  font-size: 13px;
  font-style: italic;
  color: var(--brand-cyan);
  margin-bottom: 18px;
}

/* Level Select Grid */
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 18px;
}

.panel-header h2 {
  font-size: 20px;
  font-weight: 900;
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

.close-btn:hover {
  color: #ffffff;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 8px;
  width: 100%;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 4px;
}

.lvl-btn {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  transition: transform 0.1s ease, border-color 0.15s ease;
}

.lvl-btn:hover:not(.locked) {
  transform: scale(1.08);
  border-color: var(--brand-yellow);
  background: rgba(255, 230, 0, 0.1);
}

.lvl-btn.completed {
  border-color: var(--brand-green);
  background: rgba(0, 255, 136, 0.08);
}

.lvl-btn.completed::after {
  content: "✓";
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 10px;
  color: var(--brand-green);
}

.lvl-btn.locked {
  opacity: 0.35;
  cursor: not-allowed;
}

/* How to Play & Settings */
.how-content, .settings-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  width: 100%;
}

.how-section h3 {
  font-size: 13px;
  font-weight: 900;
  color: var(--brand-yellow);
  margin-bottom: 6px;
}

.how-section p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dim);
}

.keys-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.key-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

kbd {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: monospace;
  font-size: 11px;
  font-weight: bold;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.settings-actions {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
}

/* Switch & Slider controls */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: 0.2s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.2s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--brand-yellow);
}

input:checked + .slider:before {
  transform: translateX(20px);
  background-color: #0b0c16;
}

/* Touch Assist Buttons (hidden on desktop) */
.touch-controls {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  z-index: 50;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.touch-controls.hidden {
  display: none !important;
}

.touch-dpad, .touch-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.touch-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(20, 24, 40, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.08s ease, background 0.08s ease, border-color 0.08s ease;
}

.touch-btn:active, .touch-btn.active {
  background: var(--brand-yellow);
  border-color: #ffffff;
  color: #000000;
  transform: scale(0.92);
  box-shadow: 0 0 16px var(--brand-yellow);
}

.touch-restart-btn {
  font-size: 22px;
  color: #ff8888;
  border-color: rgba(255, 100, 100, 0.5);
}

.touch-restart-btn:active, .touch-restart-btn.active {
  background: #ff4757;
  color: #ffffff;
  box-shadow: 0 0 16px #ff4757;
}

.touch-jump {
  width: 88px;
  height: 60px;
  border-radius: 30px;
  font-size: 14px;
  background: rgba(0, 210, 255, 0.25);
  border-color: rgba(0, 210, 255, 0.6);
}

.touch-jump:active, .touch-jump.active {
  background: #00d2ff;
  color: #000000;
  box-shadow: 0 0 20px #00d2ff;
}

/* Animations */
.animate-pop {
  animation: popIn 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-shake {
  animation: comedicShake 0.4s ease-in-out;
}

.animate-bounce {
  animation: victoryBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes comedicShake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(-8px, 4px) rotate(-2deg); }
  40% { transform: translate(8px, -4px) rotate(2deg); }
  60% { transform: translate(-6px, 2px) rotate(-1deg); }
  80% { transform: translate(4px, -2px) rotate(1deg); }
}

@keyframes victoryBounce {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

/* Accessibility: Reduced Motion */
body.reduced-motion * {
  animation: none !important;
  transition: none !important;
}

/* Accessibility: Colorblind High Contrast */
body.colorblind-mode {
  --brand-yellow: #f0e442;
  --brand-red: #d55e00;
  --brand-cyan: #56b4e9;
  --brand-green: #009e73;
}

