/* [project]/app/globals.css [app-client] (css) */
.roulette-demo-banner {
  z-index: 200000;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(12, 17, 28, .96);
  border: 1px solid rgba(125, 46, 250, .4);
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  max-width: min(520px, 92vw);
  padding: 12px 20px;
  display: flex;
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%)translateY(12px);
  box-shadow: 0 20px 60px -12px rgba(125, 46, 250, .5);
}

.roulette-demo-banner.roulette-demo-in {
  animation: .3s cubic-bezier(.22, .9, .3, 1) both roulette-demo-in;
}

.roulette-demo-banner b {
  color: #fff;
  font-family: Chakra Petch, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.roulette-demo-banner span {
  color: #9dabbd;
  font-family: Chakra Petch, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 12px;
}

@keyframes roulette-demo-in {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

.roulette-demo-row {
  animation: .25s both roulette-demo-in;
}

.verbatim-auth-overlay {
  z-index: 100000;
  -webkit-backdrop-filter: blur(6px);
  background: rgba(3, 6, 12, .72);
  justify-content: center;
  align-items: center;
  padding: 16px;
  animation: .18s both verbatim-auth-fade;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}

@keyframes verbatim-auth-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.verbatim-auth-modal {
  color: #fff;
  background: #0c111c;
  border: 1px solid #1d2637;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 26px 24px 22px;
  font-family: Chakra Petch, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  animation: .24s cubic-bezier(.22, .9, .3, 1) both verbatim-auth-up;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 32px 90px -18px rgba(0, 0, 0, .75), 0 0 0 1px rgba(125, 46, 250, .06);
}

@keyframes verbatim-auth-up {
  from {
    opacity: 0;
    transform: translateY(14px)scale(.985);
  }

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

.verbatim-auth-close {
  color: #616f81;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.verbatim-auth-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.verbatim-auth-logo {
  object-fit: contain;
  width: auto;
  height: 36px;
  display: block;
}

.verbatim-auth-title {
  letter-spacing: -.01em;
  color: #fff;
  margin: 16px 0 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.verbatim-auth-sub {
  color: #9dabbd;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.verbatim-auth-tabs {
  background: #060b15;
  border: 1px solid #161e2e;
  border-radius: 12px;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 16px;
  padding: 4px;
  display: grid;
}

.verbatim-auth-tab {
  cursor: pointer;
  color: #9dabbd;
  background: none;
  border: 0;
  border-radius: 9px;
  padding: 9px 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
}

.verbatim-auth-tab[data-active="true"] {
  color: #fff;
  background: #7d2efa;
  box-shadow: 0 6px 22px -8px rgba(125, 46, 250, .7);
}

.verbatim-auth-tab:hover[data-active="false"] {
  color: #fff;
}

.verbatim-auth-social {
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  display: flex;
}

.verbatim-auth-steam {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(#2a475e, #1b2838);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
}

.verbatim-auth-steam:hover {
  filter: brightness(1.12);
}

.verbatim-auth-steam:disabled {
  opacity: .6;
  cursor: wait;
}

.verbatim-auth-social-row {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  display: grid;
}

.verbatim-auth-google, .verbatim-auth-discord {
  cursor: pointer;
  border: 1px solid #232f45;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 11px 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
}

.verbatim-auth-google {
  color: #1a2233;
  background: #fff;
  border-color: #fff;
}

.verbatim-auth-google:hover {
  filter: brightness(.94);
}

.verbatim-auth-discord {
  color: #fff;
  background: #5865f2;
  border-color: #5865f2;
}

.verbatim-auth-discord:hover {
  filter: brightness(1.08);
}

.verbatim-auth-google:disabled, .verbatim-auth-discord:disabled {
  opacity: .6;
  cursor: wait;
}

.verbatim-auth-div {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #616f81;
  align-items: center;
  gap: 12px;
  margin: 16px 0 14px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.verbatim-auth-div:before, .verbatim-auth-div:after {
  content: "";
  background: #1a2233;
  flex: 1;
  height: 1px;
}

.verbatim-auth-error {
  color: #ff9d9d;
  background: rgba(255, 92, 92, .1);
  border: 1px solid rgba(255, 92, 92, .35);
  border-radius: 10px;
  margin: 0 0 10px;
  padding: 9px 12px;
  font-size: 12.5px;
  line-height: 1.45;
}

.verbatim-auth-error[hidden] {
  display: none;
}

.verbatim-auth-field {
  margin-bottom: 10px;
}

.verbatim-auth-field label {
  color: #9dabbd;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  display: block;
}

.verbatim-auth-inputwrap {
  position: relative;
}

.verbatim-auth-field input {
  box-sizing: border-box;
  color: #fff;
  background: #060b15;
  border: 1px solid #1d2637;
  border-radius: 12px;
  outline: none;
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}

.verbatim-auth-field input::placeholder {
  color: #616f81;
}

.verbatim-auth-field input:focus {
  border-color: #7d2efa;
  box-shadow: 0 0 0 3px rgba(125, 46, 250, .18);
}

.verbatim-auth-field input[data-invalid="true"] {
  border-color: rgba(255, 92, 92, .6);
}

.verbatim-auth-eye {
  color: #616f81;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.verbatim-auth-eye:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.verbatim-auth-row {
  justify-content: space-between;
  align-items: center;
  margin: 2px 0 12px;
  display: flex;
}

.verbatim-auth-forgot {
  color: #9dabbd;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
}

.verbatim-auth-forgot:hover {
  color: #fff;
  text-decoration: underline;
}

.verbatim-auth-submit {
  color: #fff;
  cursor: pointer;
  background: #7d2efa;
  border: 0;
  border-radius: 12px;
  width: 100%;
  padding: 13px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 0 6px 22px -8px rgba(125, 46, 250, .7);
}

.verbatim-auth-submit:hover:not(:disabled) {
  filter: brightness(1.1);
}

.verbatim-auth-submit:disabled {
  opacity: .65;
  cursor: wait;
}

.verbatim-auth-note {
  text-align: center;
  color: #616f81;
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 1.6;
}

.verbatim-auth-note a {
  color: #9dabbd;
  text-decoration: underline;
}

.verbatim-auth-switch {
  text-align: center;
  color: #9dabbd;
  margin: 12px 0 0;
  font-size: 13px;
}

.verbatim-auth-switch button {
  color: #fff;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
}

.verbatim-auth-switch button:hover {
  text-decoration: underline;
}

.verbatim-userpill {
  align-items: center;
  gap: 8px;
  display: flex;
}

.verbatim-balance {
  color: #fff;
  white-space: nowrap;
  background: #0c111c;
  border: 1px solid #1d2637;
  border-radius: 12px;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-family: Chakra Petch, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.verbatim-balance img {
  object-fit: contain;
  width: 16px;
  height: 16px;
}

.verbatim-deposit {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: #7d2efa;
  border: 0;
  border-radius: 12px;
  padding: 10px 16px;
  font-family: Chakra Petch, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 0 6px 22px -8px rgba(125, 46, 250, .7);
}

.verbatim-deposit:hover {
  filter: brightness(1.1);
}

.verbatim-account {
  position: relative;
}

.verbatim-account-btn {
  cursor: pointer;
  color: #fff;
  background: #121925;
  border: 1px solid #1d2637;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  max-width: 180px;
  padding: 6px 10px 6px 6px;
  font-family: Chakra Petch, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  transition: all .2s;
  display: flex;
}

.verbatim-account-btn:hover {
  background: #1a2233;
}

.verbatim-account-btn img {
  object-fit: cover;
  background: #060b15;
  border-radius: 50%;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.verbatim-account-btn span {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
}

.verbatim-account-menu {
  z-index: 500;
  background: #0c111c;
  border: 1px solid #1d2637;
  border-radius: 14px;
  min-width: 190px;
  padding: 6px;
  animation: .16s both verbatim-auth-up;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, .7);
}

.verbatim-account-menu button {
  text-align: left;
  color: #bdc8d6;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.verbatim-account-menu button:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.verbatim-account-email {
  color: #616f81;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #1a2233;
  margin-bottom: 4px;
  padding: 8px 12px 6px;
  font-size: 11px;
  overflow: hidden;
}

.verbatim-toast {
  z-index: 200000;
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(12, 17, 28, .97);
  border: 1px solid rgba(125, 46, 250, .4);
  border-radius: 14px;
  max-width: min(480px, 92vw);
  padding: 12px 18px;
  font-family: Chakra Petch, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all .25s;
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%)translateY(12px);
  box-shadow: 0 20px 60px -12px rgba(125, 46, 250, .5);
}

.verbatim-toast.verbatim-toast-in {
  opacity: 1;
  transform: translateX(-50%)translateY(0);
}

.verbatim-toast[data-kind="error"] {
  border-color: rgba(255, 92, 92, .45);
  box-shadow: 0 20px 60px -12px rgba(255, 92, 92, .35);
}

.verbatim-drawer-overlay {
  z-index: 90000;
  background: rgba(3, 6, 12, .7);
  animation: .18s both verbatim-auth-fade;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.verbatim-drawer {
  z-index: 90001;
  background: #0c111c;
  border-left: 1px solid #1d2637;
  width: 300px;
  max-width: 85vw;
  padding: 20px;
  font-family: Chakra Petch, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  animation: .22s cubic-bezier(.22, .9, .3, 1) both verbatim-drawer-in;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
}

@keyframes verbatim-drawer-in {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

.verbatim-drawer-head {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.verbatim-drawer-head img {
  object-fit: contain;
  width: auto;
  height: 32px;
}

.verbatim-drawer-x {
  color: #9dabbd;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 22px;
}

.verbatim-drawer-x:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.verbatim-drawer-label {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #616f81;
  margin: 20px 0 8px;
  font-size: 11px;
  font-weight: 700;
}

.verbatim-drawer-link {
  color: #bdc8d6;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.verbatim-drawer-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .05);
}

.verbatim-drawer-auth {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
  display: grid;
}

.verbatim-drawer-login, .verbatim-drawer-signup {
  cursor: pointer;
  border-radius: 12px;
  padding: 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
}

.verbatim-drawer-login {
  color: #bdc8d6;
  background: #121925;
  border: 1px solid #232f45;
}

.verbatim-drawer-signup {
  color: #fff;
  background: #7d2efa;
  border: 0;
}

@media (max-width: 480px) {
  .verbatim-auth-modal {
    border-radius: 16px;
    padding: 22px 18px 18px;
  }

  .verbatim-userpill .verbatim-balance {
    display: none;
  }
}

.verbatim-result {
  z-index: 20;
  cursor: pointer;
  background-color: #100a22;
  background-image: radial-gradient(ellipse 38% 58% at 50% 45%, rgba(var(--rc-rgb, 136, 71, 255), .6) 0%, rgba(var(--rc-rgb, 136, 71, 255), .28) 42%, rgba(16, 10, 34, 0) 72%), repeating-conic-gradient(rgba(147, 108, 255, .14) 0% 25%, transparent 0% 50%), repeating-conic-gradient(rgba(147, 108, 255, .1) 0% 25%, transparent 0% 50%), linear-gradient(180deg, #16102e 0%, #0e0a1d 100%);
  background-position: 0 0, 12px 16px, 0 0, 0 0;
  background-size: 100% 100%, 36px 36px, 24px 24px, 100% 100%;
  border: 1px solid rgba(167, 139, 250, .22);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  animation: .35s both verbatim-result-in;
  display: flex;
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 14px;
  right: 14px;
  overflow: hidden;
}

.verbatim-result:before, .verbatim-result:after {
  content: "";
  width: 0;
  height: 0;
  filter: drop-shadow(0 0 6px rgba(var(--rc-rgb, 136, 71, 255), .9));
  border-left: 9px solid rgba(0, 0, 0, 0);
  border-right: 9px solid rgba(0, 0, 0, 0);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.verbatim-result:before {
  border-top: 11px solid rgb(var(--rc-rgb, 136, 71, 255));
  top: 0;
}

.verbatim-result:after {
  border-bottom: 11px solid rgb(var(--rc-rgb, 136, 71, 255));
  bottom: 0;
}

.verbatim-result-out {
  animation: .22s both verbatim-result-out;
}

@keyframes verbatim-result-in {
  from {
    opacity: 0;
    transform: scale(.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes verbatim-result-out {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(.98);
  }
}

.verbatim-result-inner {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 24px;
  display: flex;
}

.verbatim-result-img {
  object-fit: contain;
  max-width: 55%;
  height: 200px;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .55)) drop-shadow(0 0 40px rgba(var(--rc-rgb, 136, 71, 255), .35));
  margin-bottom: 16px;
  animation: .5s cubic-bezier(.2, 1.4, .4, 1) 50ms both verbatim-result-pop;
}

@keyframes verbatim-result-pop {
  from {
    opacity: 0;
    transform: translateY(14px)scale(.92);
  }

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

.verbatim-result-weapon {
  color: #8f93a8;
  font-size: 17px;
  font-weight: 500;
}

.verbatim-result-skin {
  color: rgb(var(--rc-rgb, 136, 71, 255));
  text-shadow: 0 0 22px rgba(var(--rc-rgb, 136, 71, 255), .6);
  font-size: 19px;
  font-weight: 600;
}

.verbatim-result-price {
  color: #fff;
  margin-top: 7px;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .verbatim-result {
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .verbatim-result-img {
    max-width: 70%;
    height: 130px;
    margin-bottom: 8px;
  }

  .verbatim-result-weapon {
    font-size: 14px;
  }

  .verbatim-result-skin {
    font-size: 16px;
  }

  .verbatim-result-price {
    font-size: 17px;
  }
}

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