@keyframes lootbox-shine {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}
@keyframes lootbox-item-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes shine {
  0% {
    left: -100%;
    top: -100%;
  }
  100% {
    left: 100%;
    top: 100%;
  }
}
@keyframes winner-glow {
  0% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  }
}
@keyframes push-right {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(35px) scale(0.97);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-in-horizontal {
  0% {
    transform: translateX(-130%) scale(0.9);
    opacity: 0;
  }
  60% {
    transform: translateX(5%) scale(1.02);
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 20px rgba(92, 64, 207, 0.6), 0 0 40px rgba(92, 64, 207, 0.3);
  }
}
@keyframes rainbow {
  0%, 100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.lootbox-main {
  background: linear-gradient(120deg, #1a1a1a 0%, #0e0e10 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .lootbox-main {
    background: linear-gradient(120deg, #1a1a1a 0%, #0b0b0d 100%);
  }
}

.lootbox-button-container-main {
  margin: 100px auto;
}
@media (max-width: 576px) {
  .lootbox-button-container-main {
    margin-top: 40px;
    margin-bottom: auto;
  }
}
@media (min-width: 576px) {
  .lootbox-button-container-main {
    margin: 82px auto;
  }
}
.lootbox-button-container-main .lootbox-button-container {
  max-width: 300px;
  text-align: center;
}
.lootbox-button-container-main .lootbox-name-text {
  text-align: center;
  font-size: 24px;
  color: #fff;
}

.lootbox-image {
  filter: drop-shadow(0 0 15px rgba(13, 110, 253, 0.4));
  transition: transform 0.3s ease;
  width: 200px;
}
@media (min-width: 576px) {
  .lootbox-image {
    width: 300px;
  }
}
.lootbox-image:hover {
  transform: scale(1.02);
}

.lootbox-glow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.2), transparent 12%);
  filter: blur(25px);
  z-index: 0;
  pointer-events: none;
}

.card {
  border-radius: 8px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  overflow: hidden;
}

.lootbox-shine-button {
  background: linear-gradient(to right, #0d6efd, #0b5ed7);
  position: relative;
  overflow: hidden;
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease;
  border-radius: 6px;
  font-size: 2.2rem;
  height: 60px;
  text-align: -webkit-center;
}
.lootbox-shine-button:hover {
  background: linear-gradient(to right, #0d6efd, #0b5ed7);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.25);
}
.lootbox-shine-button:focus {
  outline: none;
}
.lootbox-shine-button:disabled {
  background: linear-gradient(to right, #0d6efd, #0b5ed7);
  color: #e7e7e7;
  cursor: not-allowed;
}
.lootbox-shine-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  z-index: 1;
  opacity: 0.6;
}
.lootbox-shine-button:hover::after {
  animation: lootbox-shine 1.5s ease;
  opacity: 1;
}

.lootbox-code-entry-button {
  min-height: 48px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lootbox-code-entry-button:hover, .lootbox-code-entry-button:focus {
  color: #0b0d12;
  background: rgba(255, 255, 255, 0.92);
}

.lootbox-btn-back {
  width: 63px;
  height: 58px;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  font-weight: 500;
  padding: 6px 12px;
  transition: color 0.15s, background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
  font-size: 25px;
  outline: none;
  margin: 10px 16px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.lootbox-btn-back:hover, .lootbox-btn-back:focus {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}
.lootbox-btn-back:hover i, .lootbox-btn-back:focus i {
  color: #000;
}
.lootbox-btn-back:disabled, .lootbox-btn-back[aria-disabled=true] {
  color: #b8daff;
  background: transparent;
  border-color: #b8daff;
  cursor: not-allowed;
  opacity: 0.65;
}
.lootbox-btn-back:active {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
  color: #fff;
}

.lootbox-balance-container {
  margin: 10px 16px;
  padding: 8px 16px;
  background-color: #1e1e1e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid #3e4349;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 40px;
}
@media (min-width: 576px) {
  .lootbox-balance-container {
    font-size: 16px;
  }
}
.lootbox-balance-container .lootbox-balance {
  text-wrap: nowrap;
  padding-left: 5px;
}

.lootbox-preview-container {
  width: 300px;
  transition: opacity 0.3s ease;
  align-content: center;
}
.lootbox-preview-container.hidden {
  opacity: 0;
  pointer-events: none;
}
.lootbox-preview-container .lootbox-image-container {
  top: 0;
}
@media (min-width: 576px) {
  .lootbox-preview-container .lootbox-image-container {
    top: 45px;
  }
}
@media (min-width: 768px) {
  .lootbox-preview-container .lootbox-image-container {
    top: 45px;
  }
}
@media (min-width: 992px) {
  .lootbox-preview-container .lootbox-image-container {
    top: 0;
  }
}

.lootbox-animation-wrapper {
  position: absolute;
  right: 0;
  left: 0;
  top: auto;
  width: 100%;
  background: #0d0d11;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lootbox-animation-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.lootbox-open-container {
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .lootbox-open-container {
    height: 320px;
    margin-top: 1rem;
  }
}
@media (min-width: 992px) {
  .lootbox-open-container {
    height: 330px;
  }
}

.lootbox-animation-container {
  height: 300px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.9) 100%);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 576px) {
  .lootbox-animation-container {
    height: 180px;
  }
}

.lootbox-scroll-container {
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transform-style: preserve-3d;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.lootbox-scroll-item {
  image-rendering: auto;
  backface-visibility: hidden;
  will-change: transform;
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  margin: 0 0.5rem;
  padding: 0.5rem;
  transform: scale(0.85);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .lootbox-scroll-item {
    width: 150px;
    height: 150px;
  }
}

.lootbox-scroll-item-rarity-legendary::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 12px;
  opacity: 0;
  animation: lootbox-item-pulse 2s infinite;
  box-shadow: 0 0 5px 0 #ff8501;
}

.lootbox-scroll-item-rarity-ultimate::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 12px;
  opacity: 0;
  animation: lootbox-item-pulse 2s infinite;
  box-shadow: 0 0 55px 17px rgba(205, 0, 0, 0.7607843137);
}

@keyframes lootbox-item-pulse {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}
.lootbox-item-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  padding: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}
.lootbox-item-content .lootbox-scroll-item-image-container {
  max-width: 100px;
  height: 85px;
}
@media (max-width: 576px) {
  .lootbox-item-content .lootbox-scroll-item-image-container {
    height: 65px;
  }
}
.lootbox-item-content img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
  transition: transform 0.3s ease;
}

.lootbox-item-animation-details {
  position: static;
  width: 100%;
  text-align: center;
}
.lootbox-item-animation-details .lootbox-item-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: translateY(5px);
  transition: transform 0.3s ease;
}
.lootbox-item-animation-details .lootbox-item-value {
  font-size: 2rem;
  font-weight: bold;
  color: #2cc09c;
  transform: translateY(5px);
  transition: transform 0.3s ease;
}

.lootbox-item-common {
  box-shadow: 0 0 20px rgba(145, 159, 156, 0.5);
}

.lootbox-border-common {
  border-top: 14px solid #919f9c;
}

.lootbox-text-common {
  color: #919f9c;
}

.lootbox-item-uncommon {
  box-shadow: 0 0 20px rgba(44, 192, 156, 0.5);
}

.lootbox-border-uncommon {
  border-top: 14px solid #2cc09c;
}

.lootbox-text-uncommon {
  color: #2cc09c;
}

.lootbox-item-rare {
  box-shadow: 0 0 20px rgba(38, 169, 239, 0.5);
}

.lootbox-border-rare {
  border-top: 14px solid #26a9ef;
}

.lootbox-text-rare {
  color: #26a9ef;
}

.lootbox-item-epic {
  box-shadow: 0 0 20px rgba(148, 69, 174, 0.5);
}
.lootbox-item-epic::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: lootbox-item-shine 2s infinite;
}

.lootbox-border-epic {
  border-top: 14px solid #9445ae;
}

.lootbox-text-epic {
  color: #9445ae;
}

.lootbox-item-legendary {
  box-shadow: 0 0 20px rgba(255, 133, 1, 0.5);
}
.lootbox-item-legendary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: lootbox-item-shine 2s infinite;
}

.lootbox-border-legendary {
  border-top: 14px solid #ff8501;
}

.lootbox-text-legendary {
  color: #ff8501;
}

.lootbox-item-ultimate {
  box-shadow: 0 0 20px rgba(205, 0, 0, 0.5);
}
.lootbox-item-ultimate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: lootbox-item-shine 2s infinite;
}

.lootbox-border-ultimate {
  border-top: 14px solid rgba(205, 0, 0, 0.7607843137);
}

.lootbox-text-ultimate {
  color: rgba(205, 0, 0, 0.7607843137);
}

.lootbox-pointer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  pointer-events: none;
  z-index: 10;
}
.lootbox-pointer::before, .lootbox-pointer::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0), rgb(255, 215, 0), rgba(255, 215, 0, 0));
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
  transform: translateX(-50%);
}
.lootbox-pointer::before {
  top: 0;
}
.lootbox-pointer::after {
  bottom: 0;
}

.lootbox-pointer-line {
  position: absolute;
  top: 0;
  bottom: 15px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.2), rgb(255, 215, 0) 20%, rgb(255, 215, 0) 80%, rgba(255, 215, 0, 0.2));
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.lootbox-win-popup {
  position: absolute;
  top: auto;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: auto;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2;
}
.lootbox-win-popup.active {
  opacity: 1;
  visibility: visible;
}
.lootbox-win-popup.active .lootbox-win-content {
  transform: translateY(0);
  opacity: 1;
}

.lootbox-item-card-rarity-container {
  position: absolute;
  top: -14px;
}

.lootbox-win-content {
  background: white;
  border-radius: 10px;
  padding: 1rem 2rem 2rem 2rem;
  border-width: 22px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  width: 250px;
  max-height: 297px;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .lootbox-win-content {
    max-height: 180px;
    width: 210px;
  }
}
.lootbox-win-content .lootbox-win-title {
  color: #385651;
  font-size: 42px;
  font-weight: bold;
}
.lootbox-win-content .lootbox-win-item {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.lootbox-win-content .lootbox-win-item img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}
@media (max-width: 576px) {
  .lootbox-win-content .lootbox-win-item img {
    width: 120px;
    height: 120px;
  }
}
.lootbox-win-content .lootbox-win-details {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-top: 10px;
  padding-top: 24px;
  position: relative;
  background: #ecf1f0;
  border-radius: 12px;
  line-height: 1.4;
  box-shadow: 0 2px 0px -1px #c7c7c7;
  opacity: 0;
  transform: translateY(20px);
  animation: appear 0.5s ease forwards;
  min-height: 240px;
}
@media (max-width: 576px) {
  .lootbox-win-content .lootbox-win-details {
    padding-top: 20px;
    min-height: 128px;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.lootbox-win-content .lootbox-win-details .lootbox-popup-item-text-rarity {
  position: absolute;
  color: white;
  padding: 8px;
  border-radius: 12px;
  top: 28%;
  left: 40%;
}
.lootbox-win-content .lootbox-win-details .lootbox-popup-item-text-name {
  height: 22px;
  color: black;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .lootbox-win-content .lootbox-win-details .lootbox-popup-item-text-name {
    height: 20px;
    font-size: 0.8rem;
  }
}
.lootbox-win-content .lootbox-win-details .lootbox-popup-item-text-value {
  height: 47px;
  background: white;
  border-radius: 12px;
  color: black;
  font-weight: bold;
  font-size: 26px;
  padding: 0.8rem 1.3rem;
  box-shadow: 0 4px 0px -1px #c7c7c7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 576px) {
  .lootbox-win-content .lootbox-win-details .lootbox-popup-item-text-value {
    font-size: 20px;
    height: 35px;
  }
}
.lootbox-win-content .lootbox-win-details .lootbox-win-popup-image {
  max-width: 100%;
  padding-top: 4px;
  max-height: 100px;
}
@media (max-width: 576px) {
  .lootbox-win-content .lootbox-win-details .lootbox-win-popup-image {
    max-height: 40px;
  }
}
.lootbox-win-content .lootbox-win-star-icon {
  font-size: 28px;
  padding: 0 4px;
}
.lootbox-win-content .lootbox-popup-bottom-section {
  width: 100%;
  padding: 22px 0 12px 0;
}
.lootbox-win-content .lootbox-popup-bottom-section .lootbox-win-close {
  width: 100%;
  font-size: 28px;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s ease;
}
.lootbox-win-content .lootbox-popup-bottom-section .lootbox-win-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.lootbox-star-common {
  color: #919f9c;
}

.lootbox-star-uncommon {
  color: #2cc09c;
}

.lootbox-star-rare {
  color: #26a9ef;
}

.lootbox-star-epic {
  color: #9445ae;
}

.lootbox-star-legendary {
  color: #ff8501;
}

.lootbox-star-ultimate {
  color: rgba(205, 0, 0, 0.7607843137);
}

.lootbox-win-popup-line {
  background: white;
  width: 100%;
  height: 0;
  border-top: 2px dashed #dee2e6;
}

.error-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.error-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.error-popup {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.error-popup h2 {
  font-size: 1.5rem;
  color: #dc3545;
  margin-bottom: 15px;
}
.error-popup p {
  color: black;
}
.error-popup button {
  margin-top: 15px;
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
.error-popup button:hover {
  background-color: #d32535;
}

.lootbox-single-ticket-image {
  width: 50%;
}
@media (min-width: 576px) {
  .lootbox-single-ticket-image {
    width: 100%;
  }
}

.sound-controls {
  margin: 10px 16px;
  z-index: 2;
}
.sound-controls #music-label {
  color: #fff;
}
.sound-controls #effects-label {
  color: #fff;
}
.sound-controls .sound-control-btn {
  width: 66px;
  height: 58px;
  margin-left: 0.5rem;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 25px;
  transition: background-color 0.3s ease;
}
.sound-controls .sound-control-btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}

.lootbox-latest-wins-container {
  justify-content: center;
}
.lootbox-latest-wins-container .lootbox-latest-wins-sub {
  width: 100%;
}

.latest-wins-container {
  width: 100%;
  background: linear-gradient(135deg, #0d0d11, #1a1a1a);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 40px rgba(92, 64, 207, 0.15) inset;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  isolation: isolate;
}
.latest-wins-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: -1;
}

.latest-wins-header {
  padding: 1rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(92, 64, 207, 0.75), rgba(108, 81, 223, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.latest-wins-header::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  animation: shine 8s infinite linear;
  z-index: 1;
}
.latest-wins-header h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .latest-wins-header h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 576px) {
  .latest-wins-header h3 {
    font-size: 1.4rem;
  }
}

.latest-wins-content {
  padding: 1rem;
}

.latest-wins-loading,
.latest-wins-empty {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 150px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
}

.horizontal-wins-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}
.horizontal-wins-wrapper::before, .horizontal-wins-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.horizontal-wins-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0));
}
.horizontal-wins-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0));
}

.horizontal-wins-scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  position: relative;
}
.horizontal-wins-scroll::-webkit-scrollbar {
  height: 6px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
.horizontal-wins-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 0 10px;
}
.horizontal-wins-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(92, 64, 207, 0.7), rgba(108, 81, 223, 0.7));
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}
.horizontal-wins-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, rgba(108, 81, 223, 0.8), #907ce7);
}

.latest-win-card {
  flex: 0 0 auto;
  width: 140px;
  background: linear-gradient(135deg, rgba(45, 47, 60, 0.85), rgba(30, 32, 45, 0.95));
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform-origin: center bottom;
}
.latest-win-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  z-index: 1;
  pointer-events: none;
}
.latest-win-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 2;
}
.latest-win-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.15), 0 -1px 1px rgba(255, 255, 255, 0.05) inset;
}
.latest-win-card.latest-win-new {
  animation: slide-in-horizontal 0.5s cubic-bezier(0.17, 0.67, 0.35, 1.12), pulse-glow 2s ease;
  z-index: 10;
}
.latest-win-card.latest-win-push {
  animation: push-right 0.5s cubic-bezier(0.17, 0.67, 0.35, 1.12);
}
.latest-win-card.common-win::after {
  background: linear-gradient(90deg, #768783, #919f9c);
}
.latest-win-card.uncommon-win::after {
  background: linear-gradient(90deg, #22977a, #2cc09c);
}
.latest-win-card.rare-win::after {
  background: linear-gradient(90deg, #108fd2, #26a9ef);
}
.latest-win-card.epic-win::after {
  background: linear-gradient(90deg, #753789, #9445ae);
}
.latest-win-card.legendary-win::after {
  background: linear-gradient(90deg, #cd6b00, #ff8501);
}
.latest-win-card.ultimate-win::after {
  background: linear-gradient(90deg, rgba(154, 0, 0, 0.7607843137), rgba(205, 0, 0, 0.7607843137));
}
@media (max-width: 576px) {
  .latest-win-card {
    width: 94px;
  }
}
.latest-win-card .win-card-image {
  width: 100%;
  height: 70px;
  padding: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.7rem;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) inset;
}
.latest-win-card .win-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.latest-win-card .win-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}
@media (max-width: 576px) {
  .latest-win-card .win-card-image {
    height: 48px;
  }
}
.latest-win-card:hover .win-card-image img {
  transform: scale(1.05);
}
.latest-win-card .win-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
  position: relative;
  z-index: 3;
}
.latest-win-card .win-card-item-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02rem;
}
@media (max-width: 576px) {
  .latest-win-card .win-card-item-name {
    font-size: 0.99rem;
  }
}
.latest-win-card .win-card-player {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02rem;
  position: relative;
}
.latest-win-card .win-card-rarity {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.latest-win-card .win-text-common {
  color: #919f9c;
  text-shadow: 0 0 10px rgba(145, 159, 156, 0.3);
}
.latest-win-card .win-text-uncommon {
  color: #2cc09c;
  text-shadow: 0 0 10px rgba(44, 192, 156, 0.3);
}
.latest-win-card .win-text-rare {
  color: #26a9ef;
  text-shadow: 0 0 10px rgba(38, 169, 239, 0.3);
}
.latest-win-card .win-text-epic {
  color: #9445ae;
  text-shadow: 0 0 10px rgba(148, 69, 174, 0.3);
}
.latest-win-card .win-text-legendary {
  color: #ff8501;
  text-shadow: 0 0 10px rgba(255, 133, 1, 0.3);
}
.latest-win-card .win-text-ultimate {
  color: rgba(205, 0, 0, 0.7607843137);
  text-shadow: 0 0 10px rgba(205, 0, 0, 0.3);
}
.latest-win-card .win-card-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2cc09c;
  text-shadow: 0 0 10px rgba(44, 192, 156, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.1rem;
  letter-spacing: 0.02rem;
}
@media (max-width: 576px) {
  .latest-win-card .win-card-value {
    font-size: 1.19rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .latest-wins-container,
.latest-win-card {
    will-change: transform, opacity;
  }
}
.latest-wins-mobile-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(90deg, rgba(92, 64, 207, 0.75), rgba(108, 81, 223, 0.6));
  border: none;
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.latest-wins-mobile-menu i {
  font-size: 1.25em;
  margin-left: 0.5em;
  transition: transform 0.2s;
}

.latest-wins-content-wrapper {
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  will-change: max-height, opacity;
}
.latest-wins-content-wrapper.show {
  max-height: 1000px;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .latest-wins-mobile-menu {
    display: none;
  }
  .latest-wins-content-wrapper {
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
  .latest-wins-header {
    display: block;
  }
}
.lootbox-item-card-rarity {
  color: white;
  border-radius: 8px;
  padding: 7px 12px;
  display: inline-block;
  text-align: center;
  text-transform: lowercase;
}

.lootbox-item-popup-rarity {
  color: white;
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-block;
  text-align: center;
  text-transform: lowercase;
  font-size: 1.5rem;
}

.lootbox-item-card-name {
  font-weight: bold;
  color: black;
}
.lootbox-item-card-name .lootbox-item-card-name-text {
  height: 30px;
}
@media (max-width: 576px) {
  .lootbox-item-card-name {
    font-size: 12px;
  }
}

.lootbox-item-card-value {
  font-size: 25px;
  color: black;
  font-weight: bold;
  display: contents;
}

.lootbox-item-card-value-text {
  min-width: 120px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 0px -1px #c7c7c7;
}
@media (min-width: 461px) {
  .lootbox-item-card-value-text {
    min-width: 168px;
  }
}

.lootbox-item-card-image-container {
  align-content: center;
  width: 130px;
  height: 100px;
}
@media (max-width: 576px) {
  .lootbox-item-card-image-container {
    width: 80px;
    height: 76px;
  }
}

.lootbox-item-card-image {
  max-height: 100%;
  max-width: 100%;
}

.lootbox-item-card-chance {
  width: 100%;
  content: "";
  color: #45615c;
  font-size: 11px;
}

.lootbox-item-card {
  background: #ecf1f0;
  box-shadow: 0 2px 0px -1px #c7c7c7;
}

.lootbox-items-grid-main {
  background: white;
  border-radius: 12px 12px 0 0;
  margin-top: 90px;
}
@media (max-width: 576px) {
  .lootbox-items-grid-main {
    margin-top: 25px;
  }
}

.lootbox-item-card-common .lootbox-item-card-rarity {
  background-color: #919f9c;
  border: 1px solid #919f9c;
}

.lootbox-item-card-uncommon .lootbox-item-card-rarity {
  background-color: #2cc09c;
  border: 1px solid #2cc09c;
}

.lootbox-item-card-rare .lootbox-item-card-rarity {
  background-color: #26a9ef;
  border: 1px solid #26a9ef;
}

.lootbox-item-card-epic .lootbox-item-card-rarity {
  background-color: #9445ae;
  border: 1px solid #9445ae;
}

.lootbox-item-card-legendary .lootbox-item-card-rarity {
  background-color: #ff8501;
  border: 1px solid #ff8501;
}

.lootbox-item-card-ultimate .lootbox-item-card-rarity {
  background-color: rgba(205, 0, 0, 0.7607843137);
  border: 1px solid rgba(205, 0, 0, 0.7607843137);
}

.lootbox-article-bottom-container {
  background: linear-gradient(120deg, rgb(26, 26, 26) 0%, rgb(14, 14, 16) 100%);
}

.lootbox-scroll-item-winner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}

/* Top banner mobile app workaround*/
#app.app-install-banner .lootbox-latest-wins-container .latest-wins-container {
  margin-top: 0;
}
@media (min-width: 361px) {
  #app.app-install-banner .lootbox-latest-wins-container .latest-wins-container {
    margin-top: 9px;
  }
}
@media (min-width: 401px) {
  #app.app-install-banner .lootbox-latest-wins-container .latest-wins-container {
    margin-top: 26px;
  }
}
@media (min-width: 768px) {
  #app.app-install-banner .lootbox-latest-wins-container .latest-wins-container {
    margin-top: 0;
  }
}

#component--lootbox-redeem .lootbox-redeem-page {
  color: #102033;
}
#component--lootbox-redeem .lootbox-redeem-hero {
  background: radial-gradient(circle at 85% -10%, rgba(13, 110, 253, 0.25), transparent 44%), radial-gradient(circle at 5% 0%, rgba(14, 165, 233, 0.22), transparent 40%), linear-gradient(145deg, #0f172a 0%, #0b2a3f 52%, #13314f 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(2, 12, 27, 0.35);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  #component--lootbox-redeem .lootbox-redeem-hero {
    padding: 2.5rem;
  }
}
#component--lootbox-redeem .lootbox-redeem-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}
#component--lootbox-redeem .lootbox-redeem-title {
  font-size: 1.9rem;
  line-height: 1.1;
  color: #f8fbff;
}
@media (min-width: 768px) {
  #component--lootbox-redeem .lootbox-redeem-title {
    font-size: 2.4rem;
  }
}
#component--lootbox-redeem .lootbox-redeem-subtitle {
  color: rgba(235, 245, 255, 0.88);
  max-width: 520px;
  font-size: 1.03rem;
}
#component--lootbox-redeem .lootbox-redeem-form-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(242, 249, 255, 0.96) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 15px 35px rgba(0, 16, 38, 0.18);
}
@media (min-width: 768px) {
  #component--lootbox-redeem .lootbox-redeem-form-card {
    padding: 1.25rem;
  }
}
#component--lootbox-redeem .lootbox-redeem-label {
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
#component--lootbox-redeem .lootbox-redeem-input {
  border: 1px solid #c9d7e6;
  color: #0f172a;
  background: #fff;
  min-height: 52px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
}
#component--lootbox-redeem .lootbox-redeem-input::-moz-placeholder {
  color: #7d8ea3;
  font-weight: 500;
}
#component--lootbox-redeem .lootbox-redeem-input::placeholder {
  color: #7d8ea3;
  font-weight: 500;
}
#component--lootbox-redeem .lootbox-redeem-input:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.2);
}
#component--lootbox-redeem .lootbox-redeem-input-row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}
#component--lootbox-redeem .lootbox-redeem-scan-button {
  min-width: 56px;
  border: 1px solid #c9d7e6;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
#component--lootbox-redeem .lootbox-redeem-scan-button:hover, #component--lootbox-redeem .lootbox-redeem-scan-button:focus {
  color: #0f172a;
  border-color: #1d4ed8;
  background: linear-gradient(180deg, #ffffff 0%, #dbeafe 100%);
}
#component--lootbox-redeem .lootbox-redeem-file-input {
  display: none;
}
#component--lootbox-redeem .lootbox-redeem-scanner-panel {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, #0f172a 0%, #111f35 100%);
  padding: 0.85rem;
}
#component--lootbox-redeem .lootbox-redeem-scanner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #f8fbff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#component--lootbox-redeem .lootbox-redeem-scanner-close {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}
#component--lootbox-redeem .lootbox-redeem-scanner-close:hover, #component--lootbox-redeem .lootbox-redeem-scanner-close:focus {
  color: #0f172a;
  background: #ffffff;
}
#component--lootbox-redeem .lootbox-redeem-scanner-video {
  display: block;
  width: 100%;
  min-height: 240px;
  max-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  background: #020617;
}
#component--lootbox-redeem .lootbox-redeem-scanner-help {
  margin-top: 0.75rem;
  color: rgba(235, 245, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}
#component--lootbox-redeem .lootbox-redeem-scanner-upload-button {
  border: 1px solid rgba(191, 219, 254, 0.4);
  border-radius: 999px;
  color: #eff6ff;
  background: rgba(59, 130, 246, 0.18);
  font-weight: 600;
}
#component--lootbox-redeem .lootbox-redeem-scanner-upload-button:hover, #component--lootbox-redeem .lootbox-redeem-scanner-upload-button:focus {
  color: #0f172a;
  background: #ffffff;
}
#component--lootbox-redeem .lootbox-redeem-submit {
  border: none;
  border-radius: 12px;
  min-height: 50px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb 0%, #0284c7 100%);
  box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#component--lootbox-redeem .lootbox-redeem-submit:hover, #component--lootbox-redeem .lootbox-redeem-submit:focus {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 15px 25px rgba(30, 64, 175, 0.32);
}
#component--lootbox-redeem .lootbox-redeem-help {
  color: #526278;
  font-size: 0.9rem;
  line-height: 1.45;
}
#component--lootbox-redeem .lootbox-redeem-section-title {
  color: #eef6ff;
  font-size: 1.4rem;
  font-weight: 700;
}
#component--lootbox-redeem .lootbox-redeem-showcase-loading {
  border: 1px dashed rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.25);
  border-radius: 12px;
  color: #d8e9fb;
  padding: 1rem;
  text-align: center;
}
#component--lootbox-redeem .lootbox-redeem-showcase-card {
  display: block;
  height: 100%;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(234, 244, 255, 0.95) 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(2, 12, 27, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#component--lootbox-redeem .lootbox-redeem-showcase-card:hover, #component--lootbox-redeem .lootbox-redeem-showcase-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(2, 12, 27, 0.2);
}
#component--lootbox-redeem .lootbox-redeem-showcase-image-wrap {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: radial-gradient(circle at 50% 5%, rgba(37, 99, 235, 0.2) 0%, rgba(255, 255, 255, 0) 70%), linear-gradient(180deg, #f8fbff 0%, #e8f2ff 100%);
}
#component--lootbox-redeem .lootbox-redeem-showcase-image {
  width: 100%;
  max-width: 170px;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(37, 99, 235, 0.25));
}
#component--lootbox-redeem .lootbox-redeem-showcase-content {
  padding: 0.95rem 1rem 1.05rem;
}
#component--lootbox-redeem .lootbox-redeem-showcase-name {
  margin: 0;
  color: #0f172a;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.25;
}
#component--lootbox-redeem .lootbox-redeem-showcase-price {
  margin-top: 0.45rem;
  color: #1d4ed8;
  font-size: 0.95rem;
  font-weight: 700;
}
#component--lootbox-redeem .lootbox-redeem-success-bar {
  background: linear-gradient(90deg, #14532d 0%, #166534 100%);
  border: 1px solid rgba(187, 247, 208, 0.35);
  border-radius: 12px;
  color: #f0fdf4;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
#component--lootbox-redeem .lootbox-redeem-success-text {
  font-size: 0.95rem;
  font-weight: 600;
}

#component--lootbox-redeem .lootbox-redeem-page {
  position: relative;
  min-height: 100%;
  color: #f8fbff;
  background: linear-gradient(180deg, rgba(3, 5, 16, 0.2), rgba(2, 4, 13, 0.82)), url("/images/base/lootbox/redeem-bg-neon.webp") center top/cover no-repeat, radial-gradient(circle at 50% 0%, rgba(38, 89, 255, 0.24), transparent 38%), radial-gradient(circle at 0% 50%, rgba(255, 58, 162, 0.18), transparent 32%), radial-gradient(circle at 100% 50%, rgba(168, 85, 247, 0.2), transparent 34%);
}
#component--lootbox-redeem .lootbox-redeem-hero {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
#component--lootbox-redeem .lootbox-redeem-stage {
  position: relative;
  padding: 1rem 0 0;
}
#component--lootbox-redeem .lootbox-redeem-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(96, 79, 255, 0.16);
  color: #f4ebff;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
#component--lootbox-redeem .lootbox-redeem-title {
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  line-height: 0.95;
  font-weight: 900;
  color: #ffffff;
  text-wrap: balance;
}
#component--lootbox-redeem .lootbox-redeem-title::after {
  content: "";
  display: block;
  width: 160px;
  height: 6px;
  margin: 1.1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4fa8 0%, #8b5dff 50%, #2e97ff 100%);
}
#component--lootbox-redeem .lootbox-redeem-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(225, 233, 255, 0.82);
  font-size: 1.08rem;
}
#component--lootbox-redeem .lootbox-redeem-decor {
  position: relative;
  min-height: 420px;
}
#component--lootbox-redeem .lootbox-redeem-orb {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 18, 54, 0.78), rgba(7, 10, 31, 0.62));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}
#component--lootbox-redeem .lootbox-redeem-orb-gamepad {
  top: 40px;
  left: 0;
  width: 230px;
  height: 170px;
  transform: rotate(-18deg);
  color: #6fb0ff;
  font-size: 4.8rem;
  box-shadow: 0 0 70px rgba(122, 92, 255, 0.26);
}
#component--lootbox-redeem .lootbox-redeem-orb-airpods {
  left: 22px;
  bottom: 38px;
  width: 155px;
  height: 155px;
  color: #f7d9ff;
  font-size: 4rem;
  box-shadow: 0 0 55px rgba(255, 92, 179, 0.18);
}
#component--lootbox-redeem .lootbox-redeem-orb-coin {
  bottom: 8px;
  right: 12px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd87c, #ff9e1b 68%, #b85d00 100%);
  color: #fff7dc;
  font-size: 2.2rem;
  box-shadow: 0 0 45px rgba(255, 174, 66, 0.28);
}
#component--lootbox-redeem .lootbox-redeem-orb-phone {
  top: 26px;
  right: 28px;
  width: 155px;
  height: 240px;
  transform: rotate(18deg);
  color: #d5c1ff;
  font-size: 5rem;
  box-shadow: 0 0 70px rgba(255, 87, 176, 0.22);
}
#component--lootbox-redeem .lootbox-redeem-orb-headset {
  right: 0;
  bottom: 0;
  width: 235px;
  height: 210px;
  color: #8ab6ff;
  font-size: 5rem;
  box-shadow: 0 0 72px rgba(62, 148, 255, 0.18);
}
#component--lootbox-redeem .lootbox-redeem-orb-token {
  top: 52px;
  left: 22px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd87c, #ff9e1b 68%, #b85d00 100%);
  color: #fff7dc;
  font-size: 2.1rem;
  box-shadow: 0 0 45px rgba(255, 174, 66, 0.28);
}
#component--lootbox-redeem .lootbox-redeem-form-card {
  position: relative;
  max-width: 620px;
  padding: 2.4rem 1.5rem 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(92, 125, 255, 0.32);
  background: linear-gradient(180deg, rgba(7, 12, 39, 0.86), rgba(7, 11, 31, 0.8));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 60px rgba(53, 110, 255, 0.14);
}
#component--lootbox-redeem .lootbox-redeem-gift-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-left: -35px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 79, 168, 0.38), rgba(124, 92, 255, 0.42));
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 16px 34px rgba(109, 82, 255, 0.26);
}
#component--lootbox-redeem .lootbox-redeem-label {
  display: block;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
#component--lootbox-redeem .lootbox-redeem-input {
  min-height: 68px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 8, 28, 0.74);
  color: #ffffff;
}
#component--lootbox-redeem .lootbox-redeem-input::-moz-placeholder {
  color: rgba(170, 180, 220, 0.72);
}
#component--lootbox-redeem .lootbox-redeem-input::placeholder {
  color: rgba(170, 180, 220, 0.72);
}
#component--lootbox-redeem .lootbox-redeem-scan-button {
  min-width: 68px;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(5, 9, 28, 0.88);
  color: #f0f4ff;
}
#component--lootbox-redeem .lootbox-redeem-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 68px;
  border-radius: 18px;
  background: linear-gradient(90deg, #ff4fa8 0%, #7f5cff 55%, #2f95ff 100%);
  box-shadow: 0 18px 34px rgba(104, 77, 255, 0.26);
}
#component--lootbox-redeem .lootbox-redeem-help {
  color: rgba(210, 221, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.6;
}
#component--lootbox-redeem .lootbox-redeem-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #eef2ff;
  font-weight: 700;
  opacity: 0.9;
  text-decoration: none;
}
#component--lootbox-redeem .lootbox-redeem-showcase {
  max-width: 1120px;
  margin: 0 auto;
}
#component--lootbox-redeem .lootbox-redeem-section-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
}
#component--lootbox-redeem .lootbox-redeem-showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 255px;
  padding: 1.35rem;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(10, 16, 48, 0.76), rgba(8, 11, 31, 0.84));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  cursor: pointer;
  z-index: 1;
}
#component--lootbox-redeem .lootbox-redeem-showcase-card--1 {
  box-shadow: inset 0 0 0 1px rgba(131, 241, 107, 0.42), 0 24px 60px rgba(0, 0, 0, 0.28);
}
#component--lootbox-redeem .lootbox-redeem-showcase-card--2 {
  box-shadow: inset 0 0 0 1px rgba(52, 149, 255, 0.42), 0 24px 60px rgba(0, 0, 0, 0.28);
}
#component--lootbox-redeem .lootbox-redeem-showcase-card--3 {
  box-shadow: inset 0 0 0 1px rgba(255, 177, 59, 0.42), 0 24px 60px rgba(0, 0, 0, 0.28);
}
#component--lootbox-redeem .lootbox-redeem-showcase-top,
#component--lootbox-redeem .lootbox-redeem-showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#component--lootbox-redeem .lootbox-redeem-showcase-kicker {
  color: rgba(213, 221, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
#component--lootbox-redeem .lootbox-redeem-showcase-name {
  margin: 0.4rem 0 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
#component--lootbox-redeem .lootbox-redeem-showcase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}
#component--lootbox-redeem .lootbox-redeem-showcase-price-box {
  margin: 1.25rem 0 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 79, 168, 0.2), rgba(47, 149, 255, 0.2));
}
#component--lootbox-redeem .lootbox-redeem-showcase-card--1 .lootbox-redeem-showcase-price-box {
  background: linear-gradient(180deg, #94ff73, #60c44e);
}
#component--lootbox-redeem .lootbox-redeem-showcase-card--2 .lootbox-redeem-showcase-price-box {
  background: linear-gradient(180deg, #4dc7ff, #2b92ff);
}
#component--lootbox-redeem .lootbox-redeem-showcase-card--3 .lootbox-redeem-showcase-price-box {
  background: linear-gradient(180deg, #ffbe52, #ff8e2a);
}
#component--lootbox-redeem .lootbox-redeem-showcase-price {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}
#component--lootbox-redeem .lootbox-redeem-showcase-footer {
  color: rgba(238, 244, 255, 0.9);
  font-weight: 800;
}
#component--lootbox-redeem .lootbox-redeem-benefits {
  border-radius: 24px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(10, 18, 58, 0.56), rgba(7, 12, 40, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
#component--lootbox-redeem .lootbox-redeem-benefit-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}
#component--lootbox-redeem .lootbox-redeem-benefit-card p {
  color: rgba(210, 221, 255, 0.76);
  line-height: 1.5;
}
#component--lootbox-redeem .lootbox-redeem-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 1.35rem;
}
#component--lootbox-redeem .lootbox-redeem-benefit-icon--purple {
  background: linear-gradient(180deg, #8c63ff, #6536ff);
}
#component--lootbox-redeem .lootbox-redeem-benefit-icon--blue {
  background: linear-gradient(180deg, #46c8ff, #2f7dff);
}
#component--lootbox-redeem .lootbox-redeem-benefit-icon--pink {
  background: linear-gradient(180deg, #ff5aa2, #ff3f77);
}
@media (max-width: 991.98px) {
  #component--lootbox-redeem .lootbox-redeem-title {
    font-size: 2.9rem;
  }
  #component--lootbox-redeem .lootbox-redeem-form-card {
    padding: 2.2rem 1rem 1.2rem;
  }
}
@media (max-width: 767.98px) {
  #component--lootbox-redeem .lootbox-redeem-title {
    font-size: 2.45rem;
  }
  #component--lootbox-redeem .lootbox-redeem-subtitle {
    font-size: 0.98rem;
  }
  #component--lootbox-redeem .lootbox-redeem-section-title {
    font-size: 1.4rem;
  }
  #component--lootbox-redeem .lootbox-redeem-showcase-name {
    font-size: 1.6rem;
  }
  #component--lootbox-redeem .lootbox-redeem-showcase-price {
    font-size: 1.7rem;
  }
}

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