@font-face {
  font-family: 'Dharma Gothic';
  src: url('assets/DharmaGothicE_Regular_R.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: 'Dharma Gothic', Arial, sans-serif;
  position: relative;
}
.video-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 1;
  overflow: hidden;
}
.video-bg video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7);
  pointer-events: none;
}
.video-bg .overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 2;
}
.content {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.logo {
  width: 80vw;
  max-width: 420px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.5));
}
.subtitle {
  color: #ff2a1a;
  font-family: 'Dharma Gothic', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.instruccion {
  color: #fff;
  font-family: 'Dharma Gothic', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}
.btn {
  background: linear-gradient(135deg, #3a2323 0%, #7a4c3a 100%);
  color: #f5e9e0;
  border: none;
  padding: 18px 0;
  border-radius: 22px;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 18px auto 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  font-weight: bold;
  width: 100%;
  max-width: 340px;
  letter-spacing: 0.04em;
  display: block;
  text-align: center;
  text-transform: uppercase;
}
.btn:hover {
  background: #d81b0e;
  transform: scale(1.05);
}
.header-comiccon {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  background: transparent;
  z-index: 100;
  pointer-events: none;
  margin-bottom: 0;
}
.header-comiccon img {
  max-width: 100px;
  width: 40vw;
  opacity: 0.6;
  display: block;
  margin: 6px auto 0 auto;
  pointer-events: auto;
} 