/* ═══════════════════════════════════════════════════════════
   ANIMA VIVA · Specchio dell'Anima
   camera-experience.css
   Analisi Sinestetica · Fotocamera → Opera d'Arte
═══════════════════════════════════════════════════════════ */

/* ── VARIABILI ──────────────────────────────────────────── */
:root {
  --bg:       #0a0806;
  --gold:     #c9943a;
  --gold2:    #e8b84b;
  --rust:     #8c3520;
  --parch:    #d4b483;
  --ink:      #f0e2c0;
  --dim:      rgba(240, 226, 192, 0.4);
  --panel:    rgba(12, 10, 8, 0.92);
  --accent2:  #7c6af0;
  --accent3:  #5ec4b0;
}

/* ── RESET E BASE ───────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Mono', monospace;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* ── SFERE AMBIENTALI DI SFONDO ─────────────────────────── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.06;
  z-index: 0;
  animation: orb-float 12s ease-in-out infinite alternate;
}
.orb-a {
  width: 500px; height: 500px;
  background: #c9943a;
  top: -100px; left: -100px;
}
.orb-b {
  width: 400px; height: 400px;
  background: #7c6af0;
  bottom: -80px; right: -80px;
  animation-delay: -5s;
}
@keyframes orb-float {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 30px); }
}

/* ── HEADER ─────────────────────────────────────────────── */
header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(201, 148, 58, 0.12);
  background: rgba(10, 8, 6, 0.8);
  backdrop-filter: blur(20px);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.logo em { font-style: italic; }

.logo-sub {
  font-size: 0.7rem;
  color: var(--dim);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.1em;
}

.back-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--dim);
  border: 1px solid rgba(201, 148, 58, 0.2);
  padding: 0.4rem 1rem;
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.back-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── MAIN GRID ──────────────────────────────────────────── */
main {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 65px);
  align-items: start;
}

@media (max-width: 768px) {
  main { grid-template-columns: 1fr; padding: 1rem; }
}

/* ── PANNELLO FOTOCAMERA ────────────────────────────────── */
.camera-panel {
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.camera-frame {
  position: relative;
  border: 1px solid rgba(201, 148, 58, 0.2);
  background: rgba(5, 4, 3, 0.9);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

/* Angoli decorativi cornice camera */
.camera-frame::before,
.camera-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 10;
  opacity: 0.5;
}
.camera-frame::before { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.camera-frame::after  { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }

#video,
#canvas-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#canvas-preview {
  display: none;
  filter: sepia(0.2) contrast(1.05);
}

/* Linea di scansione animata */
.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 148, 58, 0.4), transparent);
  animation: scan 3s linear infinite;
  z-index: 8;
  pointer-events: none;
}
@keyframes scan {
  from { top: 0; }
  to   { top: 100%; }
}

.camera-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9;
}

/* Mirino */
.crosshair {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(201, 148, 58, 0.3);
  position: relative;
  transition: opacity 0.4s;
}
.crosshair::before,
.crosshair::after {
  content: '';
  position: absolute;
  background: rgba(201, 148, 58, 0.3);
}
.crosshair::before { width: 1px; height: 100%; left: 50%; transform: translateX(-50%); }
.crosshair::after  { height: 1px; width: 100%; top: 50%; transform: translateY(-50%); }

/* Stato fotocamera */
.cam-status {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.cam-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent3);
  flex-shrink: 0;
  animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ── CONTROLLI FOTOCAMERA ───────────────────────────────── */
.controls {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-primary {
  flex: 1;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: none;
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover    { background: var(--gold2); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.btn-secondary {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 148, 58, 0.3);
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); }

.hint-text {
  font-size: 0.5rem;
  color: var(--dim);
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  opacity: 0.7;
}

/* ── PANNELLO RISULTATI ─────────────────────────────────── */
.results-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── SCHERMATA INTRODUTTIVA ─────────────────────────────── */
.intro-card {
  border: 1px solid rgba(201, 148, 58, 0.12);
  background: rgba(12, 10, 8, 0.7);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.intro-title em { font-style: italic; }

.intro-sub {
  font-size: 0.65rem;
  color: var(--dim);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.intro-credits {
  color: rgba(201, 148, 58, 0.5);
}

/* ── SCHERMATA CARICAMENTO ──────────────────────────────── */
.loading-card {
  border: 1px solid rgba(201, 148, 58, 0.12);
  background: rgba(12, 10, 8, 0.7);
  padding: 2rem;
  display: none;
  text-align: center;
}
.loading-card.active { display: block; }

.sigil-anim {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(201, 148, 58, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sigil-spin 3s linear infinite;
  font-size: 1.2rem;
}
@keyframes sigil-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.loading-text {
  font-size: 0.6rem;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loading-steps {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.loading-step {
  font-size: 0.55rem;
  color: rgba(240, 226, 192, 0.3);
  text-align: left;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(201, 148, 58, 0.05);
  transition: color 0.5s;
}
.loading-step.active { color: var(--gold); }
.loading-step.done   { color: var(--accent3); }

/* ── SCHERMATA ERRORE ───────────────────────────────────── */
.error-card {
  border: 1px solid rgba(140, 53, 32, 0.3);
  background: rgba(12, 10, 8, 0.8);
  padding: 1.5rem;
  display: none;
}
.error-card.active { display: block; }

.error-msg {
  font-size: 0.65rem;
  color: var(--rust);
  line-height: 1.7;
}

/* ── SCHEDA RISULTATO ───────────────────────────────────── */
.result-card {
  border: 1px solid rgba(201, 148, 58, 0.15);
  background: rgba(12, 10, 8, 0.8);
  backdrop-filter: blur(10px);
  display: none;
}
.result-card.active { display: block; }

.result-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(201, 148, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 300;
}

.mood-badge {
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border: 1px solid currentColor;
  color: var(--gold);
}

.result-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Intensità emotiva */
.mood-score-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mood-label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.mood-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.mood-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rust), var(--gold), var(--accent3));
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}
.mood-score-value {
  font-size: 0.55rem;
  color: var(--dim);
  text-align: right;
  margin-top: 0.2rem;
}

/* Etichette sezione */
.section-label {
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── RITRATTO SINESTESICO ───────────────────────────────── */
.artwork-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.artwork-frame {
  border: 1px solid rgba(201, 148, 58, 0.15);
  position: relative;
  overflow: hidden;
  background: #050403;
}
.artwork-frame img {
  width: 100%;
  display: block;
  filter: sepia(0.15) contrast(1.05) brightness(0.95);
}
.artwork-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.8rem;
  background: rgba(5, 4, 3, 0.85);
  font-size: 0.45rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  text-align: center;
}
/* Angoli decorativi cornice opera */
.artwork-frame::before,
.artwork-frame::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(201, 148, 58, 0.4);
  border-style: solid;
  z-index: 5;
}
.artwork-frame::before { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.artwork-frame::after  { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

/* ── PALETTE CROMATICA ──────────────────────────────────── */
.palette-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.palette-swatches {
  display: flex;
  gap: 0.4rem;
}
.swatch {
  flex: 1;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s;
  cursor: default;
}
.swatch:hover { transform: scaleY(1.3); }

/* ── SPETTRO EMOTIVO ────────────────────────────────────── */
.emotions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.emotion-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.emotion-name {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  color: var(--dim);
  text-transform: capitalize;
}
.emotion-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.emotion-fill {
  height: 100%;
  background: var(--gold);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

/* ── NARRATIVA INTERPRETATIVA ───────────────────────────── */
.narrative-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  color: rgba(240, 226, 192, 0.85);
  border-left: 2px solid rgba(201, 148, 58, 0.3);
  padding-left: 1rem;
}

/* ── PAROLE CHIAVE ──────────────────────────────────────── */
.keywords-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.keyword {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  border: 1px solid rgba(124, 106, 240, 0.3);
  padding: 0.2rem 0.5rem;
}

/* ── SINESTESIA SONORA ──────────────────────────────────── */
.sound-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sound-type-label {
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  color: var(--dim);
  text-transform: uppercase;
}
.sound-controls {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.sound-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent3);
  border: 1px solid rgba(94, 196, 176, 0.3);
  padding: 0.4rem 0.8rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.sound-btn:hover { background: rgba(94, 196, 176, 0.08); }

.waveform {
  height: 24px;
  display: flex;
  align-items: center;
  gap: 1.5px;
}
.wv-bar {
  width: 2px;
  background: rgba(94, 196, 176, 0.4);
  transform: scaleY(0.2);
  transition: transform 0.1s;
}
.wv-bar.playing {
  animation: wv-anim 0.8s ease-in-out infinite alternate;
}
@keyframes wv-anim {
  from { transform: scaleY(0.15); }
  to   { transform: scaleY(1); }
}

/* ── AREA RESET ─────────────────────────────────────────── */
.reset-area {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(201, 148, 58, 0.08);
}
.btn-reset {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s;
}
.btn-reset:hover { color: var(--gold); }

/* ── OPERA D'ARTE GENERATA ─────────────────────────────────── */
.generated-artwork-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.generated-artwork-frame {
  position: relative;
  border: 1px solid rgba(201, 148, 58, 0.2);
  background: #050403;
  overflow: hidden;
  min-height: 80px;
}

.generated-artwork-frame img {
  width: 100%;
  display: block;
  transition: opacity 0.6s ease;
}

/* Angoli decorativi */
.generated-artwork-frame::before,
.generated-artwork-frame::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(201, 148, 58, 0.5);
  border-style: solid;
  z-index: 5;
  pointer-events: none;
}
.generated-artwork-frame::before { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.generated-artwork-frame::after  { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

.artwork-gen-status {
  padding: 1.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  text-align: center;
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.generated-artwork-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.8rem;
  background: linear-gradient(transparent, rgba(5,4,3,0.92));
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(240, 226, 192, 0.7);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── CERTIFICATO BLOCKCHAIN ─────────────────────────────────── */
.blockchain-cert {
  border: 1px solid rgba(201, 148, 58, 0.25);
  border-top: 1px solid rgba(201, 148, 58, 0.08);
  background: rgba(6, 5, 2, 0.95);
  backdrop-filter: blur(12px);
  font-family: 'DM Mono', monospace;
  overflow: hidden;
}

.bc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(201, 148, 58, 0.12);
  background: rgba(201, 148, 58, 0.04);
}

.bc-icon {
  color: rgba(201, 148, 58, 0.7);
  font-size: 0.9rem;
  line-height: 1;
}

.bc-title {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 148, 58, 0.65);
  flex: 1;
}

.bc-badge {
  font-size: 0.42rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(94, 196, 176, 0.7);
  border: 1px solid rgba(94, 196, 176, 0.25);
  padding: 0.15rem 0.4rem;
}

.bc-body {
  padding: 0.8rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bc-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.bc-label {
  font-size: 0.45rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 226, 192, 0.28);
  min-width: 52px;
  flex-shrink: 0;
}

.bc-value {
  font-size: 0.55rem;
  color: rgba(240, 226, 192, 0.65);
  letter-spacing: 0.04em;
}

.bc-hash-wrap {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(201, 148, 58, 0.08);
  padding-top: 0.55rem;
}

.bc-hash {
  font-size: 0.42rem;
  color: rgba(94, 196, 176, 0.55);
  letter-spacing: 0.05em;
  word-break: break-all;
  line-height: 1.7;
  margin-top: 0.3rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0.4rem 0.5rem;
  background: rgba(94, 196, 176, 0.04);
  border: 1px solid rgba(94, 196, 176, 0.1);
}

.bc-hash:hover {
  color: rgba(94, 196, 176, 0.85);
  background: rgba(94, 196, 176, 0.07);
}

.bc-note {
  font-size: 0.42rem;
  color: rgba(240, 226, 192, 0.2);
  line-height: 1.8;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 0.5rem;
  letter-spacing: 0.03em;
}

.bc-note code {
  color: rgba(201, 148, 58, 0.45);
  font-family: inherit;
}


/* ══ DIZIONARIO WADA · camera-experience ══ */
.wada-cam-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wada-cam-season-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.wada-cam-badge {
  font-size: 0.45rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 148, 58, 0.35);
  padding: 0.18rem 0.55rem;
}
.wada-cam-archetype {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--dim);
}
.wada-cam-palette {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.wada-cam-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.wada-cam-swatch {
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.wada-cam-chip-name {
  font-size: 0.44rem;
  letter-spacing: 0.06em;
  color: rgba(240, 226, 192, 0.45);
  line-height: 1.2;
}
.wada-cam-chip-pct {
  font-size: 0.4rem;
  color: var(--gold);
  opacity: 0.6;
}
.wada-cam-proportion {
  font-size: 0.44rem;
  letter-spacing: 0.04em;
  color: rgba(240, 226, 192, 0.2);
  margin-bottom: 0.7rem;
}
.wada-cam-matches {
  margin-bottom: 0.7rem;
}
.wada-cam-matches-label {
  font-size: 0.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 148, 58, 0.35);
  margin-bottom: 0.4rem;
}
.wada-cam-match-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.3rem;
}
.wada-cam-orig,
.wada-cam-wada {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.wada-cam-arrow {
  font-size: 0.55rem;
  color: rgba(240, 226, 192, 0.18);
}
.wada-cam-match-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(240, 226, 192, 0.4);
}
.wada-cam-senses {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.wada-cam-senses-label {
  font-size: 0.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 148, 58, 0.35);
  margin-bottom: 0.3rem;
}
.wada-cam-sense-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.wada-cam-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.3rem;
  opacity: 0.75;
}
.wada-cam-sense-data {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}
.wada-cam-sense-name {
  font-size: 0.44rem;
  letter-spacing: 0.06em;
  color: rgba(240, 226, 192, 0.4);
}
.wada-cam-sense-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(240, 226, 192, 0.3);
}
.wada-cam-jung {
  margin-top: 0.7rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(201, 148, 58, 0.1);
  border-left: 2px solid rgba(201, 148, 58, 0.3);
  background: rgba(201, 148, 58, 0.03);
}
.wada-cam-jung-label {
  font-size: 0.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 148, 58, 0.35);
  margin-bottom: 0.3rem;
}
.wada-cam-jung-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(240, 226, 192, 0.45);
}
.wada-cam-credit {
  font-size: 0.4rem;
  letter-spacing: 0.06em;
  color: rgba(240, 226, 192, 0.15);
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201, 148, 58, 0.07);
}
