* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden auto;
}

.solotto-container {
  background: linear-gradient(135deg, #010101 0%, #111 50%, #010101 100%);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100% - 40px);
  min-height: calc(100vh - 40px);
  display: flex;
  overflow-y: auto;
}

.copyright {
  background: #010101;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  display: flex;
}

.copyright a {
  color: #ffbc0c99;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s;
}

.copyright a:hover {
  color: #ffbc0c;
}

#solotto {
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  width: calc(100% - 30px);
  max-width: 1200px;
  height: calc(100% - 35px);
  margin: 15px 15px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  display: flex;
}

.top-bar {
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.view-switcher {
  background: #ffd20c1a;
  border: 1px solid #ffd20c33;
  border-radius: 8px;
  gap: .5rem;
  padding: .25rem;
  display: flex;
}

.view-btn {
  color: #ffbc0c;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: none;
  border: none;
  border-radius: 6px;
  padding: .5rem 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}

.view-btn:hover {
  color: #fff;
}

.view-btn.active {
  color: #010101;
  background: #ffbc0c;
}

.wallet-section {
  justify-content: flex-end;
  display: flex;
}

.wallet-btn {
  color: #ffbc0c;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #ffd20c1a;
  border: 1px solid #ffd20c33;
  border-radius: 6px;
  padding: .5rem 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}

.wallet-btn:hover {
  color: #fff;
  border-color: #ffd20c66;
}

.wallet-btn.connected {
  color: #010101;
  background: #ffbc0c;
  border-color: #0000;
}

.wallet-dropdown {
  position: relative;
}

.wallet-options {
  z-index: 100;
  background: #111;
  border: 1px solid #ffd20c4d;
  border-radius: 6px;
  margin-top: .5rem;
  position: absolute;
  top: 100%;
  right: 0;
  overflow: hidden;
}

.wallet-option {
  color: #ffbc0c;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  width: 100%;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
  display: block;
}

.wallet-option:hover {
  color: #fff;
  background: #ffd20c1a;
}

.hidden {
  display: none !important;
}

.card {
  text-align: center;
  background: #ffd20c0d;
  border: 1px solid #ffd20c4d;
  border-radius: 16px;
  flex: 1;
  width: 100%;
  padding: 2rem;
}

.info {
  color: #ffbc0c;
  min-height: 3rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}

.info strong {
  color: #fff;
}

.qty-section {
  margin-bottom: 1.5rem;
}

.qty-section label {
  color: #ffd20c;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  font-size: .85rem;
  display: block;
}

.qty-selector {
  justify-content: center;
  gap: .5rem;
  display: flex;
}

.qty-btn {
  color: #ffbc0c;
  cursor: pointer;
  background: none;
  border: 2px solid #ffd20c66;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
  transition: all .2s;
}

.qty-btn:hover {
  background: #ffd20c1a;
  border-color: #ffd20c;
}

.qty-btn.active {
  color: #010101;
  background: #ffbc0c;
  border-color: #0000;
  font-weight: 600;
}

.buy-btn {
  color: #010101;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #ffbc0c;
  border: none;
  border-radius: 8px;
  width: 100%;
  max-width: 300px;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: opacity .2s, transform .1s;
}

.buy-btn:hover:not(:disabled) {
  opacity: .9;
}

.buy-btn:active:not(:disabled) {
  transform: scale(.98);
}

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

.status {
  color: #ffbc0c;
  min-height: 1.5rem;
  margin-top: 1rem;
  font-size: .85rem;
}

.status.error {
  color: #ff6b6b;
}

.estimated-total {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.claims-list {
  flex-direction: column;
  gap: .75rem;
  max-height: 400px;
  display: flex;
  overflow-y: auto;
}

.claim-item {
  text-align: left;
  background: #ffd20c1a;
  border: 1px solid #ffd20c33;
  border-radius: 8px;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem;
  display: flex;
}

.claim-item-header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.claim-item-id {
  color: #fff;
  font-weight: 600;
}

.claim-item-status {
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 4px;
  padding: .25rem .5rem;
  font-size: .8rem;
}

.claim-item-status.active {
  color: #ffbc0c;
  background: #ffbc0c4d;
}

.claim-item-status.unclaimed {
  color: #ffd20c;
  background: #ffd20c4d;
}

.claim-item-status.completed {
  color: #7fda9f;
  background: #4fbb774d;
}

.claim-item-winner {
  color: #ffbc0c;
  word-break: break-all;
  font-size: .85rem;
}

.claim-item-winner strong {
  color: #fff;
}

.claim-item-ticket {
  color: #ffbc0c;
  font-size: .85rem;
}

.claim-item-ticket strong {
  color: #fff;
}

.claim-item-winner .winner-address-btn {
  vertical-align: middle;
}

.claim-signature-display {
  background: #4fbb771a;
  border: 1px solid #4fbb774d;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: 1rem;
  display: flex;
}

.claim-signature-display .sig-label {
  color: #7fda9f;
  font-size: .85rem;
}

.sig-close-btn {
  color: #ff6b6b;
  cursor: pointer;
  background: #ff64641a;
  border: 1px solid #ff64644d;
  border-radius: 6px;
  margin-left: .5rem;
  padding: .25rem .5rem;
  font-size: .9rem;
  transition: all .2s;
}

.sig-close-btn:hover {
  color: #fff;
  background: #ff646433;
  border-color: #ff646480;
}

.claim-btn {
  color: #010101;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #ffbc0c;
  border: none;
  border-radius: 6px;
  margin-top: .75rem;
  padding: .6rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  transition: opacity .2s, transform .1s;
}

.claim-btn:hover:not(:disabled) {
  opacity: .9;
}

.claim-btn:active:not(:disabled) {
  transform: scale(.98);
}

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

#view-watch {
  transition: all .3s;
  position: relative;
}

.watch-controls {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
}

.watch-controls-left {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.draw-date-display {
  color: #ffbc0c;
  font-size: .9rem;
  font-weight: 500;
}

.draw-date-display .draw-label {
  color: #ffbc0cb3;
  margin-right: .25rem;
}

.draw-date-display .draw-datetime {
  color: #fff;
}

.control-btn {
  color: #ffbc0c;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #ffd20c1a;
  border: 1px solid #ffd20c33;
  border-radius: 6px;
  padding: .5rem 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}

.control-btn:hover:not(:disabled) {
  color: #fff;
  border-color: #ffd20c66;
}

.control-btn.active {
  color: #010101;
  background: #ffbc0c;
  border-color: #0000;
}

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

.ticket-input {
  color: #ffbc0c;
  text-align: center;
  background: #ffd20c1a;
  border: 1px solid #ffd20c33;
  border-radius: 6px;
  width: 100px;
  padding: .5rem .75rem;
  font-size: .9rem;
  font-weight: 500;
}

.ticket-input::placeholder {
  color: #ffbc0c80;
}

.ticket-input:focus {
  border-color: #ffd20c66;
  outline: none;
}

.ticket-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ticket-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ticket-input[type="number"] {
  -moz-appearance: textfield;
}

.winner-display {
  color: #ffbc0c;
  align-items: center;
  gap: .5rem;
  padding: 0;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

.winner-display .winner-label {
  color: #ffbc0cb3;
}

.winner-address-btn {
  color: #fff;
  cursor: pointer;
  background: #ffd20c1a;
  border: 1px solid #ffd20c33;
  border-radius: 6px;
  padding: .25rem .5rem;
  font-family: monospace;
  font-size: .9rem;
  transition: all .2s;
}

.winner-address-btn:hover {
  background: #ffd20c33;
  border-color: #ffd20c66;
}

.winner-address-btn.copied {
  color: #7fda9f;
  background: #4fbb774d;
  border-color: #4fbb7780;
}

#view-watch.expanded {
  z-index: 1000;
  background: #010101;
  border-radius: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
}

.expand-btn {
  color: #ffbc0c;
  cursor: pointer;
  background: #ffd20c1a;
  border: 1px solid #ffd20c4d;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  transition: all .2s;
  display: flex;
}

.expand-btn:hover {
  color: #fff;
  background: #ffd20c33;
  border-color: #ffd20c80;
}

.expand-icon {
  line-height: 1;
}

#view-watch.expanded .expand-icon {
  transform: rotate(180deg);
}

.watch-content {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.watch-bottom-controls {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

#view-watch.expanded .watch-content {
  justify-content: center;
  align-items: center;
  height: calc(100% - 60px);
  display: flex;
}

#view-watch.expanded .ui-wheel-of-fortune {
  height: 85%;
  max-height: none;
  margin: 0;
}

:where(.ui-wheel-of-fortune) {
  all: unset;
  aspect-ratio: 1;
  direction: ltr;
  height: 80%;
  max-height: 490px;
  margin: -90px auto 0;
  display: grid;
  position: relative;
  container-type: inline-size;

  &:after {
    aspect-ratio: 1 / .866025;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    content: "";
    background-color: #fff;
    place-self: start center;
    height: 4cqi;
    max-height: 600px;
    position: absolute;
    scale: 1.4;
  }

  & > * {
    position: absolute;
  }

  & ul {
    all: unset;
    clip-path: inset(0 round 50%);
    place-content: center start;
    display: grid;
    inset: 0;

    & li {
      aspect-ratio: 1 / calc(2 * tan(180deg / var(--_items)));
      background: var(--_bg);
      clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
      color: #010101;
      rotate: calc(360deg / var(--_items) * calc(var(--_idx) - 1));
      transform-origin: 100%;
      -webkit-user-select: none;
      user-select: none;
      grid-area: 1 / -1;
      align-content: center;
      width: 50cqi;
      padding-left: 1ch;
      font-size: 5cqi;
      font-weight: 600;
      display: grid;

      &:nth-of-type(odd) {
        --_bg: #ffbc0c;
      }

      &:nth-of-type(2n) {
        --_bg: #111;
        color: #ffbc0c;
      }
    }

    &[data-itemCount="1"] {
      & li {
        aspect-ratio: 1;
        rotate: 0;
        clip-path: none;
        width: 100cqi;
        display: block;
      }
    }

    &[data-itemCount="2"] {
      & li {
        clip-path: none;
        height: 100cqi;
      }
    }

    &[data-itemCount="3"] {
      & li {
        aspect-ratio: 1 / 2;
        clip-path: polygon(-35% -100%, 100% 50%, 0% 145%);
      }
    }
  }
}

#fugazi-logo {
  width: 100%;
  max-width: 520px;
  height: auto;
}

@media (width <= 600px) {
  #fugazi-logo {
    max-width: 280px;
  }
}
/*# sourceMappingURL=solotto.800811f1.css.map */
