/* ===== ADMIN ===== */
.admin-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

.admin-wrap h1 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.admin-section {
  margin-bottom: 32px;
}

.admin-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-count {
  font-family: monospace;
  font-size: 13px;
  background: #111;
  color: #fff;
  padding: 2px 8px;
}

.admin-empty {
  font-size: 14px;
  color: #777;
  font-style: italic;
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-item {
  border: 2px solid #111;
  border-left-width: 6px;
  padding: 10px 12px;
  background: #fff;
}

.admin-item-body {
  font-size: 15px;
  word-break: break-word;
}

.admin-item-body a {
  color: inherit;
}

.admin-item-meta {
  font-family: monospace;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Comic Neue', 'Comic Sans MS', cursive;
  background: #f4f4f4;
  color: #111;
}

/* ===== KEYFRAMES ===== */
@keyframes marquee {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}

@keyframes shake {
  0%, 100% { transform: rotate(-2deg); }
  50%       { transform: rotate(2deg); }
}

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

@keyframes rainbowtext {
  0%   { color: #e40303; }
  17%  { color: #ff8c00; }
  33%  { color: #cc9a06; }
  50%  { color: #008026; }
  67%  { color: #004dff; }
  83%  { color: #750787; }
  100% { color: #e40303; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner, .shake, .blink, .rainbow { animation: none !important; }
}

/* ===== CONTENEDOR ===== */
.page-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-left: 4px dashed #111;
  border-right: 4px dashed #111;
  min-height: 100vh;
}

/* ===== BARRA PRIDE ===== */
.pride-bar {
  display: flex;
  height: 8px;
}
.pride-bar div { flex: 1; }

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: #111;
  color: #0f0;
  font-family: monospace;
  font-size: 14px;
  padding: 6px 0;
  white-space: nowrap;
  overflow: hidden;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 12s linear infinite;
}

/* ===== HERO ===== */
.hero {
  padding: 32px 20px 0px 20px;
  text-align: center;
  border-bottom: 4px solid #111;
  background: repeating-linear-gradient(45deg, #fff, #fff 18px, #f4f4f4 18px, #f4f4f4 36px);
}

.hero-kicker {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  margin: 12px 0 4px;
  display: inline-block;
  animation: shake 2.5s ease-in-out infinite;
}

.hero-title .rainbow {
  animation: rainbowtext 3s linear infinite;
}

.hero-subtitle {
  font-size: 20px;
  font-style: italic;
  margin: 4px 0 16px;
}

.hero-subtitle strong { font-weight: 700; }

.hero-img-wrap {
  position: relative;
  margin: 20px auto 0;
}

.hero-img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
}

.hero-caption {
  font-family: monospace;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

.hero-data {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.hero-data-item {
  border: 3px solid #111;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
}

.hero-data-item a {
  color: inherit;
  text-decoration: underline;
}

.hero-scroll {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 4px #000, 0 0 8px #000, 1px 1px 0 #000, -1px -1px 0 #000;
  animation: blink 1s step-end infinite;
}

/* ===== SECCIONES ===== */
.section {
  padding: 24px 20px;
  border-bottom: 4px solid #111;
}

.section--alt { background: #f4f4f4; }

.section h2 {
  font-size: 26px;
  margin: 0 0 4px;
}

.section-sub {
  font-size: 15px;
  margin-bottom: 14px;
}

.section-gif {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  border: 3px solid #111;
  margin: 0 auto 14px;
}

/* ===== PLAYLIST ===== */
.song-form {
  display: flex;
  gap: 8px;
}

.song-input {
  flex: 1;
  border: 3px solid #111;
  padding: 10px;
  font-family: monospace;
  font-size: 14px;
  border-radius: 0;
  outline: none;
}

.btn-primary {
  border: 3px solid #111;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 14px;
  cursor: pointer;
  font-family: inherit;
  border-radius: 0;
  min-height: 44px;
}

.songs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.song-item {
  border: 2px dashed #111;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.song-play-link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.song-play { font-size: 18px; }

.song-url {
  font-family: monospace;
  font-size: 13px;
  word-break: break-all;
  flex: 1;
}

.btn-delete {
  border: 2px solid #111;
  background: #fff;
  font-weight: 700;
  padding: 2px 8px;
  cursor: pointer;
  font-family: inherit;
  border-radius: 0;
  min-height: 28px;
}

/* ===== TARJETAS PREGUNTAS ===== */
.card {
  border: 3px solid #111;
  background: #fff;
  padding: 14px;
  margin-bottom: 18px;
}
.card:last-child { margin-bottom: 0; }

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.word-form {
  display: flex;
  gap: 8px;
}

.word-input {
  flex: 1;
  border: 3px solid #111;
  padding: 10px;
  font-size: 15px;
  border-radius: 0;
  outline: none;
  font-family: inherit;
}

.words-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.word-chip {
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  border: 2px solid;
}

/* ===== ENCUESTA ===== */
.vote-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vote-btn {
  border: 2px solid #111;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #fff;
  color: #111;
  font-family: inherit;
  border-radius: 0;
  width: 100%;
  text-align: left;
}

.vote-btn--active {
  background: #111;
  color: #fff;
}

.vote-btn-text { flex: 1; text-align: left; }

.vote-count {
  font-family: monospace;
  font-size: 13px;
}

/* ===== MENSAJES ===== */
.msg-notice {
  border: 2px dashed #111;
  padding: 8px;
  font-family: monospace;
  font-size: 12px;
  color: #555;
  margin-bottom: 14px;
}

.msg-textarea {
  width: 100%;
  border: 3px solid #111;
  padding: 10px;
  font-size: 15px;
  resize: vertical;
  font-family: inherit;
  border-radius: 0;
  outline: none;
  display: block;
  margin-bottom: 10px;
}

.btn-full {
  width: 100%;
  border: 3px solid #111;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px;
  min-height: 48px;
  cursor: pointer;
  font-family: inherit;
  border-radius: 0;
}

.msg-confirm {
  margin-top: 10px;
  padding: 10px;
  border: 2px dashed #111;
  background: #f4f4f4;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.messages-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.msg-item {
  border: 3px solid #111;
  background: #fff;
  padding: 12px;
  border-left-width: 8px;
}

.msg-body { font-size: 15px; }

.msg-firma {
  font-family: monospace;
  font-size: 12px;
  color: #555;
  margin-top: 4px;
}

/* ===== RSVP ===== */
.rsvp {
  padding: 24px 20px 40px;
  text-align: center;
}

.rsvp h2 { font-size: 26px; margin-bottom: 4px; }

.rsvp-sub { font-size: 15px; margin-bottom: 16px; }
.rsvp-sub strong { font-weight: 700; }

.rsvp-btn {
  display: block;
  border: 3px solid #111;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 16px;
  min-height: 48px;
  font-family: inherit;
}

.rsvp-note {
  font-family: monospace;
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer-bar {
  background: #111;
  color: #0f0;
  font-family: monospace;
  font-size: 12px;
  text-align: center;
  padding: 12px;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
