/* ==========================================================================
   FREE WATCH — NOMAD DROP CINEMATIC FULLSCREEN STYLES
   ========================================================================== */

/* ─── ALWAYS DARK & PREMIUM THEME VARIABLES ──────────────── */
:root {
  --font-primary: "Montserrat", sans-serif;
  --font-technical: "DM Mono", monospace;
  
  /* Shared Dark Backgrounds for Cinematic Expectation */
  --bg-primary: #060608;
  --bg-secondary: rgba(12, 12, 14, 0.6);
  --text-primary: #f0efeb;
  --text-secondary: #a0a5ad;
  
  /* Classic Theme Accent (Gold Champagne) */
  --accent: #c5a028;
  --tech-grid-color: rgba(255, 255, 255, 0.05);
}

body.dynamic-mode {
  /* Dynamic Theme Accent (Cyan) */
  --bg-primary: #060608;
  --bg-secondary: rgba(6, 6, 8, 0.6);
  --text-primary: #ffffff;
  --text-secondary: #8d8d93;
  --accent: #00e5ff;
  --tech-grid-color: rgba(255, 255, 255, 0.06);
}

/* Base resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  width: 100vw;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Transparent blur header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tech-grid-color);
  background-color: rgba(6, 6, 8, 0.4);
}

.header-logo {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-decoration: none;
}

.header-back-btn {
  font-family: var(--font-technical);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid var(--tech-grid-color);
  padding: 8px 16px;
  border-radius: 2px;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.header-back-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Fullscreen Ambient HUD Canvas */
.nomad-fullscreen-hud {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
  color: var(--accent);
  opacity: 0.45;
}

.hud-canvas-svg {
  display: block;
}

.hud-rotate-slow {
  transform-origin: 0px 0px;
  animation: spinCW 60s linear infinite;
}

.hud-rotate-fast-reverse {
  transform-origin: 0px 0px;
  animation: spinCCW 20s linear infinite;
}

@keyframes spinCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinCCW {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.hud-led-pulse {
  animation: ledFade 0.8s infinite alternate;
}

@keyframes ledFade {
  0% { opacity: 0.25; }
  100% { opacity: 0.85; }
}

/* Main Layout structure */
.drop-main-fullscreen {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ──────────────────────────────────────────────────────────
   FULLSCREEN SECTIONS (100vh / 100vw)
   ────────────────────────────────────────────────────────── */
.section-hero-fullscreen,
.section-event-fullscreen {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-bg-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 6, 8, 0.3) 0%, rgba(6, 6, 8, 0.1) 50%, rgba(6, 6, 8, 0.55) 100%);
  z-index: 2;
}

.fullscreen-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  height: 100%;
  padding: 130px 24px 60px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.fullscreen-content-wrapper.justify-center {
  justify-content: center;
}

/* Hero Info Overlay */
.hero-top-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.drop-status-badge {
  display: flex;
  gap: 15px;
  border: 1px solid var(--tech-grid-color);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  background-color: rgba(12, 12, 14, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-status-label {
  font-family: var(--font-technical);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.badge-edition-label {
  font-family: var(--font-technical);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  border-left: 1px dashed var(--tech-grid-color);
  padding-left: 15px;
}

.drop-title {
  font-size: clamp(22px, 4.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #ffffff;
}

.drop-claim {
  font-size: clamp(12px, 2.2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ──────────────────────────────────────────────────────────
   3. BLOQUE EDITORIAL DE RESPIRACIÓN (ALTURA NATURAL)
   ────────────────────────────────────────────────────────── */
.section-editorial-breath {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: var(--bg-primary);
  padding: 90px 24px;
  display: flex;
  justify-content: center;
}

.section-editorial-breath .section-container {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.editorial-title {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.editorial-body {
  width: 100%;
  max-width: 650px;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: left;
  margin-bottom: 45px;
}

.editorial-bullets {
  list-style: none;
  margin: 30px 0;
  padding-left: 30px;
}

.editorial-bullets li {
  position: relative;
  margin-bottom: 14px;
  font-family: var(--font-primary);
}

.editorial-bullets li::before {
  content: "//";
  position: absolute;
  left: -30px;
  color: var(--accent);
  font-family: var(--font-technical);
  font-weight: 600;
}

.editorial-closure {
  font-family: var(--font-technical);
  font-size: clamp(11px, 1.6vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-top: 40px;
  line-height: 1.4;
}

/* Countdown Block inside Editorial */
.drop-hud-box {
  width: 100%;
  max-width: 550px;
  border: 1px solid var(--tech-grid-color);
  background-color: rgba(12, 12, 14, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 24px;
  margin: 0 auto 35px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hud-inner-border {
  border: 1px dashed var(--tech-grid-color);
  padding: 20px;
  border-radius: 2px;
}

.hud-countdown-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-technical);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hud-countdown-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.countdown-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.segment-num {
  font-family: var(--font-technical);
  font-size: clamp(32px, 4.8vw, 44px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}

.segment-num.digit-pulse {
  animation: digitUpdate 0.25s ease-out;
}

@keyframes digitUpdate {
  0% { opacity: 0.3; transform: scale(0.92) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .segment-num.digit-pulse {
    animation: none !important;
  }
}

.segment-label {
  font-family: var(--font-technical);
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.hud-countdown-note {
  margin-top: 18px;
  font-family: var(--font-technical);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  opacity: 0.45;
  text-align: center;
  text-transform: uppercase;
}

.countdown-divider {
  font-family: var(--font-technical);
  font-size: 28px;
  color: var(--tech-grid-color);
  line-height: 1;
  padding-bottom: 12px;
}

.drop-cta-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.drop-cta-btn {
  font-family: var(--font-primary);
  font-size: clamp(10px, 1.6vw, 12px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid var(--text-primary);
  padding: 16px 48px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.drop-cta-btn:hover {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}

/* ──────────────────────────────────────────────────────────
   4. TECHNICAL SPECIFICATION TABLE
   ────────────────────────────────────────────────────────── */
.tech-spec-box {
  width: 100%;
  max-width: 480px;
  margin: 10px auto 40px auto;
  border: 1px dashed var(--tech-grid-color);
  padding: 24px;
  border-radius: 4px;
  background-color: rgba(12, 12, 14, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--tech-grid-color);
}

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

.spec-label {
  font-family: var(--font-technical);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.spec-value {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.footer-navigation {
  margin-top: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-back-link {
  font-family: var(--font-technical);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid var(--tech-grid-color);
  padding: 12px 24px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.footer-back-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ──────────────────────────────────────────────────────────
   5. EVENTO OVERLAYS (CINEMA CREDITS SYMBOLOLOGY)
   ────────────────────────────────────────────────────────── */
.cinema-credits-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 500px;
}

.credit-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.credit-number {
  font-family: var(--font-technical);
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 4px;
}

.credit-label {
  font-family: var(--font-technical);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.credit-text {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.credit-text.credit-highlight {
  color: var(--accent);
  text-shadow: 0 0 15px rgba(197, 160, 40, 0.3);
}

body.dynamic-mode .credit-text.credit-highlight {
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.credit-divider {
  width: 40px;
  height: 1px;
  border-top: 1px dashed var(--tech-grid-color);
}

/* ─── CONCEPTUAL MODAL OVERLAY ─────────────────────────── */
.hud-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(6, 6, 8, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.hud-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hud-modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--tech-grid-color);
  background-color: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 45px 35px 35px 35px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.hud-modal-overlay.active .hud-modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  outline: none;
  transition: color 0.3s ease;
}

.modal-close-btn:hover {
  color: var(--accent);
}

.modal-tech-corners .tech-corner {
  opacity: 0.25;
}

.tech-corner {
  position: absolute;
  font-family: var(--font-technical);
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.tech-corner--tl { top: 15px; left: 20px; }
.tech-corner--tr { top: 15px; right: 20px; }

.modal-content-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--tech-grid-color);
  padding-bottom: 15px;
  width: 100%;
}

.modal-tech-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 30px;
}

.modal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--tech-grid-color);
}

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

.modal-row .row-label {
  font-family: var(--font-technical);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.modal-row .row-value {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.modal-row .row-value.status-glow {
  color: var(--accent);
}

.modal-row .row-value.status-glow {
  text-shadow: 0 0 6px var(--accent);
}

.modal-note-box {
  border-top: 1px solid var(--tech-grid-color);
  padding-top: 20px;
  width: 100%;
}

.note-discreet {
  font-family: var(--font-technical);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  text-transform: uppercase;
  opacity: 0.6;
}

/* ─── REVEAL ANIMATIONS ───────────────────────────────── */
body.js-ready .reveal-body {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-ready .reveal-title {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-ready .reveal-cta {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-ready .reveal-body.in-view,
body.js-ready .reveal-title.in-view,
body.js-ready .reveal-cta.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE DESIGN ─────────────────────────────────── */
@media (max-width: 991px) {
  .header {
    padding: 0 24px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 60px;
  }
  .fullscreen-content-wrapper {
    padding: 100px 16px 40px 16px;
  }
  .section-editorial-breath {
    padding: 60px 16px;
  }
  .drop-status-badge {
    margin-bottom: 12px;
    padding: 5px 12px;
  }
  .drop-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .drop-claim {
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  .drop-hud-box {
    padding: 16px;
    margin: 0 auto 25px auto;
  }
  .hud-inner-border {
    padding: 12px;
  }
  .hud-countdown-meta {
    margin-bottom: 12px;
  }
  .hud-countdown-grid {
    gap: 8px;
  }
  .countdown-segment {
    min-width: 50px;
  }
  .segment-num {
    font-size: 28px;
  }
  .countdown-divider {
    font-size: 20px;
  }
  .cinema-credits-box {
    gap: 20px;
  }
  .credit-number {
    font-size: 40px;
  }
  .credit-text {
    font-size: 20px;
    letter-spacing: 0.15em;
  }
  .credit-divider {
    width: 30px;
  }
  .tech-spec-box {
    padding: 16px;
    margin-bottom: 30px;
  }
  .footer-navigation {
    margin-top: 50px;
  }
}

/* ─── NOMAD CUSTOM WATCH CURSOR STYLES ──────────────────── */
@media (hover: hover) {
  body, 
  a, 
  button, 
  input, 
  select, 
  textarea,
  .drop-cta-btn,
  .header-back-btn,
  .footer-back-link,
  .modal-close-btn {
    cursor: none !important;
  }

  .nomad-custom-cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    pointer-events: none;
    z-index: 10000;
    transform: translate3d(-50%, -50%, 0);
    color: var(--accent); /* Hereda automáticamente el acento del tema */
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.3s ease, 
                opacity 0.3s ease,
                color 0.4s ease;
    opacity: 0.95;
    will-change: transform, width, height;
  }

  /* Hover state on interactive elements */
  .nomad-custom-cursor.is-hover {
    width: 72px;
    height: 72px;
    opacity: 1;
    filter: drop-shadow(0 0 15px var(--accent)) drop-shadow(0 4px 10px rgba(0,0,0,0.6));
  }
}

@media (hover: none) {
  .nomad-custom-cursor {
    display: none !important;
  }
  body, a, button {
    cursor: auto !important;
  }
}
