@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Press+Start+2P&display=swap');
:root {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color-scheme: dark;
  --bg-start: #1a1625;
  --bg-end: #252139;
  --panel: rgba(24, 20, 36, 0.92);
  --panel-2: rgba(17, 15, 27, 0.9);
  --panel-border: rgba(148, 163, 184, 0.25);
  --input-border: rgba(76, 110, 245, 0.4);
  --text: #e2e8f0;
  --muted: rgba(226, 232, 240, 0.75);
  --button-primary: #6d6bf7;
  --button-hover: #5a57f7;
  --button-shadow: rgba(109, 107, 247, 0.4);
}
.local-name {
  text-align: center;
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 24px 18px;
}
body.font-loading {
  overflow: hidden;
}
body.font-loading .app {
  visibility: hidden;
}
.app {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.loading-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(76, 110, 245, 0.08), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(14, 165, 233, 0.08), transparent 45%),
    linear-gradient(135deg, #110b1d, #1d1730 50%, #241f38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(24px + clamp(40px, 8vh, 120px));
  z-index: 2000;
  transition: opacity 0.25s ease;
  color: rgba(226, 232, 240, 0.65);
  text-align: center;
}
.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.loading-overlay__spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid rgba(76, 110, 245, 0.3);
  border-top-color: #4c6ef5;
  animation: loading-spin 1s linear infinite;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.35);
}
@keyframes loading-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
h1 {
  font-family: 'Press Start 2P', cursive;
  font-size: 2rem;
  margin-top: 10;
  text-align: center;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.hero-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.title-tooltip {
  position: relative;
  display: flex;
}
.mobile-break { display: none; }
@media (max-width: 480px) {
  .hero-title {
    position: relative;
    gap: 0;
  }
  .title-tooltip {
    position: absolute;
    right: 0;
    top: 0;
  }
  .mobile-break { display: block; }
}
section {
  background: var(--panel);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#landingView {
  border: 1px solid rgba(76, 110, 245, 0.25);
}
.hidden {
  display: none !important;
}
input,
select {
  width: 100%;
  border-radius: 14px;
  border: 2px solid var(--input-border);
  background: var(--panel-2);
  color: var(--text);
  padding: 16px;
  font-size: 1rem;
  text-align: center;
  outline: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-left: 52px;
  padding-right: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23cbd5f5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: calc(100% - 20px) center;
}
input::placeholder,
select::placeholder {
  color: rgba(226, 232, 240, 0.6);
}
input:focus,
select:focus {
  transform: translateY(-2px);
  border-color: #4c6ef5;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 0 3px rgba(76, 110, 245, 0.2);
  background: rgba(24, 22, 39, 0.95);
}
button {
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  background: var(--button-primary);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px var(--button-shadow);
  -webkit-tap-highlight-color: transparent;
}
button:hover:not(:disabled) {
  background: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(90, 87, 247, 0.5);
}
button:active:not(:disabled) {
  transform: translateY(0);
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(0.98);
}
#createForm,
#joinForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#createForm button,
#joinForm button {
  width: 100%;
}
#settingsForm label {
  display: inline-block;
  margin-bottom: 6px;
}
#lobbyInfo {
  margin-bottom: 12px;
}
.starter-label {
  text-align: center;
  margin: -4px 0 16px;
}
body.game-hidden #gameView {
  opacity: 0;
  pointer-events: none;
}
button.selected {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25), 0 18px 50px rgba(76, 110, 245, 0.4);
}
.tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 18px;
  padding: 6px;
}
.tabs button {
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  padding: 12px;
}
.tabs button.active {
  background: rgba(76, 110, 245, 0.18);
  color: var(--text);
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pill {
  background: var(--panel-2);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(76, 110, 245, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.pill--vote {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pill--vote:hover {
  background: rgba(76, 110, 245, 0.12);
  border-color: rgba(76, 110, 245, 0.5);
}
.pill--vote.selected {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.85);
  color: #fecaca;
}
.ready-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #86efac;
}
.vote-summary-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #6ee7b7;
  margin-left: 8px;
}
.pill-ready {
  border-color: rgba(16, 185, 129, 0.8);
  background: rgba(45, 212, 191, 0.08);
}
#requestVoteBtn.ready {
  background: rgba(100, 116, 139, 0.25);
  color: rgba(226, 232, 240, 0.7);
  box-shadow: none;
}
.notice {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6);
  margin: 0;
}
.code-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.code-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  font-family: 'Press Start 2P', cursive;
  letter-spacing: 6px;
  font-size: 1.4rem;
}
.code-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.code-trigger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  font-family: 'Press Start 2P', cursive;
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.code-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
}
.tooltip-code {
  margin: 12px 0;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 12px;
  text-align: center;
}
.copy-button {
  margin-left: 0;
  width: auto;
  flex-shrink: 0;
  border-radius: 12px;
  padding: 10px 18px;
  background: rgba(76, 110, 245, 0.2);
  border: 1px solid rgba(76, 110, 245, 0.5);
  color: var(--text);
  box-shadow: none;
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.share-button {
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(14, 165, 233, 0.5);
  color: #bae6fd;
}
.share-button:hover:not(:disabled) {
  background: rgba(14, 165, 233, 0.3);
  border-color: rgba(14, 165, 233, 0.8);
}
.talk-screen,
.voting-screen {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.role-tooltip-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.role-tooltip-text {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  white-space: pre-line;
  text-align: center;
  font-weight: bold;
}
.word-reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.word-reveal-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 20px;
  box-shadow: none;
  padding: 7px 14px;
  cursor: pointer;
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.word-reveal-toggle:hover,
.word-reveal-toggle:hover:not(:disabled) {
  background: none;
  box-shadow: none;
  transform: none;
  border-color: rgba(148, 163, 184, 0.7);
  color: rgba(226, 232, 240, 0.9);
}
.word-reveal-toggle:active:not(:disabled) {
  transform: none;
}
.word-reveal-label {
  display: grid;
}
.word-reveal-label .label-closed,
.word-reveal-label .label-open {
  grid-area: 1 / 1;
}
.label-open {
  visibility: hidden;
}
.word-reveal.open .label-closed {
  visibility: hidden;
}
.word-reveal.open .label-open {
  visibility: visible;
}
.word-reveal-toggle .chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.word-reveal.open .word-reveal-toggle .chevron {
  transform: rotate(180deg);
}
.word-reveal-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease, padding-top 0.25s ease;
  padding-top: 0;
  text-align: center;
}
.word-reveal-body > span {
  min-height: 0;
  overflow: hidden;
}
.word-reveal.open .word-reveal-body {
  grid-template-rows: 1fr;
  padding-top: 8px;
}
.results-card {
  background: var(--panel-2);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(76, 110, 245, 0.2);
  margin-top: 12px;
}
.results-card h3 {
  margin: 0 0 6px;
  font-size: 0.85rem;
  color: var(--muted);
}
.results-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.winner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(252, 211, 77, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.winner-crown {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.6));
}
.winner-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(252, 211, 77, 0.7);
  margin: 0;
}
.winner-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(90deg, #f59e0b, #fcd34d, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reveal-screen {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reveal-outcome {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  padding: 8px 0;
}
.reveal-outcome.caught {
  color: #4ade80;
}
.reveal-outcome.escaped {
  color: #f87171;
}
.pill-self {
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(90deg, #f59e0b, #fcd34d, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}
.reveal-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 4px 0 0;
}
.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pill-title {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15, 23, 42, 0.92);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: #fff;
  border: 1px solid rgba(76, 110, 245, 0.25);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.vote-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #3b1fa8 0%, #4c6ef5 50%, #7c3aed 100%);
  animation: voteOverlayRise 0.7s ease-out forwards;
  will-change: transform, opacity;
}
.vote-overlay--exit {
  animation: voteOverlayFade 0.4s ease-in forwards;
}
@keyframes voteOverlayRise {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes voteOverlayFade {
  from { opacity: 1; }
  to   { opacity: 0; }
}
.vote-overlay__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  text-align: center;
}
.vote-overlay__icon {
  font-size: 3rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
.vote-overlay__title {
  font-family: 'Press Start 2P', cursive;
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.rules-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 8, 20, 0.82);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.rules-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.rules-modal {
  background: var(--panel);
  border-radius: 28px;
  border: 1px solid var(--panel-border);
  padding: 28px 24px;
  max-width: 400px;
  width: calc(100% - 40px);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
  transform: translateY(18px);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rules-modal-backdrop.open .rules-modal {
  transform: translateY(0);
}
.rules-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rules-modal__title {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.8rem;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
.rules-modal__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
  transition: background 0.2s ease;
}
.rules-modal__close:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.14);
  transform: none;
  box-shadow: none;
}
.rules-step {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px;
  border-radius: 16px;
  background: var(--panel-2);
  border: 1px solid rgba(76, 110, 245, 0.18);
}
.rules-step__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #818cf8;
  margin: 0;
}
.rules-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 2px 0 0;
}
.rules-step__desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 4px 0 0;
  line-height: 1.55;
}
.rules-modal__survey-link {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: underline;
  padding-top: 4px;
}
.share-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(10, 8, 20, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.share-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.share-modal {
  width: min(420px, calc(100% - 48px));
  background: var(--panel);
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 32px 28px 26px;
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.65);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateY(18px);
  transition: transform 0.25s ease;
}
.share-modal-backdrop.open .share-modal {
  transform: translateY(0);
}
.share-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
  transition: background 0.2s ease;
}
.share-modal__close:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}
.share-modal__title {
  font-family: 'Press Start 2P', cursive;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
  color: var(--text);
}
.share-modal__subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}
.share-modal__qr {
  width: 240px;
  height: 240px;
  border-radius: 20px;
  background: #fff;
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, 0.35);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-modal__qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.share-link-box {
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.share-link-box__text {
  flex: 1;
  font-size: 0.8rem;
  color: var(--muted);
  word-break: break-all;
}
.share-link-box__button {
  border: 1px solid rgba(109, 107, 247, 0.3);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(109, 107, 247, 0.1);
  color: var(--text);
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
  transform: none;
}
.share-link-box__button:hover:not(:disabled) {
  background: rgba(109, 107, 247, 0.2);
  color: #fff;
  border-color: rgba(109, 107, 247, 0.5);
  transform: none;
}
@media (max-width: 480px) {
  .share-modal__qr {
    width: 200px;
    height: 200px;
  }
  .share-link-box {
    flex-direction: column;
    align-items: stretch;
  }
  .share-link-box__button {
    width: 100%;
    text-align: center;
  }
}

/* Vibe Gather promo button with golden glow */
@keyframes golden-glow-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px var(--button-shadow),
                0 0 0 2px rgba(255, 215, 0, 0.5),
                0 0 18px rgba(255, 215, 0, 0.25);
  }
  50% {
    box-shadow: 0 4px 20px var(--button-shadow),
                0 0 0 2px rgba(255, 215, 0, 1),
                0 0 32px rgba(255, 215, 0, 0.55);
  }
}

.vibe-gather-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: var(--button-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  animation: golden-glow-pulse 2.5s ease-in-out infinite;
}

.vibe-gather-btn:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
}
