body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at top, #120032, #0a001a);
  text-align: center;
  color: #fff;
  overflow-x: hidden;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}
.hero {
  height: 600px;
  width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  overflow: hidden;
}

/* Gradient overlay on top of background image */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(138, 43, 226, 0.55) 0%,
    rgba(26, 26, 26, 0.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: min-content;
  padding: 48px 36px;
  color: #eaeaea;
  max-width: 100%;
}

.hero-title {
  font-size: 160px;
  text-align: center;
  font-weight: 800;
  margin: 0 0 18px 0;
  background: linear-gradient(90deg, #ff4b2b, #8a2be2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 75px;
  }
}

.hero-desc {
  font-size: 1.25em;
  margin: 0;
  line-height: 1.5;
}

.cta-btn {
  display: inline-block;
  padding: 16px 44px;
  background: linear-gradient(90deg, #8a2be2 60%, #ff4b2b 100%);
  color: #fff;
  font-size: 1.18em;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 24px #8a2be244;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
  margin-top: 10px;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #ff4b2b 60%, #8a2be2 100%);
  transform: scale(1.06);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 16px 0 16px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  margin-top: 32px;
}
.feature-card {
  background: rgba(34, 34, 44, 0.3);
  border-radius: 14px;
  box-shadow: 0 2px 24px #8a2be222;
  padding: 36px 24px 28px 24px;
  text-align: center;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.feature-card:hover {
  box-shadow: 0 8px 48px #8a2be2aa;
  transform: translateY(-6px) scale(1.03);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 12px #8a2be2aa);
}
.feature-title {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff4b2b, #8a2be2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-title1 {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc {
  color: #eaeaea;
  font-size: 1.05em;
  line-height: 1.5;
}

.section-divider {
  margin: 64px auto 0 auto;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #8a2be2, #ff4b2b 80%);
  opacity: 0.7;
}

.carousel-container {
  margin: 64px auto 0 auto;
  max-width: 600px;
  background: linear-gradient(
    135deg,
    rgba(34, 34, 44, 0.3) 60%,
    rgba(138, 43, 226, 0.18) 100%
  );
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(138, 43, 226, 0.18);
  padding: 40px 30px 35px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.carousel-title {
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ff4b2b, #8a2be2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn {
  background: #8a2be2;
  border: none;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 50%;
  margin: 0 10px;
  box-shadow: 0 2px 8px rgba(138, 43, 226, 0.15);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.carousel-btn:hover {
  background: #fff;
  color: #8a2be2;
  transform: scale(1.1);
}
.carousel-btn:active {
  transform: scale(0.95) rotate(-8deg);
  box-shadow: 0 0 16px #8a2be2;
}
.carousel-review {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 0.5s;
  transition: box-shadow 0.3s;
}
.carousel-review:hover {
  box-shadow: 0 0 24px #8a2be2aa;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 8px;
  border: 2px solid #8a2be2;
  box-shadow: 0 2px 8px #8a2be2;
  object-fit: cover;
  background: #222;
}
.stars {
  font-size: 1.5em;
  color: gold;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px #8a2be2;
}
.carousel-review p {
  font-size: 1.13em;
  margin-bottom: 10px;
  color: #fff;
  font-style: italic;
}
.carousel-review .reviewer {
  font-weight: bold;
  color: #8a2be2;
  font-size: 1em;
  margin-top: 8px;
}

.site-footer {
  background: linear-gradient(90deg, #1a1a1a 60%, #8a2be2 100%);
  color: #fff;
  padding: 32px 0 18px 0;
  text-align: center;
  margin-top: 80px;
  box-shadow: 0 -2px 16px #8a2be244;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-social a {
  display: inline-block;
  margin: 0 8px;
  transition: transform 0.2s;
}
.footer-social a:hover {
  transform: scale(1.2) rotate(-8deg);
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 6px #8a2be2aa);
}

@media (max-width: 900px) {
  .hero-content {
    padding: 32px 8px 28px 8px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 32px 8px 0 8px;
  }
  .carousel-container {
    padding: 24px 8px 20px 8px;
  }
}
/* Updated button styling to use the global gradient from home.css and keep the same animation */

button {
  position: relative;
  padding: 10px 20px;
  border-radius: 7px;
  border: 1px solid #8a2be2;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ff4b2b, #8a2be2 80%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-family: 'Inter', sans-serif;
}

button:hover {
  background: linear-gradient(90deg, #8a2be2 60%, #ff4b2b 100%);
  box-shadow: 0 0 30px 5px #8a2be2cc;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}

button::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

button:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}
.outer {
  width: 300px;
  height: 250px;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
  position: relative;
}

.dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0 10px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
  0%,
  100% {
    top: 10%;
    right: 10%;
  }
  25% {
    top: 10%;
    right: calc(100% - 35px);
  }
  50% {
    top: calc(100% - 30px);
    right: calc(100% - 35px);
  }
  75% {
    top: calc(100% - 30px);
    right: 10%;
  }
}

.outer {
  width: 300px;
  height: 250px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(120deg, #8a2be2 0%, #ff4b2b 100%);
  position: relative;
  box-shadow:
    0 4px 32px #8a2be244,
    0 1.5px 8px #8a2be222;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.outer:hover {
  box-shadow:
    0 8px 48px #8a2be2aa,
    0 2px 16px #ff4b2b55;
  transform: translateY(-6px) scale(1.03);
}

.card {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: none;
  background: rgba(34, 34, 44, 0.85);
  box-shadow: 0 2px 24px #8a2be222;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  color: #fff;
  backdrop-filter: blur(12px);
  transition:
    box-shadow 0.3s,
    background 0.3s;
}

.card .text {
  font-weight: 800;
  font-size: 3.2rem;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #ff4b2b 20%, #8a2be2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: 1px;
}

.card > div:not(.text):not(.ray):not(.line) {
  font-size: 1.15rem;
  color: #eaeaea;
  font-weight: 500;
  margin-bottom: 4px;
}

.ray {
  width: 220px;
  height: 45px;
  border-radius: 100px;
  position: absolute;
  background: linear-gradient(90deg, #ff4b2b 0%, #8a2be2 100%);
  opacity: 0.18;
  box-shadow: 0 0 50px #8a2be2;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}

.dot {
  width: 8px;
  aspect-ratio: 1;
  position: absolute;
  background: linear-gradient(135deg, #ff4b2b 40%, #8a2be2 100%);
  box-shadow: 0 0 12px #8a2be2cc;
  border-radius: 50%;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

.line {
  width: 100%;
  height: 1px;
  position: absolute;
  background: linear-gradient(90deg, #8a2be2 0%, #ff4b2b 100%);
  opacity: 0.18;
}
.topl {
  top: 10%;
}
.bottoml {
  bottom: 10%;
}
.leftl {
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #8a2be2 0%, #ff4b2b 100%);
  opacity: 0.18;
}
.rightl {
  right: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #ff4b2b 0%, #8a2be2 100%);
  opacity: 0.18;
}
.showoff-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-end;
  margin: 32px 0;
  flex-wrap: wrap;
}
.gradient {
  background: linear-gradient(90deg, #ff4b2b, #8a2be2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}
.loader {
  width: 112px;
  height: 112px;
}

.box1,
.box2,
.box3 {
  border: 16px solid #f5f5f5;
  box-sizing: border-box;
  position: absolute;
  display: block;
}

.box1 {
  width: 112px;
  height: 48px;
  margin-top: 64px;
  margin-left: 0px;
  animation: abox1 4s 1s forwards ease-in-out infinite;
}

.box2 {
  width: 48px;
  height: 48px;
  margin-top: 0px;
  margin-left: 0px;
  animation: abox2 4s 1s forwards ease-in-out infinite;
}

.box3 {
  width: 48px;
  height: 48px;
  margin-top: 0px;
  margin-left: 64px;
  animation: abox3 4s 1s forwards ease-in-out infinite;
}

@keyframes abox1 {
  0% {
    width: 112px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  12.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  25% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  37.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  50% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  62.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  75% {
    width: 48px;
    height: 112px;
    margin-top: 0px;
    margin-left: 0px;
  }

  87.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  100% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }
}

@keyframes abox2 {
  0% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  12.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  25% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  37.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  50% {
    width: 112px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  62.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  75% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  87.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  100% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }
}

@keyframes abox3 {
  0% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  12.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  25% {
    width: 48px;
    height: 112px;
    margin-top: 0px;
    margin-left: 64px;
  }

  37.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  50% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  62.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  75% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  87.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  100% {
    width: 112px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }
}
.loader2 {
  width: 45px;
  height: 40px;
  background:
    linear-gradient(
      #0000 calc(1 * 100% / 6),
      #fff 0 calc(3 * 100% / 6),
      #0000 0
    ),
    linear-gradient(
      #0000 calc(2 * 100% / 6),
      #fff 0 calc(4 * 100% / 6),
      #0000 0
    ),
    linear-gradient(
      #0000 calc(3 * 100% / 6),
      #fff 0 calc(5 * 100% / 6),
      #0000 0
    );
  background-size: 10px 400%;
  background-repeat: no-repeat;
  animation: matrix 1s infinite linear;
}

@keyframes matrix {
  0% {
    background-position:
      0% 100%,
      50% 100%,
      100% 100%;
  }

  100% {
    background-position:
      0% 0%,
      50% 0%,
      100% 0%;
  }
}
.unblock-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20px;
  font-family: sans-serif;
}

.bar {
  width: 200px;
  height: 8px;
  background: linear-gradient(90deg, #ff4b2b, #8a2be2 80%);
  border-radius: 4px;

  box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
  animation: slide-apart 1.5s infinite ease-in-out;
}

.bar.bottom {
  animation-delay: 0.75s; /* staggered for cool effect */
}

.loader-text {
  margin-top: 20px;
  font-size: 1.2em;
  letter-spacing: 1px;
  color: #eaeaea;
  animation: pulse-text 1.2s infinite;
}

/* Animations */
@keyframes slide-apart {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(40px);
    opacity: 0.6;
  }
}

@keyframes pulse-text {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.lock-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  font-family: sans-serif;
}

.lock-body {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8a2be2, #ff4b2b);
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.6);
}

/* Shackle container */
.shackle {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 35px;
  display: flex;
  justify-content: space-between;
}

/* Left side stays fixed */
.shackle-left,
.shackle-right {
  width: 5px;
  height: 35px;
  background: #8a2be2;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(255, 75, 43, 0.6);
}

/* Connect the top with a curve */
.shackle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5px;
  right: 5px;
  height: 5px;
  background: #8a2be2;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 75, 43, 0.6);
}

/* Animate the RIGHT side to pop up */
.shackle-right {
  animation: pop-up 1.8s infinite ease-in-out;
}

.loader-text {
  margin-top: 20px;
  font-size: 1.2em;
  color: #eaeaea;
  animation: pulse-text 1.5s infinite;
}

/* Keyframes for right bar */
@keyframes pop-up {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Text pulse */
@keyframes pulse-text {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.toggle {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.toggle-input {
  display: none;
}

.toggle-track {
  width: 100px;
  height: 50px;
  background: #f87171; /* red by default */
  border-radius: 25px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.toggle-thumb {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Lock and unlock icons */
.icon {
  position: absolute;
  top: 5px;
  width: 40px;
  height: 40px;
  fill: #222;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.icon.lock {
  left: 55px; /* shows when OFF */
}

.icon.unlock {
  left: 5px; /* shows when ON */
  opacity: 0; /* hidden initially */
}

/* Checked state */
.toggle-input:checked + .toggle-track {
  background: linear-gradient(90deg, #ff4b2b, #8a2be2);
}

.toggle-input:checked + .toggle-track .toggle-thumb {
  transform: translateX(50px);
}

.toggle-input:checked + .toggle-track .icon.lock {
  opacity: 0;
}

.toggle-input:checked + .toggle-track .icon.unlock {
  opacity: 0.7;
}
.fast-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 10px;
  font-family: sans-serif;
}

.track {
  position: relative;
  width: 240px;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.pulse {
  position: absolute;
  top: 0;
  left: -60px;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, #ff4b2b, #8a2be2);
  box-shadow: 0 0 20px #8a2be2;
  border-radius: 5px;
  animation: dash 1s infinite linear;
}

.loader-text {
  margin-top: 16px;
  color: #eaeaea;
  font-size: 1.1em;
  letter-spacing: 1px;
  animation: pulse-text 1.5s infinite ease-in-out;
}

/* Animations */
@keyframes dash {
  0% {
    left: -60px;
  }
  100% {
    left: 240px;
  }
}

@keyframes pulse-text {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.mind-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  font-family: sans-serif;
}

.ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 4px solid;
  border-color: #ff4b2b transparent #8a2be2 transparent;
  border-radius: 50%;
  animation: ripple 2s infinite ease-out;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.ring:nth-child(2) {
  animation-delay: 0.5s;
}

.ring:nth-child(3) {
  animation-delay: 1s;
}

.loader-text {
  margin-top: 120px;
  font-size: 1.1em;
  color: #eaeaea;
  letter-spacing: 1px;
  animation: pulse-text 1.5s infinite ease-in-out;
}

/* Animations */
@keyframes ripple {
  0% {
    transform: scale(0.3);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse-text {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.awesome-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-family: sans-serif;
  color: #eaeaea;
}

.lines-container {
  position: relative;
  width: 150px;
  height: 60px;
  overflow: hidden;
}

.line1 {
  position: absolute;
  width: 4px;
  height: 60px;
  background: linear-gradient(180deg, #ff4b2b, #8a2be2);
  border-radius: 2px;
  transform: rotate(45deg);
  animation: moveUpDown 2s ease-in-out infinite;
  box-shadow: 0 0 10px #8a2be2;
}

/* Position each line horizontally with spacing */
.line1:nth-child(1) {
  left: 0;
  animation-delay: 0s;
}

.line1:nth-child(2) {
  left: 25px;
  animation-delay: 0.3s;
}

.line1:nth-child(3) {
  left: 50px;
  animation-delay: 0.6s;
}

.line1:nth-child(4) {
  left: 75px;
  animation-delay: 0.9s;
}

.line1:nth-child(5) {
  left: 100px;
  animation-delay: 1.2s;
}

.loader-text {
  margin-top: 20px;
  font-size: 1.2em;
  letter-spacing: 1px;
  animation: pulseText 1.5s ease-in-out infinite;
}

/* Up and down animation */
@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-15px) rotate(45deg);
  }
}

/* Text pulse */
@keyframes pulseText {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.heart-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}

.heart {
  fill: #ff4b2b;
  filter: drop-shadow(0 0 6px #ff4b2bcc);
  animation: pulseHeart 1.6s infinite ease-in-out;
  width: 80px;
  height: 72px;
  cursor: pointer;
}

@keyframes pulseHeart {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px #ff4b2bcc);
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px #ff4b2bcc);
  }
}
.card-loader-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  max-width: 280px; /* or whatever size fits your loaders */
  margin: 1rem auto 2rem auto;
}
