/* Toast notifications */

html {
  margin: 0;
  padding: 0;
  height: var(--app-height, 100vh);
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  height: var(--app-height, 100vh);
  overflow-y: auto;
  overflow-x: hidden;
}
.toast-container {
  position: fixed;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  z-index: 9999;
  pointer-events: none;
}

.toast {
  min-width: 190px;
  max-width: 320px;
  background: var(--panel-alt);
  border: 1px solid var(--border-soft);
  padding: .65rem .85rem .7rem;
  border-radius: 10px;
  font-size: .7rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: .4px;
  color: var(--text);
  background: #0C1A24;
  box-shadow: 0 6px 20px -6px rgba(0, 0, 0, .55);
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  position: relative;
  overflow: hidden;
  animation: toastIn .35s ease both;
}

.toast::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.toast.success {
  border-color: #20c997;
}

.toast.success::before {
  background: #20c997;
}

.toast.danger {
  border-color: #b53030;
}

.toast.danger::before {
  background: #b53030;
}

.toast.warn {
  border-color: #f6c343;
}

.toast.warn::before {
  background: #f6c343;
}

.toast.hide {
  animation: toastOut .4s ease forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(-6px) scale(.92);
  }
}

body {
  background-color: #0C1A24;
  color: #e6e6e6;
  font-family: Arial, sans-serif;
}

.show {
  font-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #8b8b8b00;
}

#show {
  position: absolute;
  top: 6%;
  left: 0%;
  width: 5.4%;
  height: 90%;
  border-radius: 4px;

  user-select: none;
}

#show_game {
  position: absolute;
  top: 0%;
  left: 5%;
  width: 90%;
  height: 5%;
  border-radius: 4px;

  user-select: none;
}

#show_mode {
  position: absolute;
  top: 5.4%;
  left: 5%;
  width: 90%;
  height: 6%;
  border-radius: 4px;

  user-select: none;
}

#show_money {
  position: absolute;
  top: 17.5%;
  left: 5%;
  width: 90%;
  height: 6%;
  border-radius: 4px;
  user-select: none;
}

#show_bet {
  position: absolute;
  top: 43%;
  left: 5%;
  width: 90%;
  height: 6%;
  border-radius: 4px;
  user-select: none;
}

#show_multi {
  position: absolute;
  top: 67%;
  left: 0%;
  width: 99%;
  height: 6%;
  border-radius: 4px;
  user-select: none;
}

#show_round {
  position: absolute;
  top: 94%;
  left: 5%;
  width: 90%;
  height: 6%;
}

.Ashow {
  border: #20c997 solid 1px;
  font-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}

#show_number {
  position: absolute;
  top: 28%;
  left: 5%;
  width: 90%;
  height: 6%;
}

#show_win {
  position: absolute;

  top: 37%;
  left: 5%;
  width: 90%;
  height: 6%;
}

#show_loss {
  position: absolute;

  top: 47%;
  left: 5%;
  width: 90%;
  height: 6%;
}

#show_onporfit {
  position: absolute;

  top: 56%;
  left: 5%;
  width: 90%;
  height: 6%;
}

#show_onloss {
  position: absolute;

  top: 66.6%;
  left: 5%;
  width: 90%;
  height: 6%;
}


#money {
  position: absolute;
  top: 0%;
  left: -1%;
  width: 101%;
  height: 6%;
  border-radius: 4px;
  background-color: rgba(30, 43, 55, 0.52);
  user-select: none;
}

  

#money_box {
  position: absolute;
  color: white;
  font-size: 100%;
  border: #8b8b8b solid 1px;
  width: 10%;
  height: 90%;
  top: 5.8%;
  left: 50%;
  background-color: #0C1A24;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#conves {
  position: absolute;
  background-color: rgb(30, 43, 55);
  width: 70%;
  height: 89%;
  top: 7%;
  left: 28.7%;
  border-radius: 0px 5px 5px 0px;
  user-select: none;
}

#add-ball {
  position: absolute;
  width: 93%;
  height: 10%;
  top: 40%;
  left: 3%;
  border: 0;
  background-color: rgb(29, 165, 15);
  font-size: 100%;
  cursor: pointer;
  border-radius: 7px;
  z-index: 10;
}

#add-ball2,
#add-ball3 {
  position: absolute;
  width: 93%;
  height: 10%;
  top: 87.5%;
  left: 3%;
  border: 0;
  background-color: rgb(29, 165, 15);
  font-size: 100%;
  cursor: pointer;
  border-radius: 7px;
}

#box {
  position: absolute;
  width: 23%;
  height: 89%;
  top: 7%;
  left: 5.7%;
  background-color: rgb(40, 56, 72);
  border-radius: 10px 0px 0px 10px;
  user-select: none;
}

#balance {
  position: absolute;
  width: 55%;
  height: 3%;
  border-radius: 4px;
  padding: 10px;
  background-color: rgb(30, 43, 55);
  color: white;
  border: rgb(0, 115, 223);
  top: 17%;
  left: 3%;
  font-size: 150%;
}

#bet_amount {
  position: absolute;
  color: white;
  font-size: 130%;
  top: 12%;
  left: 3%;
  user-select: none;
}

#manual_auto {
  position: absolute;
  color: white;
  background-color: rgb(30, 43, 55);
  width: 98%;
  height: 10%;
  left: 1%;
  top: 2%;
  border-radius: 40px;
}

#manual {
  position: absolute;
  color: white;
  background-color: rgb(40, 56, 72);
  width: 48%;
  height: 80%;
  left: 2%;
  top: 10%;
  border: #0000000f solid 1px;
  cursor: pointer;
  border-radius: 40px;
}

#auto {
  position: absolute;
  color: white;
  background-color: rgb(30, 43, 55);
  width: 45%;
  height: 80%;
  left: 52%;
  top: 10%;
  border: #0000000f solid 1px;
  cursor: pointer;
  border-radius: 40px;
}

#incrementButton {
  position: absolute;
  color: white;
  background-color: rgb(30, 43, 55);
  font-size: 130%;
  width: 15%;
  height: 7%;
  top: 17%;
  left: 83%;
  cursor: pointer;
  border-radius: 7px;
}

#decrementButton {
  position: absolute;
  color: white;
  background-color: rgb(30, 43, 55);
  font-size: 130%;
  width: 15%;
  height: 7%;
  top: 17%;
  left: 66.8%;
  cursor: pointer;
  border-radius: 7px;
}

#Labelnumberofbet {
  position: absolute;
  font-size: 100%;
  width: 90%;
  height: 5%;
  left: 1%;
  top: 24%;
}

#numberofbet {
  position: absolute;
  font-size: 100%;
  justify-content: center;
  align-items: center;
  width: 95%;
  height: 5%;
  left: 1%;
  top: 27.5%;
  border-radius: 4px;
  background-color: rgb(30, 43, 55);
  color: white;
  border: rgb(0, 115, 223);
}

#Labelonwin {
  position: absolute;
  font-size: 100%;
  width: 90%;
  height: 5%;
  left: 1%;
  top: 33.5%;
}

#onwin {
  position: absolute;
  font-size: 100%;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 5%;
  left: 45%;
  top: 37%;
  border-radius: 4px;
  background-color: rgb(30, 43, 55);
  color: white;
  border: rgb(0, 115, 223);
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

#reset1 {
  position: absolute;
  color: white;
  background-color: rgb(30, 43, 55);
  font-size: 1%;
  width: 15%;
  height: 6%;
  top: 37%;
  left: 1%;
  border: 0;
  font-size: 80%;
  cursor: pointer;
  border-radius: 7px;
  border: 1px solid rgb(255, 255, 255);
}

#Increase1 {
  position: absolute;
  color: white;
  background-color: rgb(30, 43, 55);
  font-size: 1%;
  width: 27%;
  height: 6%;
  top: 37%;
  left: 17%;
  border: 1px solid rgba(0, 0, 0, 0);
  font-size: 80%;
  cursor: pointer;
  border-radius: 7px;
}

#Labelonloss {
  position: absolute;
  font-size: 100%;
  width: 90%;
  height: 5%;
  left: 1%;
  top: 43%;
}

#onloss {
  position: absolute;
  font-size: 100%;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 5%;
  left: 45%;
  top: 46.5%;
  border-radius: 4px;
  background-color: rgb(30, 43, 55);
  color: white;
  border: rgb(0, 115, 223);
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

#reset2 {
  position: absolute;
  color: white;
  background-color: rgb(30, 43, 55);
  font-size: 1%;
  width: 15%;
  height: 6%;
  top: 46.5%;
  left: 1%;
  border: 0;
  font-size: 80%;
  cursor: pointer;
  border-radius: 7px;
  border: 1px solid rgb(255, 255, 255);
}

#Increase2 {
  position: absolute;
  color: white;
  background-color: rgb(30, 43, 55);
  font-size: 1%;
  width: 27%;
  height: 6%;
  top: 46.5%;
  left: 17%;
  border: 1px solid rgba(0, 0, 0, 0);
  font-size: 80%;
  cursor: pointer;
  border-radius: 7px;
}

#Labelstoponprofit {
  position: absolute;
  font-size: 100%;
  width: 90%;
  height: 5%;
  left: 1%;
  top: 53%;
}

#onprofit {
  position: absolute;
  font-size: 100%;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 5%;
  left: 1%;
  top: 56.7%;
  border-radius: 4px;
  background-color: rgb(30, 43, 55);
  color: white;
  border: rgb(0, 115, 223);
}

#Labelstoponloss {
  position: absolute;
  font-size: 100%;
  width: 90%;
  height: 5%;
  left: 1%;
  top: 63.5%;
}

#stoponloss {
  position: absolute;
  font-size: 100%;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 5%;
  left: 1%;
  top: 67.2%;
  border-radius: 4px;
  background-color: rgb(30, 43, 55);
  color: white;
  border: rgb(0, 115, 223);
}

#pic_random_tile {
  position: absolute;
  color: white;
  background-color: rgb(29, 165, 15);
  width: 72%;
  height: 6%;
  top: 49.5%;
  left: 16%;
  font-size: 100%;
  cursor: pointer;
  border-radius: 7px;
  z-index: 10;
}

#lablemins {
  position: absolute;
  color: white;
  width: 30%;
  height: 6%;
  top: 24.5%;
  left: 5%;
  font-size: 135%;
  cursor: pointer;
  border-radius: 7px;
}

#mines {
  position: absolute;
  color: white;
  background-color: rgb(30, 43, 55);
  width: 30%;
  height: 8%;
  top: 30%;
  left: 5%;
  border: 1px solid rgba(0, 0, 0, 0);
  font-size: 200%;
  cursor: pointer;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#labelgames {
  position: absolute;
  color: white;
  width: 30%;
  height: 0%;
  top: 24.5%;
  left: 55%;
  font-size: 135%;
  border-radius: 7px;
}

#games {
  position: absolute;
  color: rgb(6, 229, 6);
  background-color: rgb(30, 43, 55);
  width: 30%;
  height: 8%;
  top: 30%;
  left: 70%;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 0, 0, 0);
  font-size: 200%;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-container {
  top: 2%;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 64%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

#labelmultiplier {
  position: absolute;
  color: white;
  width: 30%;
  height: 6%;
  top: 69.5%;
  left: 55.5%;
  font-size: 120%;
  border-radius: 7px;
  z-index: 1;
}

#multiplier {
  position: absolute;
  color: rgb(255 255 255);
  background-color: rgb(30, 43, 55);
  width: 60%;
  height: 8%;
  top: 77.5%;
  left: 68.5%;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 0, 0, 0);
  font-size: 170%;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#the_prfit {
  position: absolute;
  width: 67%;
  height: 44%;
  top: 39%;
  left: 18%;
}

.grid {
    min-height: 147%;
    width: 100%;
    max-height: 181%;
    max-width: 11%;
    min-width: 68%;
    height: 161%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 3%;
    aspect-ratio: 1 / 1;
    position: relative;

}

#un_tuoch {

  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;

}

.cell {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(48, 65, 83);
  border: 1px solid transparent;
  box-sizing: border-box;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 6px 0px #323247;

}



.cell.revealed {
  background: url(gams.svg) center / 93% 99% no-repeat;
  box-shadow: inset 0px -1px 12px rgb(5, 222, 142);
  cursor: default;
  animation: popup 0.35s cubic-bezier(.34, 1.56, .64, 1) forwards, gemGlow 1.4s ease-in-out 0.35s infinite;
}

@keyframes popup {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  60% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes gemGlow {
  0%, 100% {
    box-shadow: inset 0px -1px 12px rgb(5, 222, 142);
  }
  50% {
    box-shadow: inset 0px -1px 20px rgb(5, 255, 160);
  }
}


.cell:not(.revealed):not(.revealer):not(.mine):hover {
  background-color: rgb(57, 77, 97);
  box-shadow: 0 6px 0px rgba(0, 255, 229, 0.995);
}

.cell.revealer {
  background: rgb(0 255 245);
  box-shadow:
    0 6px 0px rgb(19, 165, 194);
  cursor: default;
  animation: revealerPulse 0.9s ease-in-out infinite, revealerIn 0.2s ease-out;
}

@keyframes revealerIn {
  0% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes revealerPulse {
  0%, 100% {
    box-shadow: 0 6px 0px rgb(19, 165, 194), 0 0 0px rgba(0, 255, 245, 0.6);
  }
  50% {
    box-shadow: 0 6px 0px rgb(19, 165, 194), 0 0 16px rgba(0, 255, 245, 0.9);
  }
}

.cell.mine {
  background: url(boom.svg) center / 93% 99% no-repeat;
  box-shadow: inset 0px -1px 12px rgb(222, 5, 5);
  cursor: default;
  animation: mineExplode 0.5s cubic-bezier(.36, .07, .19, .97) forwards;
}

@keyframes mineExplode {
  0% {
    transform: scale(0.6) rotate(0deg);
    opacity: 0;
    box-shadow: inset 0px -1px 12px rgb(222, 5, 5);
  }
  35% {
    transform: scale(1.25) rotate(-6deg);
    opacity: 1;
    box-shadow: inset 0px -1px 26px rgb(255, 60, 60), 0 0 22px rgba(255, 0, 0, 0.75);
  }
  50% {
    transform: scale(0.94) rotate(5deg);
  }
  65% {
    transform: scale(1.06) rotate(-3deg);
  }
  80% {
    transform: scale(0.98) rotate(2deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: inset 0px -1px 12px rgb(222, 5, 5);
  }
}

.restismine {
  filter: blur(5px);
  background: url(boom.svg) center / 80% 80% no-repeat;
  box-shadow: inset 0px -1px 12px rgb(222, 5, 5);
  cursor: default;
  animation: fadeReveal 0.4s ease-out;

}

.restisgame {
  filter: blur(5px);
  background: url(gams.svg) center / 80% 80% no-repeat;
  box-shadow: inset 0px -1px 12px rgb(16, 68, 49);
  cursor: default;
  animation: fadeReveal 0.4s ease-out;

}

@keyframes fadeReveal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Global animation disable switch (toggled via the ANIMATIONS setting) ===== */
body.animations-off .cell,
body.animations-off .cell.revealed,
body.animations-off .cell.mine,
body.animations-off .cell.revealer,
body.animations-off .restismine,
body.animations-off .restisgame {
  animation: none !important;
  transition: none !important;
}

@media (max-width: 900px) {
  #conves {
    position: absolute;
    background-color: rgb(30, 43, 55);
    height: 50%;
    top: 6.02%;
    left: 50%;
    width: 400px;
    transform: translateX(-50%);
    user-select: none;
    border-radius: 0%;
    overflow: hidden;
  }

  #box {
    position: absolute;
    width: 400px;
    height: 100%;
    top: 56%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(40, 56, 72);
    user-select: none;
    border-radius: 0%;
  }

  #money {
    position: absolute;
    width: 400px;
    height: 5.9%;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
  }

  #bet_amount {
    position: absolute;
    color: white;
    font-size: 150%;
    top: 0%;
    left: 3%;
    user-select: none;
  }

  #money_box {

    font-size: 100%;

    width: 25%;
    height: 90%;
    top: 5.8%;
    left: 45%;
  }

  #balance {
    width: 51%;
    height: 3.8%;
    top: 5%;
    left: 3%;
    font-size: 138%;
  }

  #decrementButton {
    font-size: 77%;
    width: 15%;
    height: 7%;
    top: 5%;
    left: 65.8%;
    border: 1px solid rgba(44, 43, 43, 0.224);
  }

  #add-ball {
    width: 94%;
    height: 8%;
    top: 23.9%;
    left: 3%;
    font-size: 100%;
  }

  #add-ball2,
  #add-ball3 {
    width: 94%;
    height: 8%;
    top: 12.9%;
    left: 3%;
    font-size: 100%;
  }

  #auto_view {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
    z-index: 0;
  }

  #manual_auto {
    width: 98%;
    height: 10%;
    left: 1%;
    top: 33.7%;
    z-index: 1;
  }

  #incrementButton {
    font-size: 77%;
    width: 15%;
    height: 7%;
    top: 5%;
    left: 83%;
    border: 1px solid rgba(44, 43, 43, 0.224);
  }

  #show {
    background-color: #00000000;
  }

  .game-container {
    height: 846%;
  }

  .grid {
    left: -1%;
    width: 96%;
    height: 11%;
   min-height: 11%;
  max-height: 0%;
  max-width: 64%;
    min-width: 93%;
  }

  #lablemins {
    top: 11.5%;
  }

  #labelgames {
    top: 11.5%;
  }

  #mines {
    top: 14.5%;
    height: 5%;
    
  }

  #games {
    top: 14.5%;
    height: 5%;
  }

  #the_prfit {
    position: absolute;
    width: 67%;
    height: 23%;
    top: 20%;
    left: 18%;
  }

  #pic_random_tile {
    border: 0px solid rgba(255, 0, 0, 0);
  }

}



@media (max-width: 400px) {
  #conves {
    position: absolute;
    background-color: rgb(30, 43, 55);
    width: 95%;
    height: 50%;
    top: 6.02%;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
    border-radius: 0%;
    overflow: hidden;
  }

  #box {
    position: absolute;
    width: 95%;
    height: 100%;
    top: 56%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(40, 56, 72);
    user-select: none;
    border-radius: 0%;
  }

  #money {
    position: absolute;
    width: 95%;
    height: 5.9%;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
  }

  #bet_amount {
    position: absolute;
    color: white;
    font-size: 150%;
    top: 0%;
    left: 3%;
    user-select: none;
  }

  #money_box {

    font-size: 100%;

    width: 25%;
    height: 90%;
    top: 5.8%;
    left: 45%;
  }

  #balance {
    width: 51%;
    height: 3.8%;
    top: 5%;
    left: 3%;
    font-size: 138%;
  }

  #decrementButton {
    font-size: 77%;
    width: 15%;
    height: 7%;
    top: 5%;
    left: 65.8%;
    border: 1px solid rgba(44, 43, 43, 0.224);
  }

  #add-ball {
    width: 94%;
    height: 8%;
    top: 23.9%;
    left: 3%;
    font-size: 100%;
  }

  #add-ball2,
  #add-ball3 {
    width: 94%;
    height: 8%;
    top: 12.9%;
    left: 3%;
    font-size: 100%;
  }

  #auto_view {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
    z-index: 0;
  }

  #manual_auto {
    width: 98%;
    height: 10%;
    left: 1%;
    top: 33.7%;
    z-index: 1;
  }

  #incrementButton {
    font-size: 77%;
    width: 15%;
    height: 7%;
    top: 5%;
    left: 83%;
    border: 1px solid rgba(44, 43, 43, 0.224);
  }

  #show {
    background-color: #00000000;
  }

  .game-container {
    height: 846%;
  }

  .grid {
    width: 96%;
    height: 11%;
  }

  #lablemins {
    top: 11.5%;
  }

  #labelgames {
    top: 11.5%;
  }

  #mines {
    top: 14.5%;
    height: 6%;
  }

  #games {
    top: 14.5%;
    height: 6%;
  }

  #the_prfit {
    position: absolute;
    width: 67%;
    height: 23%;
    top: 20%;
    left: 18%;
  }
}

/* Current Profit Div Styling */
#currentProfit {
  position: relative;
  width: 139%;
  left: -19%;
  height: 10%;
  background: linear-gradient(135deg, rgba(32, 201, 151, 0.15) 0%, rgba(32, 201, 151, 0.25) 100%);
  border: 1.5px solid rgba(32, 201, 151, 0.5);
  border-radius: 8px;
  font-size: 90%;
  font-weight: 700;
  color: #20c997;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  text-shadow: 0 2px 12px rgba(32, 201, 151, 0.6);
  box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}


#nextProfit {
  position: relative;
  width: 139%;
  left: -19%;
  height: 10%;
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.15) 0%, rgba(100, 150, 255, 0.25) 100%);
  border: 1.5px solid rgba(100, 150, 255, 0.5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90%;
  font-weight: 600;
  color: #6496ff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(100, 150, 255, 0.5);
  box-shadow: 0 4px 15px rgba(100, 150, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}