* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b1026;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

#scene {
  display: block;
  width: 100vw;
  height: 100vh;
  cursor: grab;
}

#scene.grabbing {
  cursor: grabbing;
}

#hud {
  position: fixed;
  inset: 0;
  pointer-events: none;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

#hud-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0));
  pointer-events: none;
}

#title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  pointer-events: none;
}

#clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

#clock-time {
  font-size: 17px;
  font-weight: 600;
}

#clock-day {
  font-size: 11px;
  opacity: 0.8;
}

#toggle-cluster {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

#vitals-bar {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  display: flex;
  gap: 16px;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0));
}

#speed-controls {
  display: flex;
  gap: 4px;
  margin-left: auto;
  pointer-events: auto;
}

#speed-controls button {
  pointer-events: auto;
  background: rgba(20,20,35,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  text-shadow: none;
}

#speed-controls button:hover {
  background: rgba(60,60,90,0.7);
}

#speed-controls button.active {
  background: #ffb347;
  color: #241a00;
  border-color: #ffb347;
  font-weight: 700;
}

#settings-wrap {
  position: relative;
  pointer-events: auto;
}

#settings-toggle {
  pointer-events: auto;
  background: rgba(20,20,35,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  text-shadow: none;
}

#settings-toggle:hover {
  background: rgba(60,60,90,0.7);
}

#settings-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(15,15,28,0.96);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 8px;
  min-width: 150px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  pointer-events: auto;
  transition: opacity 0.15s ease;
}

#settings-panel.hidden {
  opacity: 0;
  pointer-events: none;
}

#settings-panel button, #import-label {
  pointer-events: auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  text-shadow: none;
  text-align: left;
  display: block;
}

#settings-panel button:hover, #import-label:hover {
  background: rgba(255,255,255,0.18);
}

#new-city-btn {
  background: rgba(200,60,60,0.25);
  border-color: rgba(255,120,120,0.4);
}

#new-city-btn:hover {
  background: rgba(200,60,60,0.4);
}

#debug-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.55;
  margin-top: 6px;
  padding: 6px 2px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

#debug-add-food-btn, #debug-add-coin-btn, #debug-clear-waste-btn {
  background: rgba(255,179,71,0.12);
  border-color: rgba(255,179,71,0.3);
}

#debug-add-food-btn:hover, #debug-add-coin-btn:hover, #debug-clear-waste-btn:hover {
  background: rgba(255,179,71,0.25);
}

#buy-food-btn {
  pointer-events: auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-shadow: none;
}

#buy-food-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.22);
}

#buy-food-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

#import-file-input {
  display: none;
}

#journal-wrap {
  position: relative;
  pointer-events: auto;
}

#journal-toggle {
  pointer-events: auto;
  background: rgba(20,20,35,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  text-shadow: none;
}

#journal-toggle:hover {
  background: rgba(60,60,90,0.7);
}

#journal-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  width: 320px;
  max-height: 60vh;
  background: rgba(15,15,28,0.96);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  pointer-events: auto;
  transition: opacity 0.15s ease;
}

#journal-panel.hidden {
  opacity: 0;
  pointer-events: none;
}

#journal-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  padding: 0 2px 8px;
  flex: none;
}

#journal-list {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#journal-list::-webkit-scrollbar {
  width: 6px;
}
#journal-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.journal-entry {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.journal-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.journal-day {
  font-size: 10.5px;
  font-weight: 700;
  color: #ffb347;
  text-shadow: none;
}

.journal-text {
  font-size: 12.5px;
  line-height: 1.4;
  opacity: 0.92;
}

#help-toggle {
  pointer-events: auto;
  background: rgba(20,20,35,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  text-shadow: none;
}

#help-toggle:hover {
  background: rgba(60,60,90,0.7);
}

#tech-wrap {
  position: relative;
  pointer-events: auto;
}

#tech-toggle {
  pointer-events: auto;
  background: rgba(20,20,35,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  text-shadow: none;
}

#tech-toggle:hover {
  background: rgba(60,60,90,0.7);
}

#building-menu {
  position: fixed;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 220px;
  background: rgba(15,15,28,0.97);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.45);
  pointer-events: auto;
  transition: opacity 0.12s ease;
}

#building-menu.hidden {
  opacity: 0;
  pointer-events: none;
}

#building-menu-title {
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

#building-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.building-action-btn {
  pointer-events: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-shadow: none;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  text-align: left;
}

.building-action-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.2);
}

.building-action-btn:disabled {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.35);
  cursor: not-allowed;
}

.building-action-cost {
  font-size: 10.5px;
  opacity: 0.75;
  white-space: nowrap;
}

#tech-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  width: 320px;
  max-height: 65vh;
  background: rgba(15,15,28,0.96);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  pointer-events: auto;
  transition: opacity 0.15s ease;
}

#tech-panel.hidden {
  opacity: 0;
  pointer-events: none;
}

#tech-panel-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  padding: 0 2px 8px;
  flex: none;
}

#tech-list {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#tech-list::-webkit-scrollbar {
  width: 6px;
}
#tech-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.tech-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tech-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tech-row.tech-researched {
  opacity: 0.55;
}

.tech-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.tech-name {
  font-size: 13px;
  font-weight: 700;
}

.tech-cost {
  font-size: 11px;
  opacity: 0.8;
  white-space: nowrap;
}

.tech-desc {
  font-size: 11.5px;
  line-height: 1.35;
  opacity: 0.85;
}

.tech-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  opacity: 0.8;
}

.tech-research-btn {
  pointer-events: auto;
  background: #3f7a3f;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 11.5px;
  cursor: pointer;
  text-shadow: none;
}

.tech-research-btn:hover:not(:disabled) {
  background: #4d924d;
}

.tech-research-btn:disabled {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  cursor: not-allowed;
}

.tech-note {
  opacity: 0.7;
}

#location-panel {
  position: absolute;
  top: 118px;
  left: 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  width: 300px;
  max-width: calc(100vw - 32px);
  max-height: 60vh;
  background: rgba(15,15,28,0.96);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  pointer-events: auto;
  transition: opacity 0.15s ease;
}

#location-panel.hidden {
  opacity: 0;
  pointer-events: none;
}

#location-panel-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  padding: 0 2px 8px;
  flex: none;
}

#location-search {
  margin: 0 0 8px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 12px;
  outline: none;
  flex: none;
}

#location-search::placeholder {
  color: rgba(255,255,255,0.45);
}

#location-search:focus {
  border-color: #ffb347;
}

#location-list {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#location-list::-webkit-scrollbar {
  width: 6px;
}
#location-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.location-row {
  pointer-events: auto;
  flex: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  text-shadow: none;
  text-align: left;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 12.5px;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-row:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}

.location-empty {
  font-size: 12px;
  opacity: 0.6;
  padding: 6px 8px;
}

#develop-chip {
  position: absolute;
  top: 118px;
  right: 240px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,20,35,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 10px;
  border-radius: 8px;
  pointer-events: auto;
  font-size: 12px;
}

#develop-district-name {
  font-weight: 600;
  opacity: 0.9;
  white-space: nowrap;
}

#develop-cost {
  font-size: 11px;
  opacity: 0.8;
  white-space: nowrap;
}

#develop-cost.shortfall {
  color: #ff9e7a;
}

#develop-btn {
  pointer-events: auto;
  background: #3f7a3f;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 11.5px;
  cursor: pointer;
  text-shadow: none;
  white-space: nowrap;
}

#develop-btn:hover:not(:disabled) {
  background: #4d924d;
}

#develop-btn:disabled {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  cursor: not-allowed;
}

#district-nav {
  position: absolute;
  top: 84px;
  left: 0;
  right: 240px;
  display: flex;
  gap: 6px;
  padding: 4px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  pointer-events: auto;
  white-space: nowrap;
}

#district-nav::-webkit-scrollbar {
  height: 5px;
}
#district-nav::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.district-btn {
  flex: none;
  pointer-events: auto;
  background: rgba(20,20,35,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 5px 10px;
  border-radius: 14px;
  font-size: 11.5px;
  cursor: pointer;
  text-shadow: none;
}

.district-btn:hover {
  background: rgba(60,60,90,0.75);
}

#follow-chip {
  position: absolute;
  top: 124px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,20,35,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 10px;
  border-radius: 8px;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}

#follow-chip.hidden {
  opacity: 0;
  pointer-events: none;
}

#follow-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

#follow-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

#follow-name {
  font-weight: 700;
  font-size: 14px;
}

#follow-role {
  font-size: 10.5px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#rename-btn {
  pointer-events: auto;
  background: transparent;
  border: none;
  color: #fff;
  opacity: 0.6;
  font-size: 12px;
  cursor: pointer;
  padding: 0 2px;
}

#rename-btn:hover {
  opacity: 1;
}

#follow-activity {
  font-size: 12px;
  opacity: 0.85;
}

#unfollow-btn {
  pointer-events: auto;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 11px;
  cursor: pointer;
  text-shadow: none;
}

#unfollow-btn:hover {
  background: rgba(255,255,255,0.3);
}

#hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  max-width: min(90vw, 560px);
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
  background: rgba(0,0,0,0.35);
  padding: 6px 14px;
  border-radius: 20px;
  white-space: normal;
  pointer-events: none;
}

#roster {
  position: absolute;
  top: 84px;
  right: 0;
  width: 220px;
  max-height: calc(100vh - 118px);
  background: rgba(15,15,28,0.55);
  border-left: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px 0 0 10px;
  padding: 8px;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#roster-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 6px 8px;
  flex: none;
}

#roster-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

#roster-toggle {
  pointer-events: auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 22px;
  height: 22px;
  line-height: 1;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  text-shadow: none;
  flex: none;
}

#roster-toggle:hover {
  background: rgba(255,255,255,0.18);
}

#roster-body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

#roster.collapsed {
  max-height: none;
}

#roster.collapsed #roster-body {
  display: none;
}

#roster-search {
  margin: 0 6px 6px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 12px;
  outline: none;
}

#roster-search::placeholder {
  color: rgba(255,255,255,0.45);
}

#roster-search:focus {
  border-color: #ffb347;
}

#roster-count {
  font-size: 10.5px;
  opacity: 0.65;
  padding: 0 6px 6px;
}

#roster-list {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
}

#roster-list::-webkit-scrollbar {
  width: 6px;
}
#roster-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.roster-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
}

.roster-row:hover {
  background: rgba(255,255,255,0.12);
}

.roster-row.following {
  background: rgba(255,179,71,0.25);
  border-color: #ffb347;
}

.roster-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: none;
  border: 1px solid rgba(0,0,0,0.4);
}

.roster-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.roster-name {
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roster-activity {
  font-size: 10.5px;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#main-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 30%, #2c2440 0%, #171225 70%);
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  transition: opacity 0.2s ease;
}

#main-menu.hidden {
  opacity: 0;
  pointer-events: none;
}

#main-menu-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: min(90vw, 360px);
  text-align: center;
}

#main-menu-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#main-menu-subtitle {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 18px;
}

#main-menu-panel button {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-shadow: none;
}

#main-menu-panel button:hover {
  background: rgba(255,255,255,0.2);
}

#main-menu-panel button.hidden {
  display: none;
}

#menu-new-btn {
  background: #3f7a3f;
  border-color: rgba(255,255,255,0.4);
}

#menu-new-btn:hover {
  background: #4d924d;
}

#tutorial-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,16,0.55);
  transition: opacity 0.2s ease;
}

#tutorial-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

#tutorial-panel {
  width: min(90vw, 420px);
  background: rgba(15,15,28,0.98);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  text-shadow: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

#tutorial-step-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 6px;
}

#tutorial-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

#tutorial-body {
  font-size: 13.5px;
  line-height: 1.5;
  opacity: 0.92;
  min-height: 80px;
}

#tutorial-nav {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

#tutorial-nav button {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  cursor: pointer;
}

#tutorial-nav button:hover:not(:disabled) {
  background: rgba(255,255,255,0.2);
}

#tutorial-nav button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

#tutorial-skip-btn {
  margin-right: auto;
  background: transparent;
  border-color: transparent;
  opacity: 0.7;
}

#tutorial-next-btn {
  background: #3f7a3f;
  border-color: rgba(255,255,255,0.4);
}

#tutorial-next-btn:hover {
  background: #4d924d;
}

@media (max-width: 700px) {
  #roster {
    width: 150px;
  }
  #title {
    font-size: 15px;
  }
  #hint {
    display: none;
  }
}
