/* ============================================================
   Orbit360 — Espejo mágico
   Optimizado: monitor vertical ~43", táctil IR, cristal espejo
   ============================================================ */

/* Abrir index.html con file://: no mostrar la UI del espejo (solo aviso) */
html[data-orbit-protocol="file"] body > *:not(#local-file-warning) {
  display: none !important;
}

.local-file-warning {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
  text-align: center;
  font-family: system-ui, "Segoe UI", sans-serif;
  background: #0a0a12;
  color: #f5f0e8;
  line-height: 1.55;
}

html[data-orbit-protocol="file"] .local-file-warning,
.local-file-warning.is-open {
  display: flex !important;
}

.file-warning-title {
  font-size: 1.35rem;
}

.file-warning-body {
  max-width: 36rem;
  margin: 0;
  opacity: 0.92;
}

.file-warning-steps {
  text-align: left;
  max-width: 34rem;
  margin: 0.5rem 0;
}

.file-warning-code {
  background: #222;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.95em;
}

:root {
  --bg-deep: #0a0a0f;
  --bg-mid: #12121c;
  --champagne: #e8d5b7;
  --gold: #c9a962;
  --gold-soft: rgba(201, 169, 98, 0.35);
  --ivory: #f7f3eb;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-glow: 0 0 60px rgba(201, 169, 98, 0.25), 0 0 120px rgba(201, 169, 98, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Montserrat", system-ui, sans-serif;
  --safe-top: max(env(safe-area-inset-top), 1.2rem);
  --safe-bottom: max(env(safe-area-inset-bottom), 1.2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% 20%, #1a1a28 0%, var(--bg-deep) 55%);
  color: var(--ivory);
  font-family: var(--font-ui);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.hidden {
  display: none !important;
}

/* Ambiente luminoso tipo espejo */
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(201, 169, 98, 0.12) 0%, transparent 45%);
  z-index: 0;
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Badge conexión */
.conn-badge {
  position: fixed;
  top: var(--safe-top);
  right: 1rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  font-size: clamp(0.65rem, 1.8vmin, 0.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.conn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #666;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.conn-badge.is-online .conn-dot {
  background: #3ecf8e;
  box-shadow: 0 0 12px rgba(62, 207, 142, 0.8);
}

.conn-badge.is-offline .conn-dot {
  background: #e85d5d;
}

/* Salida en pantalla completa: 7 toques seguidos (máx. 2 s entre toques) */
.exit-app-btn {
  position: fixed;
  z-index: 3800;
  left: max(env(safe-area-inset-left), 6px);
  bottom: max(env(safe-area-inset-bottom), 6px);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.4);
  color: rgba(247, 243, 235, 0.4);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-tap-highlight-color: transparent;
}

.exit-app-btn:active {
  color: rgba(247, 243, 235, 0.95);
  background: rgba(0, 0, 0, 0.65);
}

/* Pantallas base */
.screen {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--safe-top) 4vmin var(--safe-bottom);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s step-end;
}

.screen.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.55s ease, visibility 0s;
}

/* --- Splash --- */
.screen-splash .splash-inner {
  text-align: center;
  max-width: 92vmin;
}

.logo-wrap {
  margin-bottom: 4vmin;
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vmin, 5rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--champagne);
  text-shadow: var(--shadow-glow);
}

.logo-dot {
  font-weight: 400;
  font-size: 0.55em;
  color: var(--gold);
}

.logo-img {
  max-width: 40vmin;
  max-height: 18vmin;
  object-fit: contain;
  margin-bottom: 2vmin;
  filter: drop-shadow(0 0 20px var(--gold-soft));
}

.event-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.2vmin, 2.8rem);
  margin: 0 0 0.5rem;
  color: var(--ivory);
  opacity: 0.95;
}

.event-title-editable {
  outline: none;
  cursor: text;
  min-height: 1.35em;
  max-width: 95vw;
  margin-left: auto;
  margin-right: auto;
}

.event-title-editable:focus-visible {
  box-shadow: 0 1px 0 0 rgba(239, 230, 214, 0.45);
}

.event-title-editable:empty::before {
  content: attr(data-placeholder);
  color: var(--ivory);
  opacity: 0.45;
  pointer-events: none;
}

.event-date {
  font-size: clamp(0.95rem, 2.6vmin, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 5vmin;
}

.splash-choice {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vmin, 2rem);
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto 2vmin;
}

.cta-choice {
  flex: 1 1 min(42vw, 280px);
  min-height: 88px;
  min-width: min(42vw, 240px);
  border-radius: 18px;
  letter-spacing: 0.14em;
  font-size: clamp(1rem, 3.2vmin, 1.35rem);
}

.splash-marco-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 40rem;
  margin: 0.5rem auto 0;
}

.btn-marco-open {
  min-height: 56px;
  min-width: min(72vw, 340px);
  letter-spacing: 0.14em;
  font-size: clamp(0.88rem, 2.5vmin, 1.05rem);
}

.marco-selection-hint {
  margin: 0;
  font-size: clamp(0.72rem, 1.9vmin, 0.9rem);
  opacity: 0.72;
  letter-spacing: 0.05em;
  text-align: center;
  max-width: 90%;
}

.camera-hidden {
  position: fixed;
  width: 4px;
  height: 4px;
  opacity: 0;
  pointer-events: none;
  left: 0;
  top: 0;
  overflow: hidden;
}

.cta-tap {
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4vmin 6vmin;
  color: var(--ivory);
  font-family: var(--font-ui);
  font-size: clamp(1.1rem, 3.8vmin, 2rem);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.cta-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.45), inset 0 0 30px rgba(201, 169, 98, 0.15);
  animation: pulse-ring 2.4s ease-out infinite;
}

.cta-label {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.06);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

.hint-sub {
  margin-top: 4vmin;
  font-size: clamp(0.75rem, 2vmin, 1rem);
  opacity: 0.45;
  font-weight: 300;
}

/* --- Panel elegir marco --- */
.marco-panel {
  position: fixed;
  inset: 0;
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vmin;
}

.marco-panel.hidden {
  display: none !important;
}

.marco-panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 10, 0.82);
  backdrop-filter: blur(6px);
}

.marco-panel-card {
  position: relative;
  z-index: 1;
  width: min(96vw, 520px);
  max-height: min(88vh, 720px);
  overflow: auto;
  padding: clamp(1.25rem, 4vmin, 2rem);
  border-radius: 22px;
  background: var(--bg-mid);
  border: 1px solid var(--glass-border);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.55);
}

.marco-panel-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ivory);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marco-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vmin, 2.1rem);
  margin: 0 2rem 0.5rem 0;
  color: var(--champagne);
}

.marco-panel-sub {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.marco-cat-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.marco-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.marco-btn-flex {
  flex: 1 1 min(140px, 46%);
  min-height: 52px;
}

.marco-thumbs-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.marco-thumbs-header-row .marco-back {
  margin-bottom: 0;
  flex: 1 1 auto;
}

.marco-thumbs-header-row #marco-home-thumbs {
  min-height: 48px;
  min-width: min(36vw, 160px);
}

.btn-smoke {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.08);
}

.marco-back {
  margin-bottom: 1rem;
  min-height: 48px;
  font-size: 0.85rem;
}

.marco-thumbs-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vmin, 1.65rem);
  margin: 0 0 1rem;
  color: var(--ivory);
}

.marco-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 2vmin, 1rem);
}

.marco-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}

.marco-thumb:not(.is-empty):hover,
.marco-thumb:not(.is-empty):focus-visible {
  border-color: var(--gold);
  transform: scale(1.02);
}

.marco-thumb.is-empty {
  cursor: default;
  opacity: 0.45;
  border-style: dashed;
}

.marco-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.marco-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: clamp(0.65rem, 1.8vmin, 0.8rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.55;
}

.marco-thumbs-empty {
  margin-top: 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.65;
  text-align: center;
}

/* --- Cuenta atrás --- */
.countdown-inner {
  text-align: center;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 28vmin, 18rem);
  font-weight: 700;
  line-height: 1;
  color: var(--champagne);
  text-shadow: var(--shadow-glow);
  animation: pop-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.countdown-number.is-smile {
  font-size: clamp(3rem, 14vmin, 9rem);
  letter-spacing: 0.08em;
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.countdown-sub {
  margin-top: 4vmin;
  font-size: clamp(1rem, 3vmin, 1.5rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.6;
}

.screen-photo.is-portrait-flow .photo-frame {
  max-height: 85vh;
}

.screen-photo.is-portrait-flow .photo-display {
  width: auto;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 85vh;
  object-fit: contain;
}

.photo-frame {
  flex: 1;
  width: 100%;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vmin;
}

.photo-display {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--glass-border);
  animation: fade-up 0.6s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2.5vmin, 1.5rem);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2vmin 3vmin;
}

.toolbar-photo-actions .btn-glow {
  min-width: min(38vw, 220px);
  min-height: 58px;
  font-size: clamp(0.8rem, 2.2vmin, 1rem);
  letter-spacing: 0.08em;
}

.toolbar-photo {
  position: fixed;
  bottom: var(--safe-bottom);
  left: 0;
  right: 0;
  z-index: 20;
}

.btn-glow {
  min-height: 64px;
  min-width: min(42vw, 280px);
  padding: 1rem 1.75rem;
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 2.8vmin, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s;
}

.btn-glow:active {
  transform: scale(0.97);
}

.btn-glow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.btn-accent {
  border-color: rgba(201, 169, 98, 0.55);
  box-shadow: 0 0 28px var(--gold-soft), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.btn-small {
  min-height: 52px;
  min-width: 200px;
  font-size: 0.85rem;
}

/* --- Vídeo --- */
.video-display {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.screen-video {
  padding: 0;
  background: #000;
}

/* Vídeo / grabación en vertical (9:16), alineado con las fotos */
.screen-video.is-portrait-flow {
  justify-content: center;
}

.screen-video.is-portrait-flow .video-display,
.screen-video.is-portrait-flow .video-record-canvas {
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}

.video-record-canvas {
  pointer-events: none;
}

.video-record-ui {
  position: fixed;
  bottom: var(--safe-bottom);
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2vmin 3vmin 3vmin;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
}

.video-record-ui .btn-glow {
  pointer-events: auto;
}

.video-record-ui.hidden {
  display: none !important;
}

.rec-indicator {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 2.8vmin, 1.2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rec-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e85d5d;
  box-shadow: 0 0 14px rgba(232, 93, 93, 0.9);
  animation: rec-pulse 1.1s ease-in-out infinite;
}

@keyframes rec-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.92);
  }
}

.record-time {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vmin, 4.5rem);
  font-weight: 600;
  color: var(--champagne);
  text-shadow: var(--shadow-glow);
  letter-spacing: 0.06em;
}

.record-hint {
  margin: 0;
  font-size: clamp(0.75rem, 2vmin, 0.95rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.toolbar-video-result {
  position: fixed;
  bottom: var(--safe-bottom);
  left: 0;
  right: 0;
  z-index: 25;
  padding-bottom: 2vmin;
}

.toolbar-video-result.hidden {
  display: none !important;
}

.toolbar-video-result .btn-glow {
  min-width: min(40vw, 260px);
  min-height: 60px;
}

/* --- QR --- */
.qr-card {
  text-align: center;
  padding: 4vmin;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  max-width: min(92vw, 520px);
  animation: fade-up 0.55s ease both;
}

.qr-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vmin, 2.2rem);
  margin: 0 0 2vmin;
  max-width: min(94vw, 900px);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

.qr-card-duo-wide {
  max-width: min(96vw, 920px);
}

.qr-duo-touch {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.85rem, 3vmin, 2rem);
  margin-bottom: 2vmin;
}

.qr-duo-touch:not(.has-cloud) .qr-image {
  width: min(62vmin, 420px);
}

.qr-duo-touch.has-cloud .qr-image {
  width: min(42vmin, 320px);
}

.qr-col-touch {
  flex: 0 1 auto;
  text-align: center;
  max-width: min(48vw, 420px);
}

.qr-col-cloud-touch.hidden {
  display: none !important;
}

.qr-col-label-touch {
  margin: 0 0 0.35rem;
  font-size: clamp(0.65rem, 1.85vmin, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
}

.qr-frame {
  padding: 3vmin;
  background: #fff;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 0 40px rgba(201, 169, 98, 0.2);
}

.qr-image {
  display: block;
  width: min(62vmin, 420px);
  height: auto;
  image-rendering: pixelated;
}

.qr-url {
  font-size: clamp(0.75rem, 2vmin, 0.95rem);
  word-break: break-all;
  opacity: 0.55;
  margin: 3vmin 0;
}

/* --- Overlay impresión --- */
.print-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 5, 10, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vmin;
  backdrop-filter: blur(6px);
}

.print-dialog {
  width: min(96vw, 720px);
  padding: 4vmin;
  border-radius: 20px;
  background: var(--bg-mid);
  border: 1px solid var(--glass-border);
  text-align: center;
}

.print-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vmin, 2rem);
  margin-top: 0;
}

.print-preview-img {
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 12px;
  margin: 2vmin 0 3vmin;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.print-hint {
  font-size: 0.8rem;
  opacity: 0.5;
  line-height: 1.5;
  margin-top: 2rem;
}

/* Solo impresión */
.print-only {
  position: fixed;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media print {
  body * {
    visibility: hidden !important;
  }
  .print-only,
  .print-only * {
    visibility: visible !important;
  }
  .print-only {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }
  #print-only-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}

/* Con pantalla completa del sistema o PWA: menos distracciones */
@media (display-mode: fullscreen), (display-mode: standalone) {
  .conn-badge {
    display: none !important;
  }
}

/* Vertical: reforzar proporciones */
@media (orientation: portrait) {
  .photo-frame {
    max-height: 72vh;
  }
}

@media (orientation: landscape) {
  .photo-frame {
    max-height: 70vh;
  }
}

/* Evento creado desde el PC → aplicado en la app móvil (Socket.IO) */
.splash-pc-event {
  margin-top: 1.25rem;
  width: 100%;
  max-width: 28rem;
}
.splash-pc-event-label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(247, 243, 235, 0.75);
  margin: 0 0 0.5rem;
  text-align: center;
}
.splash-pc-event-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}
.input-pc-event-name {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(10, 10, 15, 0.55);
  color: var(--ivory);
  font-family: var(--font-ui);
  font-size: 0.95rem;
}
.btn-send-event-android {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}
