/* Styles for Noorplay website */

/* Base transitions */
* {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

body {
  /* background: #19c3f7;
  background: linear-gradient(
    342deg,
    rgba(25, 195, 247, 1) 0%,
    rgba(46, 8, 143, 1) 48%,
    rgba(9, 9, 121, 1) 60%,
    rgba(234, 0, 255, 1) 84%
  ); */
  /* background: #ea00ff;
  background: linear-gradient(
    340deg,
    rgba(234, 0, 255, 1) 0%,
    rgba(46, 8, 143, 1) 44%,
    rgba(9, 9, 121, 1) 54%,
    rgba(0, 212, 255, 1) 85%
  ); */
  background-image: url("images/texture.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}
body::before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  opacity: 40%;
  background: #000000;
}
.open-el {
  transition: all 1s ease;
}
.open-el svg {
  transform: rotate(180deg);
}
.readmore-text a {
  color: #ffffff !important;
}
@keyframes pulseBtn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulseBtn 2s infinite;
}
.logo-container {
  margin: 0.6rem 0;
  max-width: 300px;
  text-align: center;
}

.logo-container img {
  width: 100%;
  margin: auto;
  /* filter: drop-shadow(0.1rem 0.2rem 0.1rem #000); */
}
.legal-text {
  position: relative;
}
.legal-text a {
  /* color: orange; */
  text-decoration: underline;
}
.success-msg {
  color: #039201;
  font-weight: bold;
}
.footer {
  position: relative;
  text-align: center;
}
.footer a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}
.legal-text p {
  color: #ffffff;
}
.readless-text {
  display: none;
}
.open-el .readless-text {
  display: block;
}
.open-el .readmore-text {
  display: none;
}
/* Device icons hover effects */
.device-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.white-box {
  /* -webkit-border-radius: 40px 0 40px 0; */
  /* -moz-border-radius: 40px 0 40px 0; */
  border-radius: 1rem;
}
.lang-switcher {
  /* -webkit-border-radius: 20px 0 20px 0;
  -moz-border-radius: 20px 0 20px 0;
  border-radius: 20px 0 20px 0; */
  border-radius: 0.5rem;

  border: none;
  transition: all 1s ease;
}
.lang-switcher:hover {
  background-color: rgb(167, 211, 247);
  -webkit-border-radius: 10px 0 10px 0;
  -moz-border-radius: 10px 0 10px 0;
  border-radius: 10px 0 10px 0;
}
.img-wrapper {
  text-align: center;
}
.error-box {
  background: #ffb4bc80;
  color: #f6051d;
  font-weight: 600;
  font-size: 14px;
}
.theme-icon {
  color: #ffffff;
}
#phoneForm #form-title {
  font-size: 16px;
  color: #666;
}
.device-icon:hover {
  transform: translateY(-5px) !important;
  filter: brightness(1.2);
}

/* Form focus effects */
#phoneInputContainer:focus-within,
#pinInputContainer:focus-within {
  border-color: currentColor;
  box-shadow: 0 6px 8px rgba(99, 102, 241, 0.3);
}

/* Button hover effects */
button[type="submit"] {
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(99, 102, 241, 0.3);
}
.theme-btn {
  font-size: 18px;
  background: #f9756a;
  background: linear-gradient(360deg, #46afc0 25%, #01778a 100%);
}

button[type="submit"]:active {
  transform: translateY(0);
}

.red-button {
  background: #1e1e1e;
}
.red-button:hover {
  background: #000000;
}

@media (max-width: 767px) {
  body {
    background-image: url("images/mobile-bg.jpg");
    background-position: top center;
    background-size: cover;
  }
}
