/* Stili specifici per il layout della card V2 */

.wip-v2-hero {
  min-height: calc(100vh - 250px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background-color: #f7f7f7;
}

.wip-v2-card {
  max-width: 860px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #000000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  padding: 3.5rem 2.5rem;
  text-align: center;
}

/* COMPONENTE MONITOR FOTOCAMERA DIGITALE (CAMERA BACK DISPLAY) */

.camera-body {
  max-width: 520px;
  margin: 0 auto 2.5rem auto;
  background: #181818;
  border: 3px solid #0a0a0a;
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 15px 35px rgba(0, 0, 0, 0.25);
  user-select: none;
}

/* Dettagli corpo macchina (Viti, Mirino, Red Dot) */

.camera-top-dial {
  position: absolute;
  top: -12px;
  right: 40px;
  width: 44px;
  height: 12px;
  background: #333333;
  border-radius: 3px 3px 0 0;
  border: 1px solid #000000;
}

.camera-viewfinder {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: #222222;
  border-radius: 4px 4px 0 0;
  border: 1px solid #000;
}

.camera-brand-badge {
  position: absolute;
  top: 10px;
  left: 16px;
  width: 12px;
  height: 12px;
  background: #d90429;
  border-radius: 50%;
}

/* SCHERMO MONITOR LCD */

.camera-lcd-screen {
  background: #050505;
  border: 2px solid #282828;
  border-radius: 4px;
  padding: 1rem;
  color: #ffffff;
  font-family: monospace, sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Griglia Regola dei Terzi nello schermo */

.camera-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 33.33% 33.33%;
}

/* Header Display LCD */

.lcd-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #aaaaaa;
  border-bottom: 1px stroke rgba(255, 255, 255, 0.1);
  padding-bottom: 0.4rem;
  z-index: 2;
}

.lcd-rec-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 1.2s infinite;
  margin-right: 4px;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* Area Centrale del Monitor: Avviso di Errore */

.lcd-error-content {
  z-index: 2;
  padding: 1.5rem 0;
}

.lcd-error-code {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #ef4444;
  text-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
  margin: 0;
  line-height: 1;
}

.lcd-error-msg {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fca5a5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
}

/* Reticolo di Messa a Fuoco Rosso [ + ] */

.focus-box {
  display: inline-block;
  border: 1px dashed #ef4444;
  padding: 4px 12px;
  margin-top: 0.8rem;
  color: #ffffff;
  font-size: 0.7rem;
  background: rgba(239, 68, 68, 0.1);
}

/* Footer Status Bar LCD: Parametri EXIF Fotocamera */

.lcd-bottom-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.4rem 0.5rem;
  border-radius: 3px;
  z-index: 2;
}

.lcd-param {
  display: flex;
  align-items: center;
  gap: 3px;
}

.lcd-param-val {
  color: #ffffff;
  font-weight: 700;
}

/* Testo e Pulsanti della Scheda */

.wip-v2-badge {
  display: inline-block;
  font-family: monospace, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #000000;
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
}

.wip-v2-title {
  font-family: 'Volkhov', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.75rem;
}

.wip-v2-subtitle {
  font-family: 'Abyssinica SIL', serif;
  font-size: 1.05rem;
  color: #555555;
  max-width: 600px;
  margin: 0 auto 2.25rem auto;
  line-height: 1.6;
}

.btn-wip-primary {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  padding: 0.75rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-wip-primary:hover {
  background: #333333;
  color: #ffffff;
}

.btn-wip-outline {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
  padding: 0.75rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-wip-outline:hover {
  background: #000000;
  color: #ffffff;
}

@media (max-width: 576px) {
  .wip-v2-card {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 576px) {
  .lcd-error-code {
    font-size: 2.75rem;
  }
}

@media (max-width: 576px) {
  .wip-v2-title {
    font-size: 1.75rem;
  }
}

