/* ==========================================================================
   Varginha Connect — Lazer / Games
   Design tokens extracted from varginhaconnect.com.br (hostinger-ai-theme)
   ========================================================================== */

:root {
  /* Palette from the news site */
  --vc-primary: #1C5B41;
  --vc-secondary: #123D2B;
  --vc-green-light: #5AA883;
  --vc-green-tint: #E7EFE9;
  --vc-base: #F7F5F0;
  --vc-cream: #F7F5F0;
  --vc-contrast: #1B1A17;
  --vc-dark: #1B1A17;
  --vc-grey: #D8D3C9;
  --vc-header-bg: #E1D7C6;
  --vc-header-text: #0d141a;
  --vc-ink-soft: #57544E;
  --vc-accent: #F26C0D;
  --vc-white: #FFFFFF;
  --vc-black: #000000;

  /* Fonts used by the theme */
  --vc-font-heading: "Libre Caslon Text", "Caudex", Georgia, "Times New Roman", serif;
  --vc-font-body: "Libre Franklin", "NunitoSans", "Open Sans", "Lato", "Segoe UI", Arial, sans-serif;

  --vc-radius: 8px;
  --vc-shadow: 0 1px 3px rgba(27, 26, 23, 0.12), 0 4px 14px rgba(27, 26, 23, 0.08);
  --vc-shadow-lg: 0 6px 24px rgba(27, 26, 23, 0.18);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--vc-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--vc-contrast);
  background: var(--vc-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--vc-primary);
  text-decoration: none;
}

a:hover {
  color: var(--vc-secondary);
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(242, 108, 13, 0.55);
  outline-offset: 2px;
}

/* ==========================================================================
   Masthead (reproduces the news site header)
   ========================================================================== */

.site-topbar {
  background: var(--vc-secondary);
  color: var(--vc-white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.site-topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-topbar__date {
  color: var(--vc-green-light);
  font-weight: 600;
  text-transform: uppercase;
}

.site-topbar__links a {
  color: var(--vc-white);
  margin-left: 16px;
  opacity: 0.85;
}

.site-topbar__links a:hover {
  opacity: 1;
  color: var(--vc-accent);
}

.site-header {
  background: var(--vc-header-bg);
  border-bottom: 3px solid var(--vc-primary);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 20px 18px;
  text-align: center;
}

.site-logo {
  font-family: var(--vc-font-heading);
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  line-height: 1.1;
  color: var(--vc-secondary);
  letter-spacing: 0.01em;
}

.site-logo strong {
  font-weight: 700;
}

.site-logo .dot {
  color: var(--vc-accent);
}

.site-tagline {
  margin: 6px 0 0;
  font-family: var(--vc-font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--vc-ink-soft);
}

.site-nav {
  background: var(--vc-white);
  border-bottom: 1px solid var(--vc-grey);
}

.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: center;
}

.site-nav__link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--vc-dark);
  border-bottom: 2px solid transparent;
}

.site-nav__link:hover {
  color: var(--vc-primary);
}

.site-nav__link.is-active {
  border-bottom-color: var(--vc-accent);
  color: var(--vc-primary);
}

.site-nav__link.is-lazer {
  background: var(--vc-green-tint);
  border-radius: 4px 4px 0 0;
}

/* ==========================================================================
   Page shell
   ========================================================================== */

.vc-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

.vc-breadcrumb {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--vc-ink-soft);
  margin: 0 0 6px;
}

.vc-breadcrumb a {
  color: var(--vc-ink-soft);
}

.vc-breadcrumb a:hover {
  color: var(--vc-accent);
}

.vc-page-title {
  font-family: var(--vc-font-heading);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--vc-dark);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.vc-page-subtitle {
  color: var(--vc-ink-soft);
  max-width: 780px;
  margin: 0 0 28px;
  font-size: 1.02rem;
}

.vc-rule {
  border: 0;
  border-top: 1px solid var(--vc-grey);
  margin: 28px 0;
}

/* ==========================================================================
   Hub grid (index)
   ========================================================================== */

.vc-section-label {
  font-family: var(--vc-font-heading);
  font-size: 1.15rem;
  color: var(--vc-secondary);
  margin: 34px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--vc-grey);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.game-card {
  position: relative;
  display: block;
  background: var(--vc-white);
  border: 1px solid var(--vc-grey);
  border-radius: var(--vc-radius);
  overflow: hidden;
  box-shadow: var(--vc-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.game-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--vc-shadow-lg);
  border-color: var(--vc-primary);
}

.game-card__thumb {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vc-white);
}

.game-card__thumb svg {
  width: 64px;
  height: 64px;
  color: var(--vc-white);
}

.game-card__body {
  padding: 16px 18px 18px;
}

.game-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vc-accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.game-card__title {
  font-family: var(--vc-font-heading);
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--vc-dark);
  margin: 0 0 6px;
}

.game-card__desc {
  font-size: 0.9rem;
  color: var(--vc-ink-soft);
  margin: 0 0 14px;
}

.game-card__meta {
  font-size: 0.78rem;
  color: var(--vc-ink-soft);
  border-top: 1px solid var(--vc-grey);
  padding-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.game-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* thumbs backgrounds, reuse brand tones */
.thumb-sudoku { background: linear-gradient(135deg, #1C5B41, #123D2B); }
.thumb-hq { background: linear-gradient(135deg, #7a4a2b, #4a2c17); }
.thumb-crossword { background: linear-gradient(135deg, #5AA883, #1C5B41); }
.thumb-jigsaw { background: linear-gradient(135deg, #E1D7C6, #D8D3C9); color: var(--vc-secondary); }
.thumb-memory { background: linear-gradient(135deg, #F26C0D, #C25409); }

.thumb-jigsaw svg { color: var(--vc-secondary); }

/* ==========================================================================
   Game shell
   ========================================================================== */

.game-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.game-back {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vc-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.game-back:hover {
  color: var(--vc-accent);
}

.game-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.game-stat {
  background: var(--vc-white);
  border: 1px solid var(--vc-grey);
  border-radius: 6px;
  padding: 6px 14px;
  text-align: center;
  min-width: 84px;
}

.game-stat__label {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vc-ink-soft);
}

.game-stat__value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vc-secondary);
  font-variant-numeric: tabular-nums;
}

.game-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.btn--primary {
  background: var(--vc-primary);
  color: var(--vc-white);
}

.btn--primary:hover {
  background: var(--vc-secondary);
}

.btn--accent {
  background: var(--vc-accent);
  color: var(--vc-white);
}

.btn--accent:hover {
  background: #C25409;
}

.btn--ghost {
  background: var(--vc-white);
  border-color: var(--vc-grey);
  color: var(--vc-dark);
}

.btn--ghost:hover {
  border-color: var(--vc-primary);
  color: var(--vc-primary);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--icon svg {
  width: 16px;
  height: 16px;
}

/* Difficulty segmented control */
.segmented {
  display: inline-flex;
  background: var(--vc-white);
  border: 1px solid var(--vc-grey);
  border-radius: 6px;
  overflow: hidden;
}

.segmented__label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 12px;
  align-self: center;
  color: var(--vc-ink-soft);
  font-weight: 700;
}

.segmented__btn {
  border: 0;
  border-left: 1px solid var(--vc-grey);
  background: var(--vc-white);
  color: var(--vc-ink-soft);
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 600;
}

.segmented__btn:hover {
  background: var(--vc-green-tint);
  color: var(--vc-secondary);
}

.segmented__btn.is-active {
  background: var(--vc-secondary);
  color: var(--vc-white);
}

/* ==========================================================================
   Game area cards
   ========================================================================== */

.game-panel {
  background: var(--vc-white);
  border: 1px solid var(--vc-grey);
  border-radius: var(--vc-radius);
  box-shadow: var(--vc-shadow);
  padding: 20px;
  margin-bottom: 24px;
}

.game-panel--flush {
  padding: 0;
}

.game-area {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: flex-start;
}

.game-side {
  min-width: 0;
  flex: 1 1 300px;
  max-width: 420px;
}

/* ==========================================================================
   Sudoku
   ========================================================================== */

.sudoku-board {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0;
  border: 3px solid var(--vc-secondary);
  background: var(--vc-secondary);
  max-width: 460px;
  margin: 0 auto;
}

.sudoku-cell {
  aspect-ratio: 1;
  background: var(--vc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.9rem, 3.4vw, 1.25rem);
  font-weight: 600;
  font-family: var(--vc-font-body);
  color: var(--vc-dark);
}

.sudoku-cell input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  color: inherit;
}

.sudoku-cell input:focus {
  outline: none;
  background: var(--vc-green-tint);
}

.sudoku-cell input::placeholder {
  color: var(--vc-grey);
}

.sudoku-cell.is-given {
  background: var(--vc-green-tint);
  color: var(--vc-secondary);
}

.sudoku-cell.is-error {
  background: #FBE3DC;
}

.sudoku-board.is-solved .sudoku-cell:not(.is-given) {
  background: #EAF6EF;
}

/* 3x3 block separation */
.sudoku-cell.br { border-right: 2px solid var(--vc-secondary); }
.sudoku-cell.bb { border-bottom: 2px solid var(--vc-secondary); }

.sudoku-numpad {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 460px;
  margin: 14px auto 0;
}

.sudoku-numpad button {
  padding: 10px 0;
  font-size: 1.05rem;
  font-weight: 700;
  border: 1px solid var(--vc-grey);
  background: var(--vc-white);
  border-radius: 6px;
  color: var(--vc-secondary);
}

.sudoku-numpad button:hover {
  background: var(--vc-green-tint);
}

.sudoku-numpad .num-clear {
  color: var(--vc-accent);
}

/* ==========================================================================
   Crossword
   ========================================================================== */

.cross-grid {
  display: inline-grid;
  gap: 0;
  border: 3px solid var(--vc-secondary);
  background: var(--vc-secondary);
  margin: 0 auto;
}

.cross-cell {
  position: relative;
  aspect-ratio: 1;
  background: var(--vc-white);
}

.cross-cell input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: clamp(0.8rem, 3vw, 1.05rem);
  font-weight: 600;
  font-family: var(--vc-font-body);
  color: var(--vc-dark);
  text-transform: uppercase;
}

.cross-cell input:focus {
  outline: none;
  background: var(--vc-green-tint);
}

.cross-cell.is-block {
  background: var(--vc-secondary);
}

.cross-cell.is-given {
  background: var(--vc-green-tint);
  color: var(--vc-secondary);
}

.cross-cell.is-active {
  background: #FEF3E4;
}

.cross-cell.is-active input {
  background: #FEF3E4;
}

.cross-cell.is-highlight {
  background: var(--vc-green-tint);
}

.cross-cell.is-highlight input {
  background: var(--vc-green-tint);
}

.cross-cell.is-wrong {
  background: #FBE3DC;
}

.cross-cell.is-wrong input {
  background: #FBE3DC;
  color: #B3261E;
}

.cross-cell .cell-num {
  position: absolute;
  top: 1px;
  left: 3px;
  font-size: clamp(0.5rem, 1.4vw, 0.68rem);
  font-weight: 700;
  color: var(--vc-ink-soft);
  line-height: 1;
  pointer-events: none;
}

.cross-clues {
  columns: 2;
  column-gap: 22px;
  font-size: 0.9rem;
}

.cross-clues ol {
  margin: 0 0 14px;
  padding-left: 22px;
  break-inside: avoid;
}

.cross-clues li {
  margin-bottom: 6px;
  line-height: 1.5;
  cursor: pointer;
}

.cross-clues li:hover {
  color: var(--vc-accent);
}

.cross-clues li.is-active {
  font-weight: 700;
  color: var(--vc-primary);
}

.cross-clues li strong {
  color: var(--vc-secondary);
}

.cross-clues__header {
  font-family: var(--vc-font-heading);
  font-size: 1rem;
  color: var(--vc-secondary);
  margin: 0 0 8px;
  break-inside: avoid;
}

/* ==========================================================================
   Jigsaw
   ========================================================================== */

.jigsaw-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: flex-start;
}

.jigsaw-board {
  background: var(--vc-green-tint);
  border: 3px solid var(--vc-secondary);
  border-radius: 6px;
  display: grid;
  gap: 0;
  flex: 0 0 auto;
}

.jigsaw-slot {
  background: rgba(27, 26, 23, 0.08);
  border: 1px dashed rgba(27, 26, 23, 0.25);
  position: relative;
}

.jigsaw-slot.is-filled {
  border: 0;
  background: transparent;
}

.jigsaw-slot.is-correct {
  box-shadow: inset 0 0 0 3px var(--vc-green-light);
}

.jigsaw-slot.is-wrong {
  box-shadow: inset 0 0 0 3px #E25A3B;
}

.jigsaw-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.jigsaw-pile {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  flex: 0 0 100%;
}

.jigsaw-piece {
  width: 72px;
  height: 72px;
  cursor: grab;
  border-radius: 4px;
  box-shadow: var(--vc-shadow);
  background: var(--vc-white);
  padding: 0;
  border: 0;
  transition: transform 0.12s ease;
}

.jigsaw-piece:hover {
  transform: scale(1.06);
}

.jigsaw-piece.is-selected {
  outline: 3px solid var(--vc-accent);
  outline-offset: 2px;
}

.jigsaw-piece img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.jigsaw-hint {
  font-size: 0.85rem;
  color: var(--vc-ink-soft);
  margin-top: 10px;
  text-align: center;
}

/* ==========================================================================
   Memory
   ========================================================================== */

.memory-board {
  display: grid;
  gap: 10px;
  margin: 0 auto;
}

.memory-card {
  perspective: 700px;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: transparent;
  border: 0;
  padding: 0;
}

.memory-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.memory-card.is-flipped .memory-card__inner {
  transform: rotateY(180deg);
}

.memory-card__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--vc-shadow);
}

.memory-card__face--front {
  background: var(--vc-secondary);
  color: var(--vc-white);
}

.memory-card__face--front svg {
  width: 42%;
  height: 42%;
  color: var(--vc-green-light);
}

.memory-card__face--back {
  background: var(--vc-white);
  border: 2px solid var(--vc-green-light);
  transform: rotateY(180deg);
  color: var(--vc-primary);
}

.memory-card__face--back svg {
  width: 58%;
  height: 58%;
}

.memory-card.is-matched {
  opacity: 0.55;
  pointer-events: none;
}

.memory-card.is-matched .memory-card__inner {
  transform: rotateY(180deg);
}

.memory-card.is-mismatch .memory-card__inner {
  animation: vc-shake 0.35s ease;
}

@keyframes vc-shake {
  0%, 100% { transform: rotateY(180deg) translateX(0); }
  25% { transform: rotateY(180deg) translateX(-5px); }
  75% { transform: rotateY(180deg) translateX(5px); }
}

/* ==========================================================================
   Modal
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(27, 26, 23, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--vc-white);
  border-radius: 10px;
  box-shadow: var(--vc-shadow-lg);
  max-width: 440px;
  width: 100%;
  padding: 30px 28px 26px;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.18s ease;
}

.modal-backdrop.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--vc-green-tint);
  color: var(--vc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal__badge svg {
  width: 34px;
  height: 34px;
}

.modal__title {
  font-family: var(--vc-font-heading);
  font-size: 1.5rem;
  color: var(--vc-dark);
  margin: 0 0 8px;
}

.modal__text {
  color: var(--vc-ink-soft);
  margin: 0 0 10px;
}

.modal__renew {
  background: var(--vc-green-tint);
  border: 1px solid var(--vc-grey);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--vc-primary);
  margin: 0 0 20px;
}

.modal__renew strong {
  color: var(--vc-secondary);
}

.modal__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal__stats {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 4px 0 18px;
}

.modal__stat {
  font-size: 0.9rem;
  color: var(--vc-ink-soft);
}

.modal__stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--vc-secondary);
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.vc-footer {
  background: var(--vc-secondary);
  color: var(--vc-white);
  padding: 34px 20px;
  text-align: center;
  margin-top: 40px;
}

.vc-footer__logo {
  font-family: var(--vc-font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.vc-footer__tagline {
  color: var(--vc-green-light);
  font-style: italic;
  font-family: var(--vc-font-heading);
  margin-bottom: 14px;
}

.vc-footer__meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.vc-footer__meta a {
  color: var(--vc-green-light);
}

/* ==========================================================================
   Quebra-cabeça: seletor de imagens
   ========================================================================== */

.jigsaw-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.jigsaw-pick {
  border: 2px solid var(--vc-grey);
  border-radius: var(--vc-radius);
  background: var(--vc-white);
  padding: 8px;
  cursor: pointer;
  text-align: center;
  width: 118px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.jigsaw-pick:hover {
  border-color: var(--vc-green-light);
  transform: translateY(-2px);
}

.jigsaw-pick.is-selected {
  border-color: var(--vc-primary);
  box-shadow: 0 0 0 3px rgba(28, 91, 65, 0.22);
}

.jigsaw-pick canvas {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 6px;
  margin: 0 auto 7px;
  background: var(--vc-base);
}

.jigsaw-pick span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--vc-secondary);
  line-height: 1.15;
  display: block;
}

.jigsaw-pick--random {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--vc-secondary);
  border-style: dashed;
}

.jigsaw-pick--random svg {
  width: 30px;
  height: 30px;
}

/* ==========================================================================
   Palavras cruzadas: solução revelada (desistência)
   ========================================================================== */

.cross-cell.is-revealed input {
  color: var(--vc-primary);
  font-weight: 700;
  background: var(--vc-green-tint);
}

.cross-cell.is-revealed input:disabled {
  opacity: 1;
  -webkit-text-fill-color: var(--vc-primary);
}

/* ==========================================================================
   Responsive helpers
   ========================================================================== */

@media (max-width: 720px) {
  .vc-shell {
    padding: 20px 14px 44px;
  }

  .site-nav__inner {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .site-nav__link {
    white-space: nowrap;
  }

  .cross-clues {
    columns: 1;
  }

  .game-area {
    gap: 18px;
  }
}

/* --- Lazer: integração com o tema WP (v1.0.2) --- */
.jigsaw-pick canvas.is-loading { background: #e8ecea; }
body.page-id-1635 .hostinger-ai-page-title,
body.page-id-1636 .hostinger-ai-page-title,
body.page-id-1637 .hostinger-ai-page-title,
body.page-id-1638 .hostinger-ai-page-title,
body.page-id-1639 .hostinger-ai-page-title { display: none; }
