
/* إصلاح الحجم العام للصفحة */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden; /* يمنع التمدد الأفقي */
}


.log{
    text-align: center;
}
legend{
    text-align: center;
    font-size: 60px;
    font-family: cursive;
    color: rgba(0, 106, 255, 0.852);
    transition: 1s;
}
legend:hover{
    transform: translatey(-20px);
}
form{
    transform: translateY(25px);
    
}
fieldset{
    border-radius: 30px;
    width: 200px;
    text-align: center;
    transform: translatex(500px);
    font-size: 70px;
    background-color: antiquewhite;
}
input{
border-radius: 15px;
text-align: center;
font-size: 17px;
color: rgba(0, 106, 255, 0.852);
}

#bt{
    font-size: 25px;
    color: green;
}
#inp{
    font-size: 30px;
}
body{
    background-color: bisque;
}

form{
    transform: translatey(-50px);
}
input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}
/* From Uiverse.io by reglobby */ 
.stars-container {
  position: absolute;
  width: 100%;
  height: 100%;
  perspective: 500px;
  transform-style: preserve-3d;
}

.star-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.star-layer:nth-child(1) {
  transform: translateZ(-50px);
  animation: star-drift 150s linear infinite;
}

.star-layer:nth-child(2) {
  transform: translateZ(-100px);
  animation: star-drift 200s linear infinite reverse;
  opacity: 0.6;
}

.star-layer:nth-child(3) {
  transform: translateZ(-200px);
  animation: star-drift 250s linear infinite;
  opacity: 0.4;
}

@keyframes star-drift {
  0% {
    transform: translateZ(-50px) translateY(0);
  }
  100% {
    transform: translateZ(-50px) translateY(100%);
  }
}

.star-layer::before,
.star-layer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.star-layer:nth-child(1)::before {
  background-image: radial-gradient(1px 1px at 10% 10%, white 100%, transparent),
    radial-gradient(1px 1px at 20% 20%, white 100%, transparent),
    radial-gradient(2px 2px at 30% 30%, white 100%, transparent),
    radial-gradient(1px 1px at 40% 40%, white 100%, transparent),
    radial-gradient(2px 2px at 50% 50%, white 100%, transparent),
    radial-gradient(1px 1px at 60% 60%, white 100%, transparent),
    radial-gradient(2px 2px at 70% 70%, white 100%, transparent),
    radial-gradient(1px 1px at 80% 80%, white 100%, transparent),
    radial-gradient(2px 2px at 90% 90%, white 100%, transparent),
    radial-gradient(1px 1px at 15% 85%, white 100%, transparent);
}

.nebula {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(
      ellipse at 30% 30%,
      rgba(63, 0, 113, 0.3) 0%,
      rgba(63, 0, 113, 0) 70%
    ),
    radial-gradient(
      ellipse at 70% 60%,
      rgba(0, 113, 167, 0.3) 0%,
      rgba(0, 113, 167, 0) 70%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(167, 0, 157, 0.2) 0%,
      rgba(167, 0, 157, 0) 70%
    );
  filter: blur(30px);
  opacity: 0.5;
  animation: nebula-shift 30s infinite alternate ease-in-out;
}

@keyframes nebula-shift {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2) rotate(5deg);
    opacity: 0.4;
  }
}

.grid-plane {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: linear-gradient(
      rgba(0, 162, 255, 0.15) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 162, 255, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center;
  animation: grid-move 20s linear infinite;
  opacity: 0.3;
}

@keyframes grid-move {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(40px);
  }
}

.checkbox-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  z-index: 10;
}

/* Скрываем стандартный чекбокс */
.holo-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.holo-checkbox {
  position: relative;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.holo-box {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 162, 255, 0.7);
  border-radius: 12px;
  background-color: rgba(0, 24, 55, 0.5);
  box-shadow:
    0 0 10px rgba(0, 162, 255, 0.5),
    inset 0 0 15px rgba(0, 162, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.holo-inner {
  position: absolute;
  width: 30%;
  height: 30%;
  background-color: rgba(0, 162, 255, 0.5);
  border-radius: 4px;
  opacity: 0;
  transform: scale(0) rotate(45deg);
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 162, 255, 0.8);
}

.scan-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 162, 255, 0.8),
    transparent
  );
  animation: scan-off 4s infinite;
  opacity: 0.3;
  transition: all 0.3s ease;
}

@keyframes scan-off {
  0% {
    left: -100%;
    opacity: 0.3;
  }
  100% {
    left: 100%;
    opacity: 0.3;
  }
}

@keyframes scan-on {
  0% {
    left: -100%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 1;
  }
}

.holo-checkbox-input:checked + .holo-checkbox .holo-box {
  border-color: rgba(0, 255, 136, 0.7);
  box-shadow:
    0 0 10px rgba(0, 255, 136, 0.6),
    inset 0 0 15px rgba(0, 255, 136, 0.4);
}

.holo-checkbox-input:checked + .holo-checkbox .holo-inner {
  background-color: rgba(0, 255, 136, 0.7);
  box-shadow: 0 0 15px rgba(0, 255, 136, 1);
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

.holo-checkbox-input:checked + .holo-checkbox .scan-effect {
  animation: scan-on 2s infinite;
  opacity: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 136, 0.8),
    transparent
  );
}

.holo-glow {
  position: absolute;
  width: 200%;
  height: 200%;
  left: -50%;
  top: -50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 162, 255, 0.2) 0%,
    rgba(0, 162, 255, 0.1) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
  animation: glow-pulse 4s infinite alternate;
  transition: all 0.5s ease;
}

@keyframes glow-pulse {
  0% {
    opacity: 0.3;
    filter: blur(10px) brightness(0.8);
  }
  100% {
    opacity: 0.6;
    filter: blur(15px) brightness(1.2);
  }
}

.holo-checkbox-input:checked + .holo-checkbox .holo-glow {
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 136, 0.2) 0%,
    rgba(0, 255, 136, 0.1) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  animation: active-glow-pulse 2s infinite alternate;
}

@keyframes active-glow-pulse {
  0% {
    opacity: 0.4;
    filter: blur(10px) brightness(1);
  }
  100% {
    opacity: 0.8;
    filter: blur(20px) brightness(1.5);
  }
}

.corner-accent {
  position: absolute;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(0, 162, 255, 0.5);
  transition: all 0.3s ease;
}

.corner-accent:nth-child(1) {
  top: -5px;
  left: -5px;
  border-right: none;
  border-bottom: none;
  border-radius: 5px 0 0 0;
}

.corner-accent:nth-child(2) {
  top: -5px;
  right: -5px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 5px 0 0;
}

.corner-accent:nth-child(3) {
  bottom: -5px;
  left: -5px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 5px;
}

.corner-accent:nth-child(4) {
  bottom: -5px;
  right: -5px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 5px 0;
}

.holo-checkbox-input:checked + .holo-checkbox .corner-accent {
  width: 20px;
  height: 20px;
  border-color: rgba(0, 255, 136, 0.7);
}

.status-text {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 162, 255, 0.8);
  text-shadow: 0 0 5px rgba(0, 162, 255, 0.5);
  position: relative;
  transition: all 0.3s ease;
}

.status-text::before {
  content: "SYSTEM DEACTIVATED";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.holo-checkbox-input:checked ~ .status-text::before {
  content: "SYSTEM ACTIVATED";
  color: rgba(0, 255, 136, 0.8);
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.activation-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.activation-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  border: 1px solid rgba(0, 255, 136, 0);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.3s ease;
}

.holo-checkbox-input:checked + .holo-checkbox .activation-ring {
  animation: ring-expand 2s ease-out forwards;
  border-color: rgba(0, 255, 136, 0.7);
}

.holo-checkbox-input:checked + .holo-checkbox .activation-ring:nth-child(1) {
  animation-delay: 0s;
}

.holo-checkbox-input:checked + .holo-checkbox .activation-ring:nth-child(2) {
  animation-delay: 0.3s;
}

.holo-checkbox-input:checked + .holo-checkbox .activation-ring:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes ring-expand {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.holo-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.holo-particle {
  position: absolute;
  background-color: rgba(0, 162, 255, 0.7);
  border-radius: 50%;
  width: 3px;
  height: 3px;
  opacity: 0;
  filter: blur(1px);
  transition: all 0.3s ease;
}

.holo-checkbox-input:checked + .holo-checkbox .holo-particle {
  background-color: rgba(0, 255, 136, 0.7);
  animation: particle-float 3s infinite ease-in-out;
}

.holo-checkbox-input:checked + .holo-checkbox .holo-particle:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0.1s;
}

.holo-checkbox-input:checked + .holo-checkbox .holo-particle:nth-child(2) {
  top: 70%;
  left: 20%;
  animation-delay: 0.7s;
}

.holo-checkbox-input:checked + .holo-checkbox .holo-particle:nth-child(3) {
  top: 40%;
  left: 80%;
  animation-delay: 1.3s;
}

.holo-checkbox-input:checked + .holo-checkbox .holo-particle:nth-child(4) {
  top: 60%;
  left: 60%;
  animation-delay: 1.9s;
}

.holo-checkbox-input:checked + .holo-checkbox .holo-particle:nth-child(5) {
  top: 30%;
  left: 45%;
  animation-delay: 2.5s;
}

.holo-checkbox-input:checked + .holo-checkbox .holo-particle:nth-child(6) {
  top: 60%;
  left: 40%;
  animation-delay: 3.1s;
}

@keyframes particle-float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) scale(0);
    opacity: 0;
  }
}

.cube-transform {
  position: absolute;
  width: 30%;
  height: 30%;
  transform-style: preserve-3d;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 162, 255, 0.3);
  border: 1px solid rgba(0, 162, 255, 0.5);
  box-shadow: 0 0 5px rgba(0, 162, 255, 0.3);
  transition: all 0.3s ease;
}

.holo-checkbox-input:checked + .holo-checkbox .cube-transform {
  opacity: 1;
  animation: cube-rotate 5s infinite linear;
}

.holo-checkbox-input:checked + .holo-checkbox .cube-face {
  background-color: rgba(0, 255, 136, 0.3);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.holo-checkbox-input:checked + .holo-checkbox .cube-face:nth-child(1) {
  transform: translateZ(15px);
}

.holo-checkbox-input:checked + .holo-checkbox .cube-face:nth-child(2) {
  transform: rotateY(180deg) translateZ(15px);
}

.holo-checkbox-input:checked + .holo-checkbox .cube-face:nth-child(3) {
  transform: rotateY(90deg) translateZ(15px);
}

.holo-checkbox-input:checked + .holo-checkbox .cube-face:nth-child(4) {
  transform: rotateY(-90deg) translateZ(15px);
}

.holo-checkbox-input:checked + .holo-checkbox .cube-face:nth-child(5) {
  transform: rotateX(90deg) translateZ(15px);
}

.holo-checkbox-input:checked + .holo-checkbox .cube-face:nth-child(6) {
  transform: rotateX(-90deg) translateZ(15px);
}

@keyframes cube-rotate {
  0% {
    transform: rotateX(0) rotateY(0) rotateZ(0);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

.frequency-spectrum {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 40px;
  width: 260px;
  margin-top: 30px;
  gap: 3px;
}

.frequency-bar {
  width: 4px;
  height: 5px;
  background: rgba(0, 162, 255, 0.5);
  border-radius: 2px 2px 0 0;
  transition:
    height 0.3s ease,
    background 0.3s ease;
}

.holo-checkbox-input:checked ~ .frequency-spectrum .frequency-bar {
  background: rgba(0, 255, 136, 0.5);
  animation: frequency-animation 1.5s infinite ease;
}

.holo-checkbox-input:checked ~ .frequency-spectrum .frequency-bar:nth-child(1) {
  animation-delay: 0.1s;
}
.holo-checkbox-input:checked ~ .frequency-spectrum .frequency-bar:nth-child(2) {
  animation-delay: 0.2s;
}
.holo-checkbox-input:checked ~ .frequency-spectrum .frequency-bar:nth-child(3) {
  animation-delay: 0.1s;
}
.holo-checkbox-input:checked ~ .frequency-spectrum .frequency-bar:nth-child(4) {
  animation-delay: 0.3s;
}
.holo-checkbox-input:checked ~ .frequency-spectrum .frequency-bar:nth-child(5) {
  animation-delay: 0.5s;
}
.holo-checkbox-input:checked ~ .frequency-spectrum .frequency-bar:nth-child(6) {
  animation-delay: 0.2s;
}
.holo-checkbox-input:checked ~ .frequency-spectrum .frequency-bar:nth-child(7) {
  animation-delay: 0.4s;
}
.holo-checkbox-input:checked ~ .frequency-spectrum .frequency-bar:nth-child(8) {
  animation-delay: 0.1s;
}
.holo-checkbox-input:checked ~ .frequency-spectrum .frequency-bar:nth-child(9) {
  animation-delay: 0.3s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(10) {
  animation-delay: 0.2s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(11) {
  animation-delay: 0.5s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(12) {
  animation-delay: 0.3s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(13) {
  animation-delay: 0.1s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(14) {
  animation-delay: 0.4s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(15) {
  animation-delay: 0.2s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(16) {
  animation-delay: 0.3s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(17) {
  animation-delay: 0.1s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(18) {
  animation-delay: 0.5s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(19) {
  animation-delay: 0.2s;
}
.holo-checkbox-input:checked
  ~ .frequency-spectrum
  .frequency-bar:nth-child(20) {
  animation-delay: 0.4s;
}

@keyframes frequency-animation {
  0% {
    height: 5px;
  }
  50% {
    height: 35px;
  }
  100% {
    height: 5px;
  }
}

.holo-label {
  position: absolute;
  bottom: -60px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 162, 255, 0.8);
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(0, 162, 255, 0.5);
  transition: all 0.3s ease;
}

.holo-checkbox-input:checked ~ .holo-label {
  color: rgba(0, 255, 136, 0.8);
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.data-chips {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: white;
}

.data-chip {
  position: absolute;
  padding: 5px 8px;
  background-color: rgba(0, 24, 55, 0.7);
  border: 1px solid rgba(0, 162, 255, 0.5);
  border-radius: 4px;
  font-size: 10px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.holo-checkbox-input:checked ~ .data-chips .data-chip {
  animation: chip-appear 0.5s ease forwards;
  border-color: rgba(0, 255, 136, 0.5);
}

@keyframes chip-appear {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.data-chip:nth-child(1) {
  top: -60px;
  left: 50px;
  animation-delay: 0.5s;
}

.data-chip:nth-child(2) {
  top: 40px;
  left: -120px;
  animation-delay: 1.2s;
}

.data-chip:nth-child(3) {
  top: 120px;
  left: 60px;
  animation-delay: 1.8s;
}

.data-chip:nth-child(4) {
  top: 20px;
  left: 120px;
  animation-delay: 2.3s;
}
.checkbox-container{
    transform: translate(600px);
}
body {
      margin: 0;
      font-family: sans-serif;
      background-color: white;
      color: black;
      transition: background 0.4s, color 0.4s;
    }

    body.dark-mode {
      background-color: #111;
      color: #eee;
    }

    .switch-container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      flex-direction: column;
    }

    .holo-checkbox-input {
      display: none;
    }

    .holo-checkbox {
      width: 60px;
      height: 30px;
      background: #555;
      border-radius: 15px;
      position: relative;
      cursor: pointer;
    }

    .holo-checkbox::before {
      content: "";
      position: absolute;
      width: 26px;
      height: 26px;
      background: #0ff;
      border-radius: 50%;
      top: 2px;
      left: 2px;
      transition: left 0.3s;
    }

    .holo-checkbox-input:checked + .holo-checkbox {
      background: #0ff;
    }

    .holo-checkbox-input:checked + .holo-checkbox::before {
      left: 32px;
      background: #000;
    }
    body.dark-mode form {
        legend{
            color: green;
        }
        fieldset{
            background-color: whitesmoke;
        }
        input{
            color: green;
        }
  
}
fieldset:hover{
    legend{
        transform: translatey(-50px);
    }
}
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.glitch {
  position: relative;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 5px;
  z-index: 1;
  animation: shift 1s ease-in-out infinite alternate;
}

.glitch:before,
.glitch:after {
  display: block;
  content: attr(data-glitch);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.glitch:before {
  animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: green;
  z-index: -1;
}

.glitch:after {
  animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  color: #57e500;
  z-index: -2;
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
  100% { transform: translate(0); }
}

@keyframes shift {
  0%, 40%, 44%, 58%, 61%, 65%, 69%, 73%, 100% {
    transform: skewX(0deg);
  }
  41% { transform: skewX(10deg); }
  42% { transform: skewX(-10deg); }
  59% { transform: skewX(40deg) skewY(10deg); }
  60% { transform: skewX(-40deg) skewY(-10deg); }
  63% { transform: skewX(10deg) skewY(-5deg); }
  70% { transform: skewX(-50deg) skewY(-20deg); }
  71% { transform: skewX(10deg) skewY(-10deg); }
}
/* From Uiverse.io by vinodjangid07 */ 
/* The switch - the box around the speaker*/
.toggleSwitch {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(39, 39, 39);
  border-radius: 50%;
  cursor: pointer;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

/* Hide default HTML checkbox */
#checkboxInput {
  display: none;
}

.bell {
  width: 18px;
}

.bell path {
  fill: white;
}

.speaker {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition-duration: .3s;
}

.speaker svg {
  width: 18px;
}

.mute-speaker {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 3;
  transition-duration: .3s;
}

.mute-speaker svg {
  width: 18px;
}

#checkboxInput:checked +.toggleSwitch .speaker {
  opacity: 0;
  transition-duration: .3s;
}

#checkboxInput:checked +.toggleSwitch .mute-speaker {
  opacity: 1;
  transition-duration: .3s;
}

#checkboxInput:active + .toggleSwitch {
  transform: scale(0.7);
}

#checkboxInput:hover + .toggleSwitch {
  background-color: rgb(61, 61, 61);
}

.cart-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #222;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.cart-btn:hover {
  background-color: #444;
}

.cart-count {
  background-color: green;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 14px;
}
/* From Uiverse.io by andrew-demchenk0 */ 
/* before adding the img to the div with the 
"card-img" class, remove css styles 
.card-img .img::before and .card-img .img::after,
then set the desired styles for .card-img. */
.card {
  --font-color: #323232;
  --font-color-sub: #666;
  --bg-color: #fff;
  --main-color: #323232;
  --main-focus: #2d8cf0;
  width: 230px;
  height: 300px;
  background: var(--bg-color);
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  gap: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.card:last-child {
  justify-content: flex-end;
}

.card-img {
    /* clear and add new css */
  transition: all 0.5s;
  display: flex;
  justify-content: center;
}

.card-img .img {
 /* delete */
  transform: scale(1);
  position: relative;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  border-top-left-radius: 80px 50px;
  border-top-right-radius: 80px 50px;
  border: 2px solid black;
  background-color: #228b22;
  background-image: linear-gradient(to top,transparent 10px,rgba(0,0,0,0.3) 10px,rgba(0,0,0,0.3) 13px,transparent 13px);
}

.card-img .img::before {
 /* delete */
  content: '';
  position: absolute;
  width: 65px;
  height: 110px;
  margin-left: -32.5px;
  left: 50%;
  bottom: -4px;
  background-repeat: no-repeat;
  background-image: radial-gradient(ellipse at center,rgba(0,0,0,0.7) 30%,transparent 30%),linear-gradient(to top,transparent 17px,rgba(0,0,0,0.3) 17px,rgba(0,0,0,0.3) 20px,transparent 20px),linear-gradient(to right,black 2px,transparent 2px),linear-gradient(to left,black 2px,transparent 2px),linear-gradient(to top,black 2px,#228b22 2px);
  background-size: 60% 10%,100% 100%,100% 65%,100% 65%,100% 50%;
  background-position: center 3px,center bottom,center bottom,center bottom,center bottom;
  border-radius: 0 0 4px 4px;
  z-index: 2;
}

.card-img .img::after {
 /* delete */
  content: '';
  position: absolute;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  left: 50%;
  top: -13px;
  background-repeat: no-repeat;
  background-image: linear-gradient(80deg,#ffc0cb 45%,transparent 45%),linear-gradient(-175deg,#ffc0cb 45%,transparent 45%),linear-gradient(80deg,rgba(0,0,0,0.2) 51%,rgba(0,0,0,0) 51%),linear-gradient(-175deg,rgba(0,0,0,0.2) 51%,rgba(0,0,0,0) 51%),radial-gradient(circle at center,#ffa6b6 45%,rgba(0,0,0,0.2) 45%,rgba(0,0,0,0.2) 52%,rgba(0,0,0,0) 52%),linear-gradient(45deg,rgba(0,0,0,0) 48%,rgba(0,0,0,0.2) 48%,rgba(0,0,0,0.2) 52%,rgba(0,0,0,0) 52%),linear-gradient(65deg,rgba(0,0,0,0) 48%,rgba(0,0,0,0.2) 48%,rgba(0,0,0,0.2) 52%,rgba(0,0,0,0) 52%),linear-gradient(22deg,rgba(0,0,0,0) 48%,rgba(0,0,0,0.2) 48%,rgba(0,0,0,0.2) 54%,rgba(0,0,0,0) 54%);
  background-size: 100% 100%,100% 100%,100% 100%,100% 100%,100% 100%,100% 75%,100% 95%,100% 60%;
  background-position: center center;
  border-top-left-radius: 120px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 70px;
  border-top: 2px solid black;
  border-left: 2px solid black;
  transform: rotate(45deg);
  z-index: 1;
}

.card-title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: var(--font-color);
}

.card-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--font-color-sub);
}

.card-divider {
  width: 100%;
  border: 1px solid var(--main-color);
  border-radius: 50px;
}

.card-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.card-price {
  font-size: 20px;
  font-weight: 500;
  color: var(--font-color);
}

.card-price span {
  font-size: 20px;
  font-weight: 500;
  color: var(--font-color-sub);
}

.card-btn {
  height: 35px;
  background: var(--bg-color);
  border: 2px solid var(--main-color);
  border-radius: 5px;
  padding: 0 15px;
  transition: all 0.3s;
}

.card-btn svg {
  width: 100%;
  height: 100%;
  fill: var(--main-color);
  transition: all 0.3s;
}

.card-img:hover {
  transform: translateY(-3px);
}

.card-btn:hover {
  border: 2px solid var(--main-focus);
}

.card-btn:hover svg {
  fill: var(--main-focus);
}

.card-btn:active {
  transform: translateY(3px);
}
.products-container {
  display: flex;
  justify-content: center; /* توسيط أفقي */
  align-items: center;     /* توسيط عمودي */
  gap: 20px;               /* مسافة بين البطاقات */
  flex-wrap: nowrap;       /* صف واحد فقط */
  padding: 40px;
  overflow-x: auto;        /* تمرير أفقي لو صغر العرض */
}

.card {
  flex: 0 0 auto; /* لا يتمدد */
  width: 250px;   /* يمكنك التعديل حسب الحجم المطلوب */
}
/* From Uiverse.io by vinodjangid07 */ 
.button {
  width: 120px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  cursor: pointer;
  border: 3px solid rgb(255, 239, 94);
  background-color: rgb(255, 239, 94);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.137);
}

.text {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(27, 27, 27);
  color: white;
}

.arrow path {
  fill: rgb(19, 19, 19);
}

.button:hover .arrow {
  animation: slide-in-left 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-8px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.button:active {
  transform: scale(0.97);
}
/* From Uiverse.io by pathikcomp */ 
.main > .inp {
  display: none;
}
.main {
  font-weight: 800;
  color: white;
  background-color: green;
  padding: 3px 15px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  height: 2.5rem;
  width: 12rem;
  position: relative;
  cursor: pointer;
  justify-content: space-between;
}

.arrow {
  height: 34%;
  aspect-ratio: 1;
  margin-block: auto;
  position: relative;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}

.arrow::after,
.arrow::before {
  content: "";
  position: absolute;
  background-color: white;
  height: 100%;
  width: 2.5px;
  border-radius: 500px;
  transform-origin: bottom;
}

.arrow::after {
  transform: rotate(35deg) translateX(-0.5px);
}
.arrow::before {
  transform: rotate(-35deg) translateX(0.5px);
}

.main > .inp:checked + .arrow {
  transform: rotateX(180deg);
}

.menu-container {
  background-color: white;
  color: green;
  border-radius: 10px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 130%;
  overflow: hidden;
  clip-path: inset(0% 0% 0% 0% round 10px);
  transition: all 0.4s;
}

.menu-list {
  --delay: 0.4s;
  --trdelay: 0.15s;
  padding: 8px 10px;
  border-radius: inherit;
  transition: background-color 0.2s 0s;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
}

.menu-list::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 95%;
}

.menu-list:hover {
  background-color: rgb(223, 223, 223);
}

.inp:checked ~ .menu-container {
  clip-path: inset(10% 50% 90% 50% round 10px);
}

.inp:not(:checked) ~ .menu-container .menu-list {
  transform: translateY(0);
  opacity: 1;
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(1) {
  transition:
    transform 0.4s var(--delay),
    opacity 0.4s var(--delay);
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(2) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 1)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 1));
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(3) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 2)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 2));
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(4) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 3)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 3));
}

.bar-inp {
  display: none;
  visibility: hidden;
}

.bar {
  display: flex;
  height: 50%;
  width: 20px;
  flex-direction: column;
  gap: 3px;
}

.bar-list {
  --transform: -25%;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: white;
  transition: all 0.4s;
  position: relative;
}

.inp:not(:checked) ~ .bar > .top {
  transform-origin: top right;
  transform: translateY(var(--transform)) rotate(-45deg);
}

.inp:not(:checked) ~ .bar > .middle {
  transform: translateX(-50%);
  opacity: 0;
}

.inp:not(:checked) ~ .bar > .bottom {
  transform-origin: bottom right;
  transform: translateY(calc(var(--transform) * -1)) rotate(45deg);
}
.menu-container {
  pointer-events: none; /* تمنع التفاعل مع القائمة عندما تكون مخفية */
}

.inp:not(:checked) ~ .menu-container {
  pointer-events: auto; /* تسمح بالتفاعل مع القائمة عندما تكون ظاهرة */
}
.menu-container {
  pointer-events: none;
  z-index: 10; /* تأكد أنها فوق العناصر الأخرى */
}

.inp:not(:checked) ~ .menu-container {
  pointer-events: auto;
}
/* nav العام */
.navbar {
  position: fixed;
  top: 20px;
  left: 20px;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  z-index: 999;
  font-family: sans-serif;
}

/* زر الفتح */
.menu-toggle {
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

/* القائمة */
.menu-items {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: none;
}

.menu-items li {
  margin: 8px 0;
}

.menu-items li a {
  text-decoration: none;
}

.menu-items li a:hover {
  text-decoration: underline;
}
footer {
            background: green;
            color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .footer-top {
            display: flex;
            flex-wrap: wrap;
            padding: 40px 30px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: rgba(5, 80, 5, 0.888);
            border-radius: 3px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 0.95rem;
        }
        
        .footer-column ul li a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-column ul li a i {
            margin-right: 8px;
            width: 20px;
            text-align: center;
        }
        
        .footer-middle {
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            background: rgba(0, 0, 0, 0.1);
        }
        
        .app-download {
            display: flex;
            gap: 20px;
        }
        
        .app-btn {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px 20px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .app-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        .app-btn i {
            font-size: 2rem;
            margin-right: 12px;
        }
        
        .app-text {
            display: flex;
            flex-direction: column;
        }
        
        .app-text span:first-child {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .app-text span:last-child {
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .footer-bottom {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .legal-links a {
            color: rgba(14, 87, 14, 0.945);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .legal-links a:hover {
            color: white;
            text-decoration: underline;
        }
        
        .copyright {
            font-size: 0.9rem;
            color: rgba(12, 74, 12, 0.888);
        }
        
        @media (max-width: 768px) {
            .footer-middle {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .app-download {
                flex-direction: column;
            }
        }
/* From Uiverse.io by deamelo */ 
.main {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.up {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.down {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.card1 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 90px 5px 5px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 0.2s ease-in-out;
}

.whatsapp {
  margin-top: 1.5em;
  margin-left: 1.2em;
  fill: #00ff00;
}

.card2 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 90px 5px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 0.2s ease-in-out;
}

.linkedin {
  margin-top: 1.5em;
  margin-left: -0.9em;
  fill: #0077b5;
}

.card3 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 5px 5px 90px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 0.2s ease-in-out;
}

.github {
  margin-top: -0.6em;
  margin-left: 1.2em;
}

.card4 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 5px 90px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 0.2s ease-in-out;
}

.discord {
  margin-top: -0.9em;
  margin-left: -1.2em;
  fill: #8c9eff;
}

.card1:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #00ff00;
}

.card1:hover .whatsapp {
  fill: white;
}

.card2:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #0077b5;
}

.card2:hover .linkedin {
  fill: white;
}

.card3:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: black;
}

.card3:hover .github {
  fill: white;
}

.card4:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #8c9eff;
}

.card4:hover .discord {
  fill: white;
}
.link{
  transform: translatey(-90px);
}
.cart-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
}

.cart-panel {
  position: fixed;
  top: 70px;
  right: 20px;
  width: 250px;
  max-height: 300px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 1000;
  overflow-y: auto;
  border-radius: 8px;
}
nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.card-btn {
  z-index: 10;
  position: relative;
}
.card-btn {
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.card-btn svg {
  pointer-events: none;
}
/* From Uiverse.io by alexruix */ 
.group {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  max-width: 190px;
}

.input {
  height: 40px;
  line-height: 28px;
  padding: 0 1rem;
  width: 100%;
  padding-left: 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  background-color: #D9E8D8;
  color: #0d0c22;
  box-shadow: 0 0 5px #C1D9BF, 0 0 0 10px #f5f5f5eb;
  transition: .3s ease;
}

.input::placeholder {
  color: #777;
}

.icon {
  position: absolute;
  left: 1rem;
  fill: #777;
  width: 1rem;
  height: 1rem;
}
.sear{
  align-items: center;
  transform: translatex(655px);
}
.cree{
  font-size: 16px;
}
/* From Uiverse.io by abrahamcalsin */ 
.card-client {
  background: #2cb5a0;
  width: 13rem;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  border: 4px solid #7cdacc;
  box-shadow: 0 6px 10px rgba(207, 212, 222, 1);
  border-radius: 10px;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.card-client:hover {
  transform: translateY(-10px);
}

.user-picture {
  overflow: hidden;
  object-fit: cover;
  width: 5rem;
  height: 5rem;
  border: 4px solid #7cdacc;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.user-picture svg {
  width: 2.5rem;
  fill: currentColor;
}

.name-client {
  margin: 0;
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
}

.name-client span {
  display: block;
  font-weight: 200;
  font-size: 16px;
}

.social-media:before {
  content: " ";
  display: block;
  width: 100%;
  height: 2px;
  margin: 20px 0;
  background: #7cdacc;
}

.social-media a {
  position: relative;
  margin-right: 15px;
  text-decoration: none;
  color: inherit;
}

.social-media a:last-child {
  margin-right: 0;
}

.social-media a svg {
  width: 1.1rem;
  fill: currentColor;
}

/*-- Tooltip Social Media --*/
.tooltip-social {
  background: #262626;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 0.5rem 0.4rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -90%);
  transition: all 0.2s ease;
  z-index: 1;
}

.tooltip-social:after {
  content: " ";
  position: absolute;
  bottom: 1px;
  left: 50%;
  border: solid;
  border-width: 10px 10px 0 10px;
  border-color: transparent;
  transform: translate(-50%, 100%);
}

.social-media a .tooltip-social:after {
  border-top-color: #262626;
}

.social-media a:hover .tooltip-social {
  opacity: 1;
  transform: translate(-50%, -130%);
}
/* From Uiverse.io by m1her */ 
.radio-input {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 8px;
  overflow: hidden;
  height: 94px;
}

.radio-input input {
  display: none;
}

.radio-input .label {
  width: 70px;
  height: 80px;
  background-color: #2a2a2a;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8px 6px;
  border-top: 1px solid #383838;
  transition: all 0.1s linear;
  position: relative;
  z-index: 2;
}

.label .back-side {
  position: absolute;
  top: -10px;
  left: 0px;
  background-color: #2a2a2a;
  border-radius: 4px 4px 2px 2px;
  width: 100%;
  height: 14px;
  box-shadow:
    inset 0 5px 3px 1px rgba(0, 0, 0, 0.5),
    inset 0px -5px 2px 0px rgba(56, 163, 224, 0.1);
  transform: perspective(300px) rotateX(50deg);
  z-index: 1;
  opacity: 0;
  transition: all 0.1s linear;
}

.label:has(input[type="radio"]:checked) .back-side {
  opacity: 1;
}

.label:has(input[type="radio"]:checked) {
  transform: perspective(200px) rotateX(-18deg);
  transform-origin: 50% 40%;
  box-shadow: inset 0px -20px 15px 0px rgba(0, 0, 0, 0.5);
  border-top: 1px solid #2589c362;
  margin-top: 6px;
  border-radius: 0 0 4px 4px;
}

.label .text {
  color: black;
  font-size: 15px;
  line-height: 12px;
  padding: 0px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.1s linear;
  text-shadow: -1px -1px 1px rgb(224, 224, 224, 0.1);
}

.label input[type="radio"]:checked + .text {
  color: #258ac3;
  text-shadow:
    0px 0px 8px rgb(37, 138, 195),
    1px 1px 2px white;
}

.label .bottom-line {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background-color: white;
  box-shadow: 0 0 3px 0px rgb(19, 19, 19);
  border-top: 1px solid #383838;
  transition: all 0.1s linear;
}

.label:has(input[type="radio"]:checked) .bottom-line {
  background-color: white;
  border-top: 1px solid #258ac340;
}
.playy{
  transform: translatex(635px);
  padding-top: 60px;
}
.text{
  color: white;
}





