.wstoast.wstoast-wrapper {
position: fixed;
top: 10px;
left: 0;
z-index: 9999;
width: 100%;
pointer-events: none;
color: rgba(0, 0, 0, 0.55);
font-size: 13px;
font-variant: tabular-nums;
font-feature-settings: "tnum";
}
.wstoast .wstoast-item {
padding: 8px;
text-align: center;
animation-duration: 0.3s;
}
.wstoast .wstoast-item .wstoast-content {
text-align: left;
position: relative;
display: inline-block;
pointer-events: all;
max-width: 80%;
min-width: 80px;
}
.wstoast .wstoast-item .wstoast-content [class^=wstoast-content-] {
display: flex;
align-items: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.wstoast .wstoast-item .wstoast-content [class^=wstoast-content-] .wstoast-icon {
display: inline-block;
vertical-align: middle;
margin-right: 8px;
}
.wstoast .wstoast-item .wstoast-content [class^=wstoast-content-] .wstoast-icon:first-child {
margin-right: 8px;
}
.wstoast .wstoast-item .wstoast-content [class^=wstoast-content-] .wstoast-icon-close {
cursor: pointer;
color: rgba(0, 0, 0, 0.45);
transition: color 0.3s;
margin-left: 6px;
vertical-align: middle;
}
.wstoast .wstoast-item .wstoast-content [class^=wstoast-content-] .wstoast-icon-close:hover>svg path {
stroke: #555;
}
.wstoast .wstoast-item .wstoast-content [class^=wstoast-content-] .wstoast-count {
display: inline-block;
position: absolute;
left: -8px;
top: -8px;
color: #fff;
font-size: 12px;
text-align: center;
height: 16px;
line-height: 16px;
border-radius: 3px;
min-width: 16px;
animation-duration: 0.3s;
}

.wstoast .wstoast-item .wstoast-content-info {
color: #bd1aa7;
padding: 10px 12px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(189, 26, 167, 0.5);
animation: shake 0.5s ease-in-out;
}

.wstoast .wstoast-item .wstoast-content-info .wstoast-count {
background-color: #bd1aa7;
}

.wstoast .wstoast-item .wstoast-content-warning {
color: #e6a23c;
padding: 10px 12px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 8px 12px rgba(255, 165, 0, 0.5);
animation: shake 0.5s ease-in-out;
}

.wstoast .wstoast-item .wstoast-content-warning .wstoast-count {
background-color: #e6a23c;
}

.wstoast .wstoast-item .wstoast-content-error {
color: #f56c6c;
padding: 10px 12px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 8px 12px rgba(255, 0, 0, 0.5);
animation: shake 0.5s ease-in-out;
}

.wstoast .wstoast-item .wstoast-content-error .wstoast-count {
background-color: #f56c6c;
}

.wstoast .wstoast-item .wstoast-content-success {
color: #67c23a;
padding: 10px 12px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 8px 12px rgba(0, 128, 0, 0.5);
animation: scaleIn 0.3s ease;
}
.wstoast .wstoast-item .wstoast-content-success .wstoast-count {
background-color: #67c23a;
}
.wstoast .wstoast-item .wstoast-content-loading {
color: #409eff;
padding: 10px 12px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 8px 12px rgba(64, 158, 255, 0.5);
}
.wstoast .wstoast-item .wstoast-content-loading .wstoast-count {
background-color: #409eff;
}
.wstoast .animate-turn {
animation: MessageTurn 1s linear infinite;
}
@keyframes scaleIn {
0% {
    transform: scale(0);
    opacity: 0;
}
100% {
    transform: scale(1);
    opacity: 1;
}
}
@keyframes shake {
0% { transform: translateX(0); }
20% { transform: translateX(-5px); }
40% { transform: translateX(5px); }
60% { transform: translateX(-5px); }
80% { transform: translateX(5px); }
100% { transform: translateX(0); }
}
@keyframes MessageTurn {
0% {
    transform: rotate(0deg);
}

25% {
    transform: rotate(90deg);
}

50% {
    transform: rotate(180deg);
}

75% {
    transform: rotate(270deg);
}

100% {
    transform: rotate(360deg);
}
}

@keyframes MessageMoveOut {
0% {
    max-height: 150px;
    padding: 8px;
    opacity: 1;
}

to {
    max-height: 0;
    padding: 0;
    opacity: 0;
}
}

@keyframes MessageMoveIn {
0% {
    transform: translateY(-100%);
    transform-origin: 0 0;
    opacity: 0;
}

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

@keyframes MessageShake {
0%, 100% {
    transform: translateX(0px);
    opacity: 1;
}

25%, 75% {
    transform: translateX(-4px);
    opacity: .75;
}

50% {
    transform: translateX(4px);
    opacity: .25;
}
}
:root {
  --ease-out-quint: cubic-bezier(0.230, 1.000, 0.320, 1.000);
  --ease-out-quart: cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
@keyframes shine {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

.w-icon {
  position: relative;
  display: inline-block;
  overflow: hidden;
  /* Ensure the shine effect stays within the image boundaries */
}

.w-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  animation: shine 7s infinite;
}

#loading {
  text-align: center;
  font-size: 20px;
  color: gray;
}

.m-game {
  width: 500px;
  height: 500px;
  margin: 10px auto;
  position: relative;
}

.m-game__wrapper {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 7s cubic-bezier(0.25, 0.1, 0, 1);
}

.m-game__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.m-game__start {
  display: block;
  width: 20%;
  height: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}

.m-game__start:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.m-game__start img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

.m-game__text {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  font-size: 20px;
  transform-origin: 0 50%;
  padding-left: 3%;
}

.m-game__text:nth-child(1) {
  transform: translateY(-50%) rotate(-30deg);
}

.m-game__text:nth-child(2) {
  transform: translateY(-50%) rotate(-90deg);
}

.m-game__text:nth-child(3) {
  transform: translateY(-50%) rotate(-150deg);
}

.m-game__text:nth-child(4) {
  transform: translateY(-50%) rotate(-210deg);
}

.m-game__text:nth-child(5) {
  transform: translateY(-50%) rotate(-270deg);
}

.m-game__text:nth-child(6) {
  transform: translateY(-50%) rotate(-330deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .m-game {
    width: 300px;
    height: 300px;
  }

  .m-game__start {
    width: 20%;
    height: 30%;
  }

  .m-game__text {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .m-game {
    width: 300px;
    height: 300px;
  }

  .m-game__start {
    width: 20%;
    height: 40%;
  }

  .m-game__text {
    font-size: 11px;
  }
}