/* [project]/bingo/app/components/Ball.css [app-client] (css) */
.ball-container {
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  display: flex;
}

.ball-container.small {
  margin: 5px;
  position: relative;
}

.ball {
  background-color: #fff;
  border: 5px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
  box-shadow: 0 0 10px #00000080;
}

.ball.drawn {
  background-color: #ffeb3b;
  border-color: #ffc107;
}

.ball-container.small .ball {
  border-width: 2px;
  width: 55px;
  height: 55px;
}

.ball-container.small .ball.drawn {
  animation: .4s ease-out markDrawn;
}

@keyframes markDrawn {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.ball-number {
  font-size: 4em;
  font-weight: bold;
}

.ball-container.small .ball-number {
  font-size: 1em;
}

.drawn-balls {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
}

/* [project]/bingo/app/components/BingoGame.module.css [app-client] (css) */
.BingoGame-module__l3Hura__desktop_layout {
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}

@media (min-width: 1024px) {
  .BingoGame-module__l3Hura__desktop_layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    min-height: 100vh;
  }

  .BingoGame-module__l3Hura__main_content {
    flex: 1;
    min-width: 0;
  }

  .BingoGame-module__l3Hura__sidebar {
    flex-direction: column;
    align-self: flex-start;
    gap: 1.5rem;
    width: 360px;
    max-height: calc(100vh - 40px);
    display: flex;
    position: sticky;
    top: 20px;
    overflow-y: auto;
  }

  .BingoGame-module__l3Hura__sidebar::-webkit-scrollbar {
    width: 8px;
  }

  .BingoGame-module__l3Hura__sidebar::-webkit-scrollbar-track {
    background: var(--progress-bg);
    border-radius: 4px;
  }

  .BingoGame-module__l3Hura__sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
  }

  .BingoGame-module__l3Hura__sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--foreground);
  }
}

.BingoGame-module__l3Hura__card_modal {
  min-width: 300px;
  max-width: 90%;
}

.BingoGame-module__l3Hura__modal_header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.BingoGame-module__l3Hura__close_button {
  cursor: pointer;
  background: none;
  border: none;
  padding: .5rem;
  font-size: 1.5rem;
}

.BingoGame-module__l3Hura__close_button:hover {
  color: var(--foreground);
  opacity: .7;
}

.BingoGame-module__l3Hura__modal_overlay {
  z-index: 1000;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.BingoGame-module__l3Hura__modal_box {
  background: var(--modal-bg);
  color: var(--foreground);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px #0000001a;
}

.BingoGame-module__l3Hura__numbers_grid {
  grid-template-rows: repeat(10, 1fr);
  grid-template-columns: auto;
  grid-auto-flow: column;
  gap: 5px;
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
  padding: 10px;
  display: grid;
}

.BingoGame-module__l3Hura__all_numbers {
  text-align: center;
  margin: 20px auto;
  position: relative;
}

.BingoGame-module__l3Hura__game_controls {
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  display: flex;
}

.BingoGame-module__l3Hura__button_row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  display: flex;
}

.BingoGame-module__l3Hura__button_row button {
  white-space: nowrap;
  flex: 0 auto;
  min-width: fit-content;
}

@media (min-width: 1024px) {
  .BingoGame-module__l3Hura__button_row {
    flex-direction: column;
    padding: 0;
  }

  .BingoGame-module__l3Hura__button_row button {
    justify-content: center;
    width: 100%;
  }
}

.BingoGame-module__l3Hura__draw_button {
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.BingoGame-module__l3Hura__draw_button:active {
  animation: .3s BingoGame-module__l3Hura__buttonPress;
  transform: scale(.95);
}

@keyframes BingoGame-module__l3Hura__buttonPress {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(.95);
  }
}

.BingoGame-module__l3Hura__draw_button:after {
  content: "";
  background: #ffffff80;
  border-radius: 50%;
  width: 0;
  height: 0;
  transition: width .6s, height .6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.BingoGame-module__l3Hura__draw_button:active:after {
  width: 300px;
  height: 300px;
}

.BingoGame-module__l3Hura__draw_button:hover:not(.BingoGame-module__l3Hura__disabled) {
  animation: 1.5s ease-in-out infinite BingoGame-module__l3Hura__buttonPulse;
}

@keyframes BingoGame-module__l3Hura__buttonPulse {
  0%, 100% {
    box-shadow: 0 4px 6px #0000001a;
  }

  50% {
    box-shadow: 0 6px 20px #ff007f66;
  }
}

.BingoGame-module__l3Hura__draw_button.BingoGame-module__l3Hura__disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .BingoGame-module__l3Hura__game_controls {
    padding: 10px;
  }

  .BingoGame-module__l3Hura__button_row {
    flex-direction: column;
    align-items: stretch;
  }

  .BingoGame-module__l3Hura__button_row button {
    width: 100%;
  }

  .BingoGame-module__l3Hura__numbers_grid {
    gap: 3px;
    padding: 5px;
  }

  .BingoGame-module__l3Hura__recent_list {
    justify-content: center;
  }

  .BingoGame-module__l3Hura__validation_controls {
    flex-direction: column;
    align-items: stretch;
  }

  .BingoGame-module__l3Hura__card_input {
    width: 100%;
  }
}

.BingoGame-module__l3Hura__recent_numbers {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  transition: background .3s, border-color .3s;
}

@media (min-width: 1024px) {
  .BingoGame-module__l3Hura__recent_numbers {
    margin-bottom: 0;
  }
}

.BingoGame-module__l3Hura__recent_numbers h3 {
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: .05em;
  opacity: .7;
  margin: 0 0 .75rem;
  font-size: 1rem;
}

.BingoGame-module__l3Hura__recent_list {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.BingoGame-module__l3Hura__recent_number {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  min-width: 40px;
  padding: .5rem .75rem;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 2px 4px #0000001a;
}

.BingoGame-module__l3Hura__settings_row {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  padding: 1rem;
  transition: background .3s, border-color .3s;
  display: flex;
}

@media (min-width: 1024px) {
  .BingoGame-module__l3Hura__settings_row {
    justify-content: space-around;
    margin: 0;
  }
}

.BingoGame-module__l3Hura__setting_item {
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
}

.BingoGame-module__l3Hura__setting_item input[type="checkbox"] {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.BingoGame-module__l3Hura__validation_panel {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-top: 1.5rem;
  padding: 1.5rem;
  transition: background .3s, border-color .3s;
}

@media (min-width: 1024px) {
  .BingoGame-module__l3Hura__validation_panel {
    margin-top: 0;
  }
}

.BingoGame-module__l3Hura__validation_panel h3 {
  color: var(--foreground);
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.BingoGame-module__l3Hura__validation_controls {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  display: flex;
}

@media (min-width: 1024px) {
  .BingoGame-module__l3Hura__validation_controls {
    flex-direction: column;
    align-items: stretch;
  }

  .BingoGame-module__l3Hura__validation_controls button {
    width: 100%;
  }
}

.BingoGame-module__l3Hura__card_input {
  border: 2px solid var(--border-color);
  background: var(--background);
  min-width: 150px;
  color: var(--foreground);
  border-radius: 8px;
  flex: 1;
  padding: .75rem 1rem;
  font-size: 1rem;
  transition: border-color .2s;
}

@media (min-width: 1024px) {
  .BingoGame-module__l3Hura__card_input {
    width: 100%;
    min-width: unset;
  }
}

.BingoGame-module__l3Hura__card_input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.BingoGame-module__l3Hura__card_input::placeholder {
  color: #94a3b8;
}

.BingoGame-module__l3Hura__validation_controls button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/*# sourceMappingURL=bingo_app_components_978218ee._.css.map*/