/* --- Timer Panel (Bear-ly Awake, Scavenger Hunt) --- */
.timer-panel {
  flex-direction: column;
  padding: 32px;
  gap: 22px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 45% at 50% 40%, rgba(36,56,40,0.45) 0%, transparent 65%),
    linear-gradient(160deg, var(--peat) 0%, var(--forest) 30%, var(--understory) 100%);
}

.timer-panel h2 {
  font-size: 30px;
  color: var(--parchment);
  font-style: italic;
  font-weight: 600;
}

.timer-panel h2::before {
  content: attr(data-section);
  display: block;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  margin-bottom: 4px;
}

.timer-panel .game-desc {
  font-size: 15px;
  color: rgba(237,224,192,0.62);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* Timer display — field notes ink on dark */
.timer-display {
  font-family: 'Zilla Slab', serif;
  font-size: 88px;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  padding: 18px 44px;
  background: rgba(0,0,0,0.32);
  border-radius: 3px;
  border: 1px solid var(--gold-rule);
  display: inline-block;
  margin: 0 auto;
}

.timer-display.warning {
  color: #d86050;
  border-color: rgba(216,96,80,0.3);
}

.timer-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.timer-controls button {
  padding: 11px 28px;
  border-radius: 3px;
  border: none;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
}

.btn-start {
  background: linear-gradient(160deg, #6ed498, #52b878);
  color: var(--peat);
  box-shadow: 0 4px 16px rgba(82,184,120,0.3);
}

.btn-pause {
  background: linear-gradient(160deg, var(--gold-warm), var(--gold));
  color: var(--peat);
  box-shadow: 0 4px 16px rgba(200,150,42,0.3);
}

.btn-reset {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.12) !important;
}

.timer-controls button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Scavenger list — field notes checklist */
.scavenger-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.scavenger-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--cream);
  padding: 10px 14px;
  background: rgba(200,150,42,0.05);
  border-radius: 3px;
  border: 1px solid var(--gold-rule);
  border-left: 3px solid var(--gold-dim);
  transition: background 0.18s, border-color 0.18s;
}

.scavenger-list li:hover {
  background: var(--gold-wash);
  border-color: rgba(200,150,42,0.35);
}

/* Remove old ::before bullet, use border instead */
.scavenger-list li::before { display: none; }

/* --- Auction Panel — specimen catalogue --- */
#panel-auction {
  gap: 0;
  background: linear-gradient(160deg, var(--peat) 0%, var(--forest) 40%, var(--understory) 100%);
}

.auction-layout {
  display: flex;
  width: 100%;
  height: 100%;
}

.auction-image-side {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--canopy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auction-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.88);
}

.auction-image-placeholder {
  text-align: center;
  padding: 40px;
  color: rgba(237,224,192,0.35);
}

.auction-image-placeholder .big-icon { font-size: 60px; opacity: 0.45; }
.auction-image-placeholder p { margin-top: 12px; font-size: 13px; }

/* Info panel — catalogue card */
.auction-info-side {
  width: 360px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: rgba(12,18,10,0.96);
  border-left: 1px solid var(--gold-rule);
  position: relative;
}

/* Gold rule across top */
.auction-info-side::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-warm), var(--gold-dim));
  opacity: 0.7;
}

.auction-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(160deg, var(--gold-warm), var(--gold));
  color: var(--peat);
  font-family: 'Libre Franklin', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  align-self: flex-start;
  box-shadow: 0 3px 12px rgba(200,150,42,0.3);
}

.auction-title {
  font-family: 'Zilla Slab', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--parchment);
  line-height: 1.25;
}

.auction-artist {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auction-desc {
  font-size: 14px;
  color: rgba(237,224,192,0.62);
  line-height: 1.75;
  font-weight: 300;
}

.auction-legal-note {
  font-size: 12px;
  color: rgba(237,224,192,0.38);
  font-style: italic;
}

.btn-bid-now {
  display: block;
  padding: 13px 20px;
  background: linear-gradient(160deg, var(--gold-warm), var(--gold));
  color: var(--peat);
  border-radius: 3px;
  font-family: 'Zilla Slab', serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.22s var(--ease-spring);
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(200,150,42,0.3);
}

.btn-bid-now:hover {
  color: var(--peat);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200,150,42,0.45);
}

.btn-learn-more {
  display: block;
  padding: 9px 20px;
  background: transparent;
  color: var(--gold);
  border-radius: 3px;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--gold-rule);
  transition: all 0.18s;
}

.btn-learn-more:hover {
  background: var(--gold-ink);
  color: var(--gold-warm);
}
