/* [project]/src/app/game/game.module.css [app-client] (css) */
.game-module__h0mpaG__appContainer {
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  padding-bottom: 160px;
  display: flex;
}

.game-module__h0mpaG__header {
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  z-index: 100;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 10px 24px;
  display: grid;
  position: sticky;
  top: 10px;
}

.game-module__h0mpaG__headerLeft {
  align-items: center;
  display: flex;
}

.game-module__h0mpaG__brandLink {
  color: var(--text-main);
  align-items: center;
  gap: 12px;
  text-decoration: none;
  display: flex;
}

.game-module__h0mpaG__brandLogo {
  border-radius: 8px;
}

.game-module__h0mpaG__brandTextContainer {
  align-items: center;
  gap: 10px;
  display: flex;
}

.game-module__h0mpaG__brandName {
  background: linear-gradient(135deg, #38bdf8, #4c6ef5);
  -webkit-text-fill-color: transparent;
  color: #4c6ef5;
  letter-spacing: -.02em;
  white-space: nowrap;
  -webkit-background-clip: text;
  font-size: 1.25rem;
  font-weight: 900;
}

.game-module__h0mpaG__brandCopy {
  flex-direction: column;
  line-height: 1.1;
  display: flex;
}

.game-module__h0mpaG__brandTitle {
  color: var(--text-main);
  white-space: nowrap;
  font-size: .9rem;
  font-weight: 800;
}

.game-module__h0mpaG__brandSubtitle {
  color: var(--text-muted);
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .game-module__h0mpaG__brandTextContainer {
    display: none;
  }
}

.game-module__h0mpaG__pointsDisplay {
  letter-spacing: -.5px;
  color: #000;
  grid-column: 2;
  justify-self: center;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  display: flex;
  position: relative;
}

[data-theme="dark"] .game-module__h0mpaG__pointsDisplay {
  color: var(--text-main);
}

.game-module__h0mpaG__pointsDelta {
  pointer-events: none;
  font-size: .95rem;
  font-weight: 900;
  animation: 1.3s ease-out forwards game-module__h0mpaG__deltaFloat;
  position: absolute;
  top: -14px;
  right: -8px;
}

.game-module__h0mpaG__deltaUp {
  color: #16a34a;
}

.game-module__h0mpaG__deltaDown {
  color: #f87171;
}

@keyframes game-module__h0mpaG__deltaFloat {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-14px);
  }
}

.game-module__h0mpaG__coinImg {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: 2px solid #d97706;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  position: relative;
  box-shadow: 0 2px 4px #0000001a;
}

.game-module__h0mpaG__coinImg:after {
  content: "";
  border: 2px solid #ffffff4d;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.game-module__h0mpaG__headerActions {
  grid-column: 3;
  justify-content: flex-end;
  gap: 16px;
  display: flex;
}

.game-module__h0mpaG__mobileMenuWrapper {
  grid-column: 3;
  justify-self: end;
  display: none;
  position: relative;
}

.game-module__h0mpaG__hamburgerBtn {
  cursor: pointer;
  color: var(--text-main);
  background: none;
  border: none;
  padding: 4px;
}

.game-module__h0mpaG__mobileDropdown {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  min-width: 160px;
  margin-top: 10px;
  animation: .2s ease-out game-module__h0mpaG__popIn;
  position: absolute;
  top: 100%;
  right: 0;
  overflow: hidden;
}

.game-module__h0mpaG__mobileMenuItem {
  border: none;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  background: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.game-module__h0mpaG__mobileMenuItem:last-child {
  border-bottom: none;
}

.game-module__h0mpaG__mobileMenuItem:hover {
  background: var(--bg-color);
}

.game-module__h0mpaG__headerBtn {
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 4px;
  transition: transform .2s;
}

.game-module__h0mpaG__headerBtn:hover {
  color: var(--text-main);
  transform: scale(1.1);
}

.game-module__h0mpaG__levelIntro {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: -8px;
  display: flex;
}

.game-module__h0mpaG__levelBadge {
  border: 2px solid var(--brand-blue);
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .95rem;
  font-weight: 800;
  display: inline-flex;
}

.game-module__h0mpaG__levelDescription, .game-module__h0mpaG__levelAvailable {
  display: none;
}

.game-module__h0mpaG__searchWrapper {
  justify-content: center;
  display: flex;
}

.game-module__h0mpaG__inputContainer {
  flex-direction: column;
  gap: 8px;
  width: min(520px, 100%);
  display: flex;
  position: relative;
}

.game-module__h0mpaG__inputFieldWrap {
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  display: flex;
}

.game-module__h0mpaG__inputInner {
  flex: 1;
  min-width: 0;
  position: relative;
}

.game-module__h0mpaG__sendBtn {
  border-radius: var(--radius-md);
  letter-spacing: -.02em;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  border: none;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  padding: 0 32px;
  font-size: 1rem;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  display: flex;
  box-shadow: 0 18px 35px #4f46e540;
}

.game-module__h0mpaG__sendBtn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px #0ea5e938;
}

.game-module__h0mpaG__sendBtn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 12px 25px #0ea5e94d;
}

.game-module__h0mpaG__sendBtn:disabled {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
}

[data-theme="dark"] .game-module__h0mpaG__sendBtn {
  box-shadow: 0 16px 32px #020617d9;
}

.game-module__h0mpaG__sendBtnIcon {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  font-size: 28px;
  line-height: 1;
}

.game-module__h0mpaG__srOnly {
  clip: rect(0, 0, 0, 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.game-module__h0mpaG__toastLayer {
  pointer-events: none;
  z-index: 5;
  flex-direction: column;
  gap: 10px;
  display: flex;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
}

.game-module__h0mpaG__spinner {
  border: 3px solid #2f4aa01a;
  border-top-color: var(--brand-blue);
  pointer-events: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: .8s linear infinite game-module__h0mpaG__spin;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

@keyframes game-module__h0mpaG__spin {
  to {
    transform: translateY(-50%)rotate(360deg);
  }
}

.game-module__h0mpaG__searchInput {
  background: var(--card-bg);
  border: 3px solid var(--brand-blue);
  border-radius: var(--radius-md);
  width: 100%;
  color: var(--text-main);
  outline: none;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 600;
  transition: border-color .2s;
  box-shadow: 0 10px 15px -3px #2f4aa01a;
}

.game-module__h0mpaG__searchInput::placeholder {
  color: var(--text-muted);
}

.game-module__h0mpaG__searchInput:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px #2f4aa01a;
}

.game-module__h0mpaG__shake {
  animation: .4s cubic-bezier(.36, .07, .19, .97) both game-module__h0mpaG__shake;
  border-color: #ef4444 !important;
}

@media (max-width: 540px) {
  .game-module__h0mpaG__inputFieldWrap {
    gap: 8px;
  }

  .game-module__h0mpaG__sendBtn {
    min-width: 88px;
    padding: 0 16px;
  }

  .game-module__h0mpaG__sendBtnIcon {
    font-size: 24px;
  }

  .game-module__h0mpaG__searchInput {
    padding: 12px 16px;
    font-size: 16px;
  }
}

@keyframes game-module__h0mpaG__shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.game-module__h0mpaG__notification {
  border-radius: var(--radius-md);
  text-align: center;
  width: 100%;
  box-shadow: var(--shadow-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  animation: .2s ease-out game-module__h0mpaG__popIn;
}

.game-module__h0mpaG__notifError {
  color: #ef4444;
  background-color: #fee2e2;
  border: 1px solid #fecaca;
}

.game-module__h0mpaG__notifSuccess {
  color: #16a34a;
  background-color: #dcfce7;
  border: 1px solid #bbf7d0;
}

[data-theme="dark"] .game-module__h0mpaG__notifError {
  color: #fca5a5;
  background-color: #7f1d1d;
  border-color: #991b1b;
}

[data-theme="dark"] .game-module__h0mpaG__notifSuccess {
  color: #86efac;
  background-color: #14532d;
  border-color: #166534;
}

.game-module__h0mpaG__rewardToast {
  border-radius: var(--radius-md);
  color: #166534;
  width: 100%;
  box-shadow: var(--shadow-sm);
  background: #ecfccb;
  border: 1px solid #d9f99d;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-weight: 800;
  animation: .3s ease-out game-module__h0mpaG__popIn;
  display: flex;
}

.game-module__h0mpaG__rewardAmount {
  font-size: 1.05rem;
  font-weight: 900;
}

.game-module__h0mpaG__rewardDetail {
  color: #14532d;
  font-weight: 700;
}

[data-theme="dark"] .game-module__h0mpaG__rewardToast {
  color: #bef264;
  background: #14532d;
  border-color: #166534;
}

[data-theme="dark"] .game-module__h0mpaG__rewardDetail {
  color: #d9f99d;
}

.game-module__h0mpaG__divider {
  background: var(--border-light);
  opacity: .6;
  height: 1px;
}

.game-module__h0mpaG__mainGrid {
  grid-template-columns: 340px 1fr;
  align-items: start;
  gap: 32px;
  display: grid;
}

.game-module__h0mpaG__sectionTitle {
  color: var(--text-main);
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
}

.game-module__h0mpaG__historyCard {
  flex-direction: column;
  gap: 8px;
  max-height: 380px;
  padding-right: 4px;
  display: flex;
  overflow-y: auto;
}

.game-module__h0mpaG__historyCard::-webkit-scrollbar {
  width: 6px;
}

.game-module__h0mpaG__historyCard::-webkit-scrollbar-track {
  background: none;
}

.game-module__h0mpaG__historyCard::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}

.game-module__h0mpaG__guessRow {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  animation: .3s ease-out game-module__h0mpaG__popIn;
  display: flex;
}

@keyframes game-module__h0mpaG__goldPulse {
  0% {
    border-color: #fbbf24;
    transform: scale(1);
    box-shadow: 0 0 #fbbf24b3;
  }

  50% {
    border-color: #f59e0b;
    transform: scale(1.02);
    box-shadow: 0 0 0 10px #fbbf2400;
  }

  100% {
    border-color: var(--border-light);
    transform: scale(1);
    box-shadow: 0 0 #fbbf2400;
  }
}

.game-module__h0mpaG__guessRowHigh {
  border: 2px solid #fbbf24;
  animation: .3s ease-out game-module__h0mpaG__popIn, 1s ease-in-out game-module__h0mpaG__goldPulse;
}

@keyframes game-module__h0mpaG__popIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.game-module__h0mpaG__guessLabel {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 140px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 800;
  overflow: hidden;
}

.game-module__h0mpaG__guessLabel span {
  color: var(--text-muted);
  margin-left: 4px;
  font-size: 13px;
  font-weight: 500;
}

.game-module__h0mpaG__guessMeta {
  align-items: center;
  gap: 8px;
  display: flex;
}

.game-module__h0mpaG__guessPct {
  text-align: right;
  font-variant-numeric: tabular-nums;
  min-width: 60px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 900;
}

.game-module__h0mpaG__guessRowHigh .game-module__h0mpaG__guessPct {
  color: #d97706;
}

.game-module__h0mpaG__checkCircle {
  color: #2f4aa0;
  background: #e0e7ff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.game-module__h0mpaG__unlockGrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  display: grid;
}

.game-module__h0mpaG__unlockItem {
  background: var(--bg-color);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  min-height: 140px;
  color: var(--text-main);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  transition: all .2s;
  display: flex;
}

.game-module__h0mpaG__unlockItemActive {
  background: var(--card-bg);
  border: 2px solid var(--cyan-accent);
  color: var(--text-main);
  box-shadow: 0 0 15px #22d3ee1a;
}

.game-module__h0mpaG__unlockItemAd {
  color: #15803d;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #22c55e;
  transform: scale(1.02);
  box-shadow: 0 4px 12px #22c55e33;
}

[data-theme="dark"] .game-module__h0mpaG__unlockItemAd {
  color: #f0fdf4;
  background: linear-gradient(135deg, #14532d 0%, #064e3b 100%);
  border-color: #4ade80;
}

.game-module__h0mpaG__unlockItemLocked {
  background: var(--border-light);
  border-color: var(--border-light);
  color: var(--text-muted);
}

.game-module__h0mpaG__unlockedHintLine {
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
}

.game-module__h0mpaG__unlockedHintBadge {
  color: #16a34a;
}

.game-module__h0mpaG__unlockedHintWord {
  color: #16a34a;
  letter-spacing: -.2px;
  font-weight: 900;
}

.game-module__h0mpaG__unlockTitle {
  word-break: keep-all;
  font-size: 16px;
  font-weight: 900;
}

.game-module__h0mpaG__unlockPrice {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.game-module__h0mpaG__unlockBtn {
  border-radius: var(--radius-sm);
  background: var(--cyan-accent);
  color: #fff;
  cursor: pointer;
  border: none;
  width: 100%;
  margin-top: auto;
  padding: 8px;
  font-size: 13px;
  font-weight: 800;
}

.game-module__h0mpaG__unlockBtnAd {
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  background: #16a34a;
  border: none;
  width: 100%;
  margin-top: auto;
  padding: 8px;
  font-size: 13px;
  font-weight: 800;
  transition: all .2s;
  box-shadow: 0 2px 4px #0000001a;
}

.game-module__h0mpaG__unlockBtnAd:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px #0003;
}

.game-module__h0mpaG__unlockItemLocked .game-module__h0mpaG__unlockBtn {
  background: var(--text-muted);
  cursor: not-allowed;
  opacity: .5;
}

.game-module__h0mpaG__footer {
  justify-content: space-between;
  margin-top: 10px;
  display: flex;
}

.game-module__h0mpaG__baseBtn {
  border-radius: var(--radius-md);
  cursor: pointer;
  color: #fff;
  background: #312e81;
  border: none;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 900;
  transition: filter .2s;
  display: flex;
}

.game-module__h0mpaG__baseBtn:hover {
  filter: brightness(1.1);
}

.game-module__h0mpaG__mobileControls {
  display: none;
}

@media (max-width: 768px) {
  .game-module__h0mpaG__mobileControls {
    pointer-events: none;
    z-index: 100;
    justify-content: space-between;
    padding: 0 20px;
    display: flex;
    position: fixed;
    bottom: 90px;
    left: 0;
    right: 0;
  }

  .game-module__h0mpaG__mobileBtn {
    pointer-events: auto;
    cursor: pointer;
    color: #fff;
    border: none;
    border-radius: 28px;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    transition: transform .2s;
    display: flex;
    box-shadow: 0 4px 12px #0000004d;
  }

  .game-module__h0mpaG__mobileBtn:active {
    transform: scale(.9);
  }

  .game-module__h0mpaG__resetBtn {
    transition: all .2s;
    box-shadow: 0 4px 14px #ef444466;
    background-color: #ef4444 !important;
  }

  .game-module__h0mpaG__resetBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #ef444480;
    background-color: #dc2626 !important;
  }

  .game-module__h0mpaG__resetBtn:active {
    transform: translateY(0);
  }

  .game-module__h0mpaG__settingsBtn {
    background-color: #4b5563;
  }
}

.game-module__h0mpaG__adSlotBottom {
  color: #999;
  z-index: 90;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: #0000000d;
  border-top: 1px solid #0000001a;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 10px;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
}

@media (max-width: 900px) {
  .game-module__h0mpaG__mainGrid {
    grid-template-columns: 1fr;
  }

  .game-module__h0mpaG__header {
    grid-template-columns: 1fr auto 1fr;
  }

  .game-module__h0mpaG__unlockGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-module__h0mpaG__headerActions {
    display: none;
  }

  .game-module__h0mpaG__mobileMenuWrapper {
    display: block;
  }

  .game-module__h0mpaG__inputContainer {
    width: 100%;
  }
}

/*# sourceMappingURL=src_app_game_game_module_198a5e1d.css.map*/