/* custom.css — WordleTodayAnswer v1.0 — Dark Green Theme */

:root {
  --card-radius:   16px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,.2);
  --shadow-md:     0 8px 40px rgba(0,0,0,.35);
  --transition:    .25s ease;
}

/* ── Badge pill ── */
.hero-badge .badge-pill {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600;
  padding: .4rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2); letter-spacing: .03em;
}
.hero-badge .badge-pill.game-pill { background: rgba(26,122,46,.25); border-color: rgba(74,222,128,.35); }

/* ── Hero title ── */
.hero-title { font-family: 'Raleway', sans-serif; font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.hero-intro { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.75; }

/* ── Hero featured image ── */
.hero-featured-img {
  width: 100%; max-width: 460px; border-radius: var(--card-radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5); display: block; margin: 0 auto;
  height: auto; object-fit: cover; background: #fff;
}

/* ── Hints ── */
.hints-box { background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.25rem 1.5rem; margin-bottom: 1rem; }
.hints-heading { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .75rem; }
.hints-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.hints-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; color: rgba(255,255,255,.8); }
.hint-num { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; border-radius: 50%; background: var(--primary); color: #fff; font-size: .72rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── Reveal / answer box ── */
.reveal-box { margin-bottom: 0; }
.answer-details { border-radius: var(--card-radius); overflow: hidden; border: 2px solid rgba(74,222,128,.3); }
.answer-details summary.btn-get-started {
  list-style: none; cursor: pointer; user-select: none;
  border-radius: calc(var(--card-radius) - 2px);
  display: flex; align-items: center; justify-content: space-between; gap: .5rem; width: 100%;
}
.answer-details summary::-webkit-details-marker { display: none; }
.answer-details[open] summary { border-radius: calc(var(--card-radius) - 2px) calc(var(--card-radius) - 2px) 0 0; }
.answer-details[open] .chevron-icon { transform: rotate(180deg); }
.chevron-icon { transition: transform .3s ease; flex-shrink: 0; }
.answer-reveal-content { background: var(--bg-card); padding: 1.5rem; border-top: 1px solid var(--border); }

/* ── Answer word display ── */
.answer-word-display { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.answer-tiles { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.answer-tile {
  width: 54px; height: 54px; border-radius: 8px; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-size: 1.7rem; font-weight: 800;
  text-transform: uppercase; box-shadow: 0 4px 14px rgba(0,0,0,.35);
  animation: tile-pop .4s ease forwards; opacity: 0;
}
@keyframes tile-pop { 0%{transform:scale(.5) rotate(-6deg)} 70%{transform:scale(1.08)} 100%{transform:scale(1);opacity:1} }
.answer-word-name {
  font-family: 'Raleway', sans-serif; font-size: 1.7rem; font-weight: 800; color: #fff;
  letter-spacing: -.01em; text-transform: capitalize; text-align: center;
  animation: fade-in-up .4s .2s ease both;
  max-width: 100%; overflow-wrap: break-word; word-break: break-word; line-height: 1.25;
}
.answer-explanation { font-size: .93rem; color: rgba(255,255,255,.78); line-height: 1.7; background: rgba(255,255,255,.05); border-radius: 10px; padding: 1rem 1.25rem; margin-top: 1rem; }
@keyframes fade-in-up { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* ── Hero button row ── */
.hero-btn-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.5rem; }

/* ══ HOMEPAGE — Today's answers game grid ══ */
.game-grid-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; height: 100%; transition: transform .25s, box-shadow .25s; display: block; color: inherit; text-decoration: none;
}
.game-grid-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,.45); color: inherit; }
.game-grid-card-link { text-decoration: none; display: block; }
.game-grid-img { position: relative; width: 100%; height: 160px; background: #fff; display: block; overflow: hidden; }
.game-grid-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-grid-pip { position: absolute; top: 10px; left: 10px; background: var(--gc,#1a7a2e); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.game-grid-body { padding: 1rem 1.2rem 1.2rem; }
.game-grid-meta { display: flex; align-items: center; justify-content: space-between; font-size: .74rem; color: var(--text-faint,rgba(255,255,255,.45)); margin-bottom: .5rem; }
.game-grid-num { font-weight: 700; color: rgba(255,255,255,.6); }
.game-grid-title { font-family: 'Raleway', sans-serif; font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.game-grid-head { display: flex; align-items: center; gap: 8px; margin-bottom: .4rem; }
.game-grid-icon { font-size: 1.3rem; }
.game-grid-name { font-family: 'Raleway', sans-serif; font-size: 1.05rem; font-weight: 800; color: #fff; }
.game-grid-date { font-size: .74rem; color: var(--text-faint); margin-left: auto; }
.game-grid-teaser { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; margin-bottom: .8rem; min-height: 38px; }
.game-grid-cta { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 700; color: var(--primary-light); }

/* ── Recent answers section header ── */
.recent-section { background: var(--bg-dark); }

/* ══ COLOR GUESSER (Colordle tab in Unlimited) ══ */
.mystery-color-box { width: clamp(120px,38vw,160px); height: clamp(120px,38vw,160px); border-radius: 20px; margin: 0 auto 20px; box-shadow: 0 8px 32px rgba(0,0,0,.4); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }

/* ══ Generic guesser input (shared by both games) ══ */
.guesser-input-row { display: flex; gap: 10px; margin-bottom: 8px; position: relative; width: 100%; }
.guesser-input { flex: 1; min-width: 0; height: 50px; padding: 0 14px; border: 2px solid rgba(255,255,255,.2); border-radius: 12px; font-family: 'Poppins', sans-serif; font-size: .92rem; background: var(--bg-card); color: #fff; transition: border-color var(--transition); }
.guesser-input::placeholder { color: rgba(255,255,255,.4); }
.guesser-input:focus { outline: none; border-color: var(--primary-light); }
.guesser-btn { height: 50px; padding: 0 18px; border-radius: 12px; flex-shrink: 0; background: var(--primary); color: #fff !important; border: none; font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 700; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.guesser-btn:hover { background: #15672a; }
.autocomplete-list { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-card); border: 1.5px solid rgba(255,255,255,.15); border-top: none; border-radius: 0 0 12px 12px; z-index: 50; max-height: 220px; overflow-y: auto; box-shadow: 0 8px 20px rgba(0,0,0,.3); display: none; max-width: 100%; }
.autocomplete-list.show { display: block; }
.ac-item { display: flex; align-items: center; gap: 10px; padding: 9px 14px; cursor: pointer; font-size: .88rem; font-weight: 500; color: #fff; transition: background .15s; }
.ac-item:hover { background: rgba(255,255,255,.1); }
.ac-dot { width: 22px; height: 22px; border-radius: 5px; flex-shrink: 0; border: 1px solid rgba(255,255,255,.1); }
.guesses-list { display: flex; flex-direction: column; gap: 9px; margin: 20px 0; }
.guess-row { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; animation: fade-in-up .25s ease; min-width: 0; overflow: hidden; }
.guess-swatch { width: 44px; height: 44px; border-radius: 9px; border: 1px solid rgba(255,255,255,.1); }
.guess-name { font-weight: 700; font-size: .92rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.guess-hex  { font-family: 'Courier New', monospace; font-size: .75rem; color: rgba(255,255,255,.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.guess-score-col { text-align: right; }
.score-pct  { font-family: 'Raleway', sans-serif; font-size: 1.3rem; font-weight: 800; line-height: 1; }
.score-bar  { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; margin-top: 4px; overflow: hidden; width: 60px; }
.score-fill { height: 100%; border-radius: 2px; transition: width .5s ease; }
.score-exact { color: #4ade80; } .score-hot { color: #fb923c; } .score-warm { color: #fbbf24; } .score-cold { color: rgba(255,255,255,.4); }
.guesser-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.g-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 12px; text-align: center; }
.g-stat-n { font-family: 'Raleway', sans-serif; font-size: 1.7rem; font-weight: 800; line-height: 1; color: #fff; }
.g-stat-l { font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; margin-top: 3px; }
.win-banner { background: linear-gradient(135deg, #052e16, #065f46); color: #fff; border-radius: 12px; padding: 18px 24px; text-align: center; margin-bottom: 18px; display: none; border: 1px solid rgba(74,222,128,.3); }
.win-banner.show { display: block; animation: fade-in-up .3s ease; }
.win-banner h4 { font-size: 1.2rem; margin-bottom: 4px; }
.win-banner p  { font-size: .88rem; opacity: .8; margin: 0; }
.how-to-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; margin-top: 16px; }
.how-to-card h5 { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.how-to-card ul { padding-left: 1.2rem; margin: 0; }
.how-to-card li { font-size: .84rem; color: rgba(255,255,255,.65); margin-bottom: 5px; }
.score-legend { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 10px; }
.score-legend span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 4px; }

/* ══ WORDLE TILE GAME (Unlimited primary tab) ══ */
.wordle-board, .tg-board { display: grid; grid-template-rows: repeat(6, 1fr); gap: 6px; margin: 0 auto 18px; width: max-content; }
.wordle-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.wordle-tile {
  width: 54px; height: 54px; border: 2px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-size: 1.7rem; font-weight: 800;
  color: #fff; text-transform: uppercase; transition: transform .15s, background .3s, border-color .3s;
}
.wordle-tile.filled { border-color: rgba(255,255,255,.4); animation: tile-bump .12s ease; }
@keyframes tile-bump { 50%{transform:scale(1.06)} }
.wordle-tile.correct { background: #1a7a2e; border-color: #1a7a2e; }
.wordle-tile.present { background: #c9a200; border-color: #c9a200; }
.wordle-tile.absent  { background: #3a4a3f; border-color: #3a4a3f; }
.wordle-keyboard, .tg-keyboard { display: flex; flex-direction: column; gap: 6px; max-width: 500px; margin: 0 auto; }
.kb-row { display: flex; justify-content: center; gap: 5px; }
.kb-key {
  min-width: 30px; height: 50px; padding: 0 8px; border: none; border-radius: 6px;
  background: #2a4636; color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: .8rem; text-transform: uppercase; cursor: pointer; transition: .15s;
  display: flex; align-items: center; justify-content: center; flex: 1;
}
.kb-key:hover { background: #345840; }
.kb-key.wide { flex: 1.5; font-size: .68rem; }
.kb-key.correct { background: #1a7a2e; }
.kb-key.present { background: #c9a200; }
.kb-key.absent  { background: #1a2b20; color: rgba(255,255,255,.4); }
.wordle-msg, .tg-msg { min-height: 24px; text-align: center; font-size: .9rem; font-weight: 600; color: var(--primary-light); margin-bottom: 12px; transition: opacity .2s; }
.wordle-tile.flip { animation: wt-flip .5s ease forwards; }
@keyframes wt-flip { 0%{transform:rotateX(0)} 50%{transform:rotateX(90deg)} 100%{transform:rotateX(0)} }
.wordle-row.shake { animation: wt-shake .4s ease; }
@keyframes wt-shake { 10%,90%{transform:translateX(-2px)} 20%,80%{transform:translateX(4px)} 30%,50%,70%{transform:translateX(-6px)} 40%,60%{transform:translateX(6px)} }
.wordle-result, .tg-result { background: linear-gradient(135deg, #052e16, #065f46); color: #fff; border-radius: 12px; padding: 18px 24px; text-align: center; margin: 16px auto 0; max-width: 360px; display: none; border: 1px solid rgba(74,222,128,.3); }
.wordle-result.show, .tg-result.show { display: block; animation: fade-in-up .3s ease; }
.wordle-result .wr-title, .tg-result .tg-result-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.wordle-result .wr-word, .tg-result .tg-result-word { font-family: 'Raleway', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: 3px; }

/* ── Tabs (Unlimited game selector) ── */
.game-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.game-tab {
  padding: .55rem 1.2rem; border-radius: 100px; border: 1.5px solid var(--border);
  background: var(--bg-card); color: rgba(255,255,255,.7); font-family: 'Poppins', sans-serif;
  font-size: .85rem; font-weight: 600; cursor: pointer; transition: .2s; display: inline-flex; align-items: center; gap: 6px;
}
.game-tab:hover { border-color: rgba(255,255,255,.35); color: #fff; }
.game-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.coming-soon { text-align: center; padding: 60px 20px; color: rgba(255,255,255,.5); }
.coming-soon i { font-size: 3rem; opacity: .3; display: block; margin-bottom: 14px; }

/* ── Toast ── */
.toast-msg { position: fixed; bottom: 20px; right: 20px; z-index: 9999; background: var(--bg-dark); color: #fff; padding: 10px 18px; border-radius: 10px; font-size: .85rem; font-weight: 500; border: 1px solid rgba(255,255,255,.15); box-shadow: 0 4px 20px rgba(0,0,0,.4); animation: fade-in-up .25s ease; pointer-events: none; }
.toast-msg.ok { background: #065f46; }

/* ── Mobile fixes ── */
#colorGuesserApp, #wordleApp { width: 100%; max-width: 560px; margin: 0 auto; overflow-x: hidden; }
.autocomplete-list { max-width: calc(100vw - 28px); }

@media (max-width: 520px) {
  .wordle-tile { width: 46px; height: 46px; font-size: 1.4rem; }
  .answer-tile { width: 46px; height: 46px; font-size: 1.4rem; }
  .kb-key { min-width: 24px; height: 46px; font-size: .72rem; padding: 0 5px; }
}
@media (max-width: 400px) {
  .wordle-tile { width: 40px; height: 40px; font-size: 1.2rem; }
  .answer-tile { width: 40px; height: 40px; font-size: 1.2rem; }
  .kb-key { min-width: 20px; height: 42px; font-size: .65rem; padding: 0 3px; }
  .score-bar { width: 44px; }
  .score-pct { font-size: 1.1rem; }
  .g-stat-n  { font-size: 1.4rem; }
}
@media (max-width: 767px) {
  .hero-featured-img { max-width: 100%; border-radius: 12px; }
  .answer-word-name { font-size: 1.4rem; }
  .game-grid-img { height: 140px; }
}

/* ══ ANSWER PAGE ══ */
.answer-detail-section { padding: 36px 0 64px; }
.answer-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 22px; flex-wrap: wrap; }
.answer-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.answer-breadcrumb a:hover { color: var(--primary-light); }
.answer-breadcrumb i { font-size: .65rem; opacity: .5; }
.answer-article { background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 28px 30px; }
.answer-h1 { font-family: 'Raleway', sans-serif; font-weight: 800; color: #fff; font-size: 1.7rem; line-height: 1.2; margin: 6px 0 12px; }
.answer-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.answer-meta i { color: var(--primary-light); margin-right: 4px; }
.answer-intro { color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 20px; }
.answer-feature-img { border-radius: 14px; overflow: hidden; margin-bottom: 20px; }
.answer-feature-img img { width: 100%; display: block; }
.ad-article-slot { padding: 8px 0; }
.answer-full-article { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); }
.answer-play-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; background: rgba(26,122,46,.12); border: 1px solid rgba(74,222,128,.22); border-radius: 14px; padding: 18px 22px; margin-top: 26px; }
.answer-play-cta strong { display: block; color: #fff; font-size: 1rem; }
.answer-play-cta span { color: rgba(255,255,255,.6); font-size: .85rem; }
.prev-next-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.pn-next { justify-content: flex-end; text-align: right; }
.pn-label { font-size: .72rem; color: rgba(255,255,255,.45); }
.pn-title { font-weight: 600; font-size: .9rem; }
.pn-link i { font-size: 1.4rem; color: var(--primary-light); flex-shrink: 0; }

/* answer sidebar */
.answer-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 18px; }
.sidebar-feature-img { border-radius: 14px; overflow: hidden; }
.sidebar-feature-img img { width: 100%; display: block; }
.sidebar-ad { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.sidebar-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; }
.sidebar-card-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.sidebar-card-title i { color: var(--primary-light); }
.sidebar-list { list-style: none; padding: 0; margin: 0 0 10px; }
.sidebar-list li { border-bottom: 1px solid var(--border); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; text-decoration: none; color: rgba(255,255,255,.75); font-size: .88rem; transition: color .15s; }
.sidebar-list a:hover { color: var(--primary-light); }
.sl-date { font-size: .74rem; color: rgba(255,255,255,.4); min-width: 42px; flex-shrink: 0; }
.sl-title { font-weight: 600; }
.sidebar-archive-link { font-size: .82rem; font-weight: 600; color: var(--primary-light); text-decoration: none; }
.sidebar-games { list-style: none; padding: 0; margin: 0; }
.sidebar-games li { border-bottom: 1px solid var(--border); }
.sidebar-games li:last-child { border-bottom: none; }
.sidebar-games a { display: flex; align-items: center; padding: 10px 0; text-decoration: none; color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500; transition: color .15s; }
.sidebar-games a:hover { color: var(--primary-light); }

/* ══ ABOUT SECTION (game hub + home) ══ */
.about-section { background: var(--bg-dark); }

/* ══ ARCHIVE PAGE ══ */
.archive-hero { padding-bottom: 10px; }
.archive-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 22px; }
.archive-tab { display: inline-flex; align-items: center; padding: .5rem 1.1rem; border-radius: 100px; border: 1.5px solid var(--border); background: var(--bg-card); color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600; text-decoration: none; transition: .2s; }
.archive-tab:hover { border-color: rgba(255,255,255,.35); color: #fff; }
.archive-tab.active { background: var(--at,var(--primary)); border-color: var(--at,var(--primary)); color: #fff; }
.archive-empty { text-align: center; padding: 60px 20px; color: rgba(255,255,255,.55); }
.archive-empty i { font-size: 3rem; opacity: .3; display: block; margin-bottom: 14px; }
.archive-empty h3 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.archive-ingrid-ad { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin: 4px 0; }
.archive-game-pip { position: absolute; top: 10px; left: 10px; background: var(--gc,#1a7a2e); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; box-shadow: 0 2px 8px rgba(0,0,0,.25); }

@media (max-width: 991px){ .answer-sidebar { position: static; margin-top: 24px; } }
@media (max-width: 600px){ .answer-article { padding: 20px 18px; } .answer-h1 { font-size: 1.4rem; } .prev-next-nav { grid-template-columns: 1fr; } }

/* ══ FUN FACT BOX ══ */
.fun-fact-box { background: linear-gradient(135deg, rgba(201,162,0,.12), rgba(74,222,128,.08)); border: 1px solid rgba(201,162,0,.3); border-radius: 14px; padding: 16px 20px; margin: 18px 0; }
.fun-fact-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.fun-fact-emoji { font-size: 1.2rem; }
.fun-fact-label { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: .95rem; color: #f5d97a; letter-spacing: .02em; }
.fun-fact-text { color: rgba(255,255,255,.82); line-height: 1.7; font-size: .92rem; margin: 0; }
.hints-list .hint-text { display: inline-block; }
