/* (c) 2026 gameover.com, LLC */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #f8f8f8;
  color: #4a4a5a;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  transition: background 1.2s ease, color 0.6s ease;
}

nav {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
}
nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 1.5rem; right: 1.5rem;
  height: 1px;
  background: #d0d0d8;
}
nav a {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: #6b6b7b;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 0 1rem;
  background: #f8f8f8;
  transition: color .2s, background .2s;
}
nav a:hover, nav a.active {
  color: #3366ff;
}
nav a::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border: 1.5px solid #d0d0d8;
  border-radius: 50%;
  background: #f8f8f8;
  margin: 0 auto .4rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
nav a:hover::before, nav a.active::before {
  border-color: #3366ff;
  background: #3366ff;
  box-shadow: 0 0 12px 4px rgba(51, 102, 255, 0.4);
}
nav .spacer { flex: 1; }

.divider {
  max-width: 1200px;
  margin: 1.2rem auto 0;
  border: none;
  border-top: 1px solid #e0e0e6;
  transition: border-color 0.6s;
}

/* Page content */
.page {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page h2 {
  font-size: .85rem;
  font-weight: 500;
  color: #9090a0;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.page .tagline {
  font-size: 1.5rem;
  color: #9090a0;
  margin-top: .5rem;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: .03em;
  line-height: 1.8;
  text-align: center;
}

/* ======================================
   PLAY PAGE GRID
   ====================================== */
.play-grid-section {
  max-width: 1100px;
  width: 100%;
  align-self: center;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}
.play-grid-section .grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.play-grid-section .card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  transition: background .25s, border-color .25s, box-shadow .2s, transform .2s;
}
.play-grid-section .card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.26);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}
.play-grid-section .card img,
.play-grid-section .card-placeholder {
  aspect-ratio: 4/3;
  border-radius: 10px 10px 0 0;
  display: block;
  width: 100%;
}
.play-grid-section .card-placeholder {
  background: rgba(255,255,255,0.06);
}
.play-grid-section .card .label {
  font-size: .65rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: .09em;
  line-height: 1.5;
  text-align: center;
  padding: .7rem .8rem .8rem;
  white-space: normal;
  transition: color .25s;
}
.play-grid-section .card:hover .label {
  color: rgba(255,255,255,0.88);
}
/* Early Access (hive) cards */
.play-grid-section .card--early-access {
  position: relative;
  cursor: default;
  pointer-events: auto;
  opacity: 0.55;
  transition: opacity .25s;
}
.play-grid-section .card--early-access:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.10);
  box-shadow: none;
  transform: none;
  opacity: 1;
}
.card-early-access-overlay {
  display: none;
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(3px);
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  pointer-events: none;
}
.play-grid-section .card--early-access:hover .card-early-access-overlay,
.games-section .card--early-access:hover .card-early-access-overlay {
  display: flex;
}
.card-early-access-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.card-early-access-sub {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
/* Light/dark overrides injected by JS applyTheme */
@media (max-width: 900px) {
  .play-grid-section .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .play-grid-section .grid { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================
   PLAY PAGE FOOTER
   ====================================== */
.play-footer {
  width: 100%;
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  color: #b0b0be;
  transition: color 0.6s ease, opacity 0.6s ease;
  opacity: 0.7;
}

/* ======================================
   PARIS GALLERY — FromSoftware-style
   ====================================== */
.paris-page {
  padding: 0;
}
.paris-intro {
  max-width: 1200px;
  margin: 2.5rem auto 2rem;
  padding: 0 2rem;
  text-align: center;
}
.paris-subhead {
  font-size: 1.05rem;
  color: #7a7a8a;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: .03em;
  line-height: 1.8;
}

.paris-gallery {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  gap: 0;
  height: 540px;
  overflow: hidden;
}

.paris-card {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    flex 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    filter 0.4s ease;
  border-right: 1px solid rgba(0,0,0,0.12);
}
.paris-card:last-child {
  border-right: none;
}

/* Dimmed siblings on hover */
.paris-card.paris-dimmed {
  opacity: 0.55;
  filter: brightness(0.7) saturate(0.6);
  flex: 0.45;
}

/* Focused (hovered) card expands slightly */
.paris-card.paris-focused {
  flex: 1.8;
}

/* Active (clicked) card expands much more */
.paris-card.paris-active {
  flex: 5.5;
}
.paris-card.paris-sibling {
  flex: 0.13;
  opacity: 0.35;
  filter: brightness(0.5) saturate(0.35);
}

.paris-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.paris-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.paris-card-img--showcase {
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.paris-card:hover .paris-card-img,
.paris-card.paris-focused .paris-card-img {
  transform: scale(1.04);
}
.paris-card.paris-active .paris-card-img {
  transform: scale(1.06);
}

.paris-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.12) 50%,
    rgba(0,0,0,0.7) 100%
  );
  transition: opacity 0.4s ease;
}
.paris-card:hover .paris-card-overlay,
.paris-card.paris-focused .paris-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.02) 0%,
    rgba(0,0,0,0.08) 40%,
    rgba(0,0,0,0.82) 100%
  );
}
.paris-card.paris-active .paris-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.04) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

.paris-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.2rem 1rem;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.paris-card.paris-focused .paris-card-title,
.paris-card.paris-active .paris-card-title {
  opacity: 1;
}
.paris-card-link {
  text-decoration: none;
  color: inherit;
}

/* ======================================
   PLAY PAGE
   ====================================== */
.play-page {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 4rem;
  transition: background 1.2s ease;
}

.play-gallery {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 0;
  height: 540px;
  overflow: hidden;
}

/* Reuse paris-card styles — blank placeholder for no-thumbnail games */
.paris-card-blank {
  width: 100%;
  height: 100%;
  background: #1a1a2e;
}

.play-header {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  max-width: 700px;
  width: 100%;
}

.play-time-badge {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .4rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.6rem;
  background: rgba(0,0,0,0.06);
  color: #9090a0;
  transition: color 0.6s, background 0.6s;
}

.program-name {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #9090a0;
  transition: color 0.6s ease;
  line-height: 1.2;
}

.program-message {
  font-size: .9rem;
  color: #6b6b7b;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: .5rem;
  line-height: 1.7;
  transition: color 0.6s ease;
}

.program-mood {
  font-size: .65rem;
  color: #b0b0be;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color 0.6s ease;
}

.games-grid {
  max-width: 700px;
  width: 100%;
  margin: 2rem auto 3rem;
  padding: 2.5rem 1.5rem;
  border: 1px dashed #d0d0d8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.6s;
}

.empty-quote {
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  color: #b0b0be;
  text-align: center;
  font-size: .85rem;
}

/* ======================================
   HOW IT WORKS
   ====================================== */
.how-it-works {
  max-width: 900px;
  margin: 4rem auto 3rem;
  padding: 0 2rem;
  text-align: center;
}
.how-it-works h2 {
  font-size: .75rem;
  font-weight: 500;
  color: #9090a0;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 200px;
  text-align: center;
}
.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 46px;
  font-size: 1rem;
  font-weight: 500;
  color: #9090a0;
  letter-spacing: .1em;
  border: 2px solid #d0d0d8;
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: border-color .3s, box-shadow .3s;
}
.step:hover .step-number {
  border-color: #3366ff;
  box-shadow: 0 0 12px 4px rgba(51,102,255,0.4);
}
.step h3 {
  font-size: .75rem;
  font-weight: 500;
  color: #9090a0;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.step h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.step h3 a:hover { color: #3366ff; }
.step p {
  font-size: .75rem;
  color: #b0b0be;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
}

/* ======================================
   GAMES SECTION
   ====================================== */
.games-section {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.games-section .card--early-access {
  position: relative;
  cursor: default;
  pointer-events: auto;
  opacity: 0.55;
  transition: opacity .25s;
}
.games-section .card--early-access:hover {
  opacity: 1;
}
.section-label {
  font-size: .75rem;
  font-weight: 500;
  color: #9090a0;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid #e0e0e6;
}

/* Search bar */
.games-search-bar {
  margin-bottom: 2rem;
}
.games-search-input {
  width: 100%;
  max-width: 400px;
  padding: .55rem 1rem;
  font-family: inherit;
  font-size: .72rem;
  letter-spacing: .05em;
  color: #3a3a4a;
  background: #fff;
  border: 1px solid #d0d0d8;
  border-radius: 20px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.games-search-input::placeholder { color: #b0b0be; }
.games-search-input:focus {
  border-color: #3366ff;
  box-shadow: 0 0 0 3px rgba(51,102,255,.1);
}
.search-empty {
  font-style: italic;
  font-family: Georgia, serif;
  color: #b0b0be;
  font-size: .85rem;
  margin-bottom: 2rem;
}

/* Collapsible category */
.category {
  margin-bottom: 2rem;
}
.category-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: none;
  border: none;
  border-bottom: 1px solid #e0e0e6;
  padding: .5rem 0 .5rem;
  cursor: pointer;
  text-align: left;
  margin-bottom: 1rem;
  transition: border-color .2s;
}
.category-toggle:hover { border-color: #3366ff; }
.category-toggle:hover .category-toggle-label { color: #3366ff; }
.category-toggle-label {
  font-size: .68rem;
  font-weight: 500;
  color: #9090a0;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .2s;
}
.category-count {
  font-size: .6rem;
  color: #b0b0be;
  letter-spacing: .08em;
  margin-left: .1rem;
}
.toggle-arrow {
  margin-left: auto;
  font-size: .65rem;
  color: #b0b0be;
  transition: transform .25s ease;
  line-height: 1;
}
.category-toggle[aria-expanded="false"] .toggle-arrow {
  transform: rotate(-90deg);
}

/* Collapsible grid wrapper */
.grid-wrapper {
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease;
  max-height: 9999px;
  opacity: 1;
}
.grid-wrapper.collapsed {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.card {
  background: #fff;
  border: 1px solid #e6e6ec;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover {
  border-color: #3366ff;
  box-shadow: 0 2px 12px rgba(51,102,255,.1);
  transform: translateY(-2px);
}
.card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #ededf0;
}
.card-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #ededf0;
}
.card .label {
  padding: .5rem .6rem;
  font-size: .65rem;
  text-align: center;
  color: #6b6b7b;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.3;
}
.empty {
  color: #b0b0be;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .85rem;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .paris-gallery {
    height: 400px;
    padding: 0 1rem;
  }
  .paris-intro {
    padding: 0 1rem;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 1rem;
    margin: 1rem auto 0;
  }
  nav a {
    font-size: .6rem;
    padding: 0 .5rem;
  }
  nav a::before {
    width: 6px; height: 6px;
  }
  .page {
    padding: 0 1rem;
    margin: 1.5rem auto;
  }
  .paris-gallery {
    flex-direction: column;
    height: auto;
    gap: 2px;
  }
  .paris-card {
    flex: none;
    height: 160px;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }
  .paris-card.paris-focused,
  .paris-card.paris-active {
    flex: none;
    height: 260px;
  }
  .paris-card.paris-dimmed,
  .paris-card.paris-sibling {
    flex: none;
    height: 120px;
  }
  .paris-card-title {
    opacity: 0;
  }
  .paris-card.paris-focused .paris-card-title,
  .paris-card.paris-active .paris-card-title {
    opacity: 1;
  }
  .program-name {
    font-size: 1.1rem;
  }
  .play-header {
    padding: 2rem 1rem 1.5rem;
  }
}

/* ======================================
   CTA BUTTON
   ====================================== */
.cta-btn {
  margin-top: 2.2rem;
  display: inline-block;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f8f8f8;
  background: #3366ff;
  border: none;
  padding: .75rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(51,102,255,0.3);
}
.cta-btn:hover {
  background: #254edb;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(51,102,255,0.35);
}
.cta-btn:active {
  transform: translateY(0);
}

/* ======================================
   WAITLIST MODAL
   ====================================== */
.wl-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(10, 10, 24, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.wl-backdrop.wl-open {
  opacity: 1;
  pointer-events: auto;
}
.wl-box {
  position: relative;
  background: #fff;
  border-radius: 6px;
  padding: 2.8rem 2.5rem 2.2rem;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28), 0 0 0 1px rgba(0,0,0,0.06);
  transform: translateY(16px) scale(0.97);
  transition: transform .28s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.wl-backdrop.wl-open .wl-box {
  transform: translateY(0) scale(1);
}
.wl-close {
  position: absolute;
  top: 1rem; right: 1.1rem;
  background: none;
  border: none;
  font-size: 1rem;
  color: #b0b0be;
  cursor: pointer;
  line-height: 1;
  padding: .2rem .4rem;
  transition: color .15s;
}
.wl-close:hover { color: #3a3a4a; }

.wl-header {
  text-align: center;
  margin-bottom: 2rem;
}
.wl-signal {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #3366ff;
  margin: 0 auto .9rem;
  box-shadow: 0 0 0 4px rgba(51,102,255,.15), 0 0 0 8px rgba(51,102,255,.07);
  animation: wl-pulse 2.2s ease infinite;
}
@keyframes wl-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(51,102,255,.15), 0 0 0 8px rgba(51,102,255,.07); }
  50%       { box-shadow: 0 0 0 7px rgba(51,102,255,.2),  0 0 0 14px rgba(51,102,255,.06); }
}
.wl-eyebrow {
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #3366ff;
  font-weight: 600;
  margin-bottom: .5rem;
  font-family: 'SF Mono','Fira Code','Consolas',monospace;
}
.wl-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: .03em;
  margin-bottom: .55rem;
  font-family: 'SF Mono','Fira Code','Consolas',monospace;
}
.wl-sub {
  font-size: .8rem;
  color: #9090a0;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.65;
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.wl-label {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6b6b7b;
  font-weight: 500;
  font-family: 'SF Mono','Fira Code','Consolas',monospace;
}
.wl-input {
  width: 100%;
  padding: .65rem .9rem;
  font-family: inherit;
  font-size: .82rem;
  color: #1a1a2e;
  background: #fafafa;
  border: 1.5px solid #d0d0d8;
  border-radius: 4px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.wl-input::placeholder { color: #b0b0be; }
.wl-input:focus {
  border-color: #3366ff;
  box-shadow: 0 0 0 3px rgba(51,102,255,.1);
  background: #fff;
}

.wl-fieldset {
  border: 1.5px solid #e8e8ee;
  border-radius: 4px;
  padding: 1rem 1.1rem .8rem;
  margin: .3rem 0 .2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.wl-legend {
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #9090a0;
  font-weight: 500;
  padding: 0 .3rem;
  font-family: 'SF Mono','Fira Code','Consolas',monospace;
}
.wl-check {
  display: flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
}
.wl-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: #3366ff;
  cursor: pointer;
  flex-shrink: 0;
}
.wl-check-label {
  font-size: .78rem;
  color: #4a4a5a;
  line-height: 1.4;
}
.wl-check-label strong {
  color: #1a1a2e;
  font-weight: 600;
}

.wl-submit {
  margin-top: .5rem;
  width: 100%;
  padding: .8rem;
  font-family: 'SF Mono','Fira Code','Consolas',monospace;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: #3366ff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .15s, opacity .2s;
}
.wl-submit:hover:not(:disabled) {
  background: #254edb;
  transform: translateY(-1px);
}
.wl-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.wl-msg {
  font-size: .72rem;
  text-align: center;
  color: #9090a0;
  min-height: 1.2em;
  font-family: 'SF Mono','Fira Code','Consolas',monospace;
}
.wl-msg-err { color: #e03a3a !important; }

.wl-success {
  text-align: center;
  padding: 1.5rem 0 .5rem;
}
.wl-success-icon {
  font-size: 2rem;
  color: #3366ff;
  margin-bottom: .8rem;
  animation: wl-pop .4s cubic-bezier(0.34, 1.6, 0.64, 1);
}
@keyframes wl-pop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.wl-success p {
  font-size: .85rem;
  color: #6b6b7b;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.7;
}
