* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: auto;
}

*::-webkit-scrollbar {
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer & Edge */
  display: none; /* Hides the scrollbar for a cleaner look */
}

body {
  background: #141414;
  color: white;
  text-align: center;
  overflow: hidden; /* Keeps the body from scrolling */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 2px; /* Adjust the value as needed */
}

/* Wormhole Animation */
.wormhole-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 10%,
    rgba(50, 50, 50, 0.8) 50%,
    rgba(0, 0, 0, 1) 90%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fade-out 3s ease-out 0.2s forwards;
}

.wormhole {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 10px solid white;
  box-shadow: 0 0 15px white;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(3);
  }
  100% {
    transform: rotate(360deg) scale(5);
  }
}

@keyframes fade-out {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* Intro Text */
.intro {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  z-index: 999;
  opacity: 1;
  animation: fade-out 1.5s ease-out 2.3s forwards;
}

.vision {
  display: flex;
  font-size: 0.7rem;
  align-items: end;
  justify-content: center;
  margin-right: 200px;
}

/* Main Content (Hidden at Start) */
.main-content {
  position: absolute;
  width: 100%;
  top: -100vh;
  opacity: 0;
  transform: translateY(-200px);
  animation: fade-in 1.2s ease-out 3s forwards;
}

.header {
  height: 120px;
  width: 100%;
  border-radius: 0 0 20px 20px;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #1f1f1f;
  position: relative;
}

.menu-content {
  display: flex;
  height: 0;
  overflow: hidden;
  background: #1f1f1f;
  padding: 0 20px;
  text-align: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  transition: height 0.7s ease-in-out;
}

.menu-content.open {
  height: auto; /* Adjust to fit your content */
}

.prof-cont {
  display: flex;
  flex-direction: row-reverse; /* Change from column to row */
  margin-top: 30px;
  margin-right: 150px;
  gap: 20px;
}

/* Ensure Profile & Product size remains correct */
.profile {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #4c4c4c;
  cursor: pointer;
}

.cart {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #4c4c4c;
  cursor: pointer;
}

.product-cont {
  display: flex;
  flex-direction: row; /* Change from column to row */
  margin-top: 50px;
  margin-left: 150px;
  margin-bottom: 50px;
  gap: 20px;
}

.product {
  width: 320px;
  height: 160px;
  border-radius: 10px;
  background-color: #4c4c4c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.name {
  display: flex;
  margin-left: 60px;
  align-items: center;
}

.slog {
  font-size: 1.2rem;
}

.menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 8px;
  width: 56px;
  height: 56px;
  background-color: #33333300;
  cursor: pointer;
  margin-right: 30px;
  position: fixed;
  top: 32px; /* Stay at the top of expanded area */
  right: 30px; /* Stay on the right */
  z-index: 10; /* Stay above other elements */
}

.menu-button__line,
.menu-button::before,
.menu-button::after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-button.is-opened .menu-button__line {
  opacity: 0;
}

.menu-button.is-opened::before {
  transform: translateY(11px) rotate(45deg);
}

.menu-button.is-opened::after {
  transform: translateY(-11px) rotate(-45deg);
}

.news {
  height: 570px; /* Default for smaller screens (laptop) */
  margin: 100px 50px 50px 50px; /* Centered with margin */
  background-color: rgba(147, 147, 147, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  opacity: 0; /* Initially hidden */
  animation-delay: 2s; /* Animation delay if needed */
}

@keyframes fade-in {
  100% {
    opacity: 1;
    transform: translateY(0);
    top: 0vh;
  }
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  padding: 190px 0 0 0;
  opacity: 0; /* Initially invisible */
  animation: fade-in-icons 1s forwards 5s; /* Fade in after 5 seconds, duration of 1 second */
}

@keyframes fade-in-icons {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Arrows */
.arrows {
  background: #141414;
  color: white;
  border: none;
  font-size: 32px;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 1580px) {
  .arrows {
    font-size: 24px;
  }
}

@media (max-width: 1100px) {
  .arrows {
    font-size: 20px;
  }
}

.arrows:hover {
  scale: 1.2;
}

/* Icons */
.category-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.icon {
  font-size: 24px;
  opacity: 0.4;
  transition: transform 0.3s, opacity 0.3s;
  cursor: pointer;
}

@media (max-width: 1580px) {
  .icon {
    font-size: 20px;
  }
}

@media (max-width: 1100px) {
  .icon {
    font-size: 18px;
  }
}

.icon.active {
  opacity: 1;
  transform: scale(1.2);
}

/* Card Container */
.card-container {
  display: flex;
  overflow-x: auto; /* Allows horizontal scrolling */
  scroll-snap-type: x mandatory; /* Makes scrolling smooth */
  white-space: nowrap; /* Prevents wrapping */
  padding: 10px; /* Avoids cutting off content */
  grid-auto-flow: column;
  padding: 80px 30px 700px 30px;
  overscroll-behavior-inline: contain; /* Prevents unwanted side effects */
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth; /* Smooth scrolling effect */
  -webkit-overflow-scrolling: touch; /* Improves scrolling on mobile */
  gap: 50px;
  opacity: 0; /* Hidden at start */
  position: relative;
  align-items: center;
}

.card-container::-webkit-scrollbar {
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer & Edge */
  display: none; /* Hides the scrollbar for a cleaner look */
}

/* Individual Cards */
.card {
  position: relative;
  width: 660px;
  height: 330px;
  background-color: rgb(28, 28, 28);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: visible;
  z-index: 10;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 1580px) {
  .card {
    max-width: 550px;
    max-height: 275px;
  }
}

@media (max-width: 1100px) {
  .card {
    max-width: 450px;
    max-height: 225px;
  }
}

.cards {
  position: relative;
  width: 660px;
  height: 330px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: visible;
  border-radius: 20px;
}

@media (max-width: 1580px) {
  .cards {
    max-width: 550px;
    max-height: 275px;
    font-size: 1rem;
  }
}

@media (max-width: 1100px) {
  .cards {
    max-width: 450px;
    max-height: 225px;
    font-size: 0.8rem;
  }
}

.overlay {
  display: none; /* Hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
  z-index: 99; /* Place it behind the popup */
  pointer-events: all; /* Enable clicking only on the overlay */
}

.popup {
  display: none; /* Hidden */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-color: rgb(46, 46, 46);
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  z-index: 999;
  animation: fadeInArrow 0.2s ease-in-out, popCardsFlyIn 0.5s ease;
}

@keyframes popCardsFlyIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Pop-up Close Animation */
@keyframes popCardsFlyOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
}

.popup.show {
  display: block;
  animation: popCardsFlyIn 0.3s ease-out forwards;
}

/* Hide Pop-up with Animation */
.popup.hide {
  animation: popCardsFlyOut 0.3s ease-out forwards;
}

.close-popup {
  position: fixed;
  right: 25px;
  cursor: pointer;
  font-size: 1.5rem;
}

.see-more {
  position: fixed;
  right: 35px;
  bottom: 25px;
  cursor: pointer;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: bolder;
  text-decoration: none;
  color: white;
}

.charging-container {
  position: absolute;
  bottom: 130px; /* Adjust to place it inside the pop-up */
  left: 52%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  overflow: hidden;
}

.ball {
  position: absolute;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(0, 255, 153, 1) 30%,
    rgba(0, 255, 153, 0.5) 70%
  );
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 255, 145, 0.8); /* Glowing effect */
  animation: flyUp linear infinite;
}

/* Random sizes and positions */
.ball:nth-child(1) {
  width: 10px;
  height: 10px;
  left: 20%;
  background: radial-gradient(
    circle,
    rgb(76, 216, 190) 30%,
    rgba(0, 255, 153, 0.5) 70%
  );
  animation-duration: 2s;
}

.ball:nth-child(2) {
  width: 15px;
  height: 15px;
  left: 50%;
  background: radial-gradient(
    circle,
    rgb(0, 255, 136) 30%,
    rgba(0, 255, 157, 0.5) 70%
  );
  animation-duration: 2.5s;
}

.ball:nth-child(3) {
  width: 8px;
  height: 8px;
  left: 70%;
  background: radial-gradient(
    circle,
    rgb(0, 255, 98) 30%,
    rgba(0, 255, 153, 0.5) 70%
  );
  animation-duration: 1.8s;
}

.ball:nth-child(4) {
  width: 12px;
  height: 12px;
  left: 40%;
  background: radial-gradient(
    circle,
    rgb(0, 255, 55) 30%,
    rgba(0, 255, 213, 0.5) 70%
  );
  animation-duration: 2.2s;
}

.ball:nth-child(5) {
  width: 18px;
  height: 18px;
  left: 60%;
  background: radial-gradient(
    circle,
    rgb(76, 216, 190) 30%,
    rgba(0, 255, 153, 0.5) 70%
  );
  animation-duration: 3s;
}

.ball:nth-child(6) {
  width: 14px;
  height: 14px;
  left: 30%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.627) 30%,
    rgba(0, 255, 153, 0.637) 70%
  );
  animation-duration: 2.8s;
}

.ball:nth-child(7) {
  width: 9px;
  height: 9px;
  left: 10%;
  animation-duration: 2.1s;
}

.ball:nth-child(8) {
  width: 16px;
  height: 16px;
  left: 80%;
  background: radial-gradient(
    circle,
    rgb(0, 255, 98) 30%,
    rgba(0, 255, 153, 0.5) 70%
  );
  animation-duration: 2.6s;
}

/* Flying animation */
@keyframes flyUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-300px);
    opacity: 0;
  }
}

.popup-circle {
  position: absolute;
  bottom: 100px; /* Adjust to place it inside the pop-up */
  left: 50%;
  transform: translateX(-50%);
  width: 650px; /* Width makes it an oval */
  height: 100px; /* Height keeps it flat */
  background: linear-gradient(
    135deg,
    rgba(96, 96, 96, 0.5),
    rgba(96, 96, 96, 0.4),
    rgba(96, 96, 96, 0.3)
  );
  border-radius: 50%;
  box-shadow: inset 0px 2px 5px rgba(97, 97, 97, 0.6),
    inset 0px -2px 5px rgba(0, 0, 0, 0.2), 0px 5px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(123, 123, 123, 0.4);
  z-index: 2;
  animation: glassShine 3s infinite linear;
  border-radius: 50%;
}

@keyframes glassShine {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.wave-container {
  position: absolute;
  bottom: 28px; /* Adjust to place it inside the pop-up */
  left: 46.4%;
  transform: translateX(-50%);
  width: 656px;
  height: 118px;
  margin: 50px;
  /* No overflow: hidden here */
}

.wave {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(0, 255, 145, 0.5); /* Green glowing ring effect */
  background: transparent; /* Transparent center to create the hole */
  animation: ripple 3s ease-out infinite;
  opacity: 0;
  box-shadow: 0 0 15px rgba(0, 255, 145, 0.8); /* Glowing effect */
  z-index: 10; /* Makes sure the wave is on top of the container */
}

.wave:nth-child(1) {
  width: 667px;
  height: 94px;
  animation-delay: 0s;
}

.wave:nth-child(2) {
  width: 667px;
  height: 94px;
  animation-delay: 1s; /* Delay the second wave */
}

.wave:nth-child(3) {
  width: 667px;
  height: 94px;
  animation-delay: 2s; /* Delay the third wave */
}

/* Keyframes for fading in and shrinking rings with glowing effect */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1; /* Fade in smoothly */
  }
  40% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.popup-wall {
  position: absolute;
  bottom: 85px; /* Adjust to place it inside the pop-up */
  left: 50%;
  transform: translateX(-50%);
  width: 656px; /* Width makes it an oval */
  height: 118px; /* Height keeps it flat */
  background: #171717;
  border-radius: 45%;
  box-shadow: 10px 20px 50px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
}

.popup-card-charging {
  position: absolute;
  top: 0; /* Start inside the main card */
  left: 50%;
  top: 50px;
  transform: translateX(-50%) translateY(0px); /* Initially inside the card */
  width: 90%;
  background: rgb(77, 77, 77);
  color: rgb(255, 255, 255);
  padding: 20px;
  padding-top: 25px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.5s ease-out;
  pointer-events: none;
  z-index: -1; /* Keeps it behind the main card */
  right: 200px;
}

@media (max-width: 1580px) {
  .cards:hover .popup-card-charging {
    opacity: 1;
    transform: translateX(-50%) translateY(108%) !important; /* Moves downward smoothly */
  }
}

@media (max-width: 1100px) {
  .cards:hover .popup-card-charging {
    opacity: 1;
    transform: translateX(-50%) translateY(75%) !important; /* Moves downward smoothly */
  }
}

.popup-window-charging-title1 {
  padding: 20px 0px 15px 20px;
  text-align: left;
}

.popup-window-charging-text {
  padding: 0px 0px 15px 50px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 1.3px;
  line-height: 1.5;
  z-index: 99;
}

.cards:hover .popup-card-charging {
  opacity: 1;
  transform: translateX(-50%) translateY(127%); /* Moves downward smoothly */
}

.popup-card-phone {
  position: absolute;
  top: 0; /* Start inside the main card */
  left: 50%;
  top: 50px;
  transform: translateX(-50%) translateY(0px); /* Initially inside the card */
  width: 90%;
  background: rgb(77, 77, 77);
  color: rgb(255, 255, 255);
  padding: 20px;
  padding-top: 25px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.5s ease-out;
  pointer-events: none;
  z-index: -1; /* Keeps it behind the main card */
}

.cards:hover .popup-card-phone {
  opacity: 1;
  transform: translateX(-50%) translateY(127%); /* Moves downward smoothly */
}

ul {
  padding-left: 0px; /* Adjust left padding for spacing */
  text-align: left; /* Aligns the list to the right */
  padding-left: 20px; /* Optional: Adjust spacing */
  list-style: disc inside; /* Puts the bullets inside the text box */
}

li {
  padding: 5px;
}

.not-available {
  color: #888888;
}

/* Card Hover Effects */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes flyIn {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 50px;
    opacity: 1;
  }
}

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

.arrow {
  position: fixed;
  opacity: 0;
  visibility: visible; /* Makes sure it doesn't block clicks */
  animation: bounce 1.5s infinite ease-in-out, fadeInArrow 1s forwards; /* 1-second loop */
  animation-delay: 4s; /* Delay appearance */
  cursor: pointer;
  display: inline-block;
  bottom: 20px;
  width: 61.1px;
  height: 25.9px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 40px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: 50% calc(100% - 2px);
}

.arrow::before {
  transform: rotate(52.5deg);
}

.arrow::after {
  transform: rotate(-52.5deg);
}

.bottom-arrow {
  position: fixed;
  opacity: 0;
  visibility: hidden; /* Makes sure it doesn't block clicks */
  animation: bounce 1.5s infinite ease-in-out, fadeInArrow 1s forwards; /* 1-second loop */
  animation-delay: 0.3s; /* Delay appearance */
  cursor: pointer;
  display: none;
  bottom: 20px;
  width: 61.1px;
  height: 25.9px;
}

.bottom-arrow::before,
.bottom-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 40px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: 50% 2px;
}

.bottom-arrow::before {
  transform: rotate(52.5deg);
}

.bottom-arrow::after {
  transform: rotate(-52.5deg);
}

@keyframes fadeInArrow {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  } /* Start and end position */
  50% {
    transform: translateY(-10px);
  } /* Moves up */
}

.cardz {
  width: 550px;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #141414;
  font-size: 3rem;
  font-weight: bolder;
  cursor: cell;
}

#charging {
  background-image: radial-gradient(
      circle at center center,
      transparent,
      rgba(0, 0, 0, 0.3)
    ),
    repeating-linear-gradient(
      135deg,
      rgb(33, 33, 33) 0px,
      rgb(33, 33, 33) 2px,
      transparent 2px,
      transparent 10px,
      rgb(33, 33, 33) 10px,
      rgb(33, 33, 33) 11px,
      transparent 11px,
      transparent 21px
    ),
    repeating-linear-gradient(
      45deg,
      rgb(47, 47, 47) 0px,
      rgb(47, 47, 47) 4px,
      transparent 4px,
      transparent 8px
    ),
    linear-gradient(90deg, rgb(33, 33, 33), rgb(33, 33, 33));
}

#phone {
  background: linear-gradient(
    135deg,
    rgba(162, 162, 162, 0.15),
    rgba(162, 162, 162, 0.1),
    rgba(162, 162, 162, 0.05)
  );
  backdrop-filter: blur(5px);
  z-index: 2;
  animation: glassShine 3s infinite linear;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom {
  height: 300px;
  border-radius: 20px 20px 0 0;
  font-size: 1.5rem;
  padding: 20px;
  background: #1a1a1a;
  display: flex;
  justify-content: space-between; /* Space them evenly */
  align-items: flex-start; /* Align items at the top */
  width: 100%;
  opacity: 0; /* Ensure it's hidden initially */
  animation-delay: 2s;
}

.logo-bottom-cont {
  display: flex;
  margin-top: 20px;
  margin-left: 30px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1; /* Make all sections take equal space */
}

.copyright {
  font-size: small;
}

.privacy-policy {
  color: #aaaaaa;
  text-decoration: none;
}

.TOS {
  color: #aaaaaa;
  text-decoration: none;
}

.X {
  background: rgb(240, 240, 240);
  background: linear-gradient(
    208deg,
    rgba(240, 240, 240, 1) 0%,
    rgba(218, 215, 210, 1) 37%,
    rgba(126, 126, 126, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  margin: 5px;
}

.FB {
  background: rgb(12, 90, 255);
  background: linear-gradient(
    10deg,
    rgba(12, 90, 255, 1) 0%,
    rgba(25, 104, 250, 1) 46%,
    rgb(8, 160, 255) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  margin: 5px;
}

.IG {
  background: rgb(129, 52, 175);
  background: linear-gradient(
    141deg,
    rgba(129, 52, 175, 1) 0%,
    rgba(221, 42, 123, 1) 50%,
    rgba(245, 133, 41, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  margin: 5px;
}

.YT {
  background: rgb(255, 0, 0);
  background: linear-gradient(
    130deg,
    rgba(255, 0, 0, 1) 0%,
    rgba(255, 0, 51, 1) 64%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  margin: 5px;
}

.in {
  color: #e6e6e6;
  text-decoration: none;
  margin: 5px;
  font-size: 25px;
}

.tiktok {
  color: #000000;
  text-decoration: none;
  margin: 5px;
  text-shadow: #25f4ee -2px -1.5px, #ee1d52 2.5px 2px;
}

.footer-links {
  display: flex;
  flex-direction: row; /* Stack links vertically */
  gap: 6px;
  font-size: 14px;
  position: fixed;
  bottom: 15px;
  left: 20px;
  color: #aaaaaa;
  font-family: Arial, sans-serif;
}

.footer-center {
  display: flex;
  justify-content: center;
  flex-direction: column; /* Stack links vertically */
  gap: 5px;
  font-size: 14px;
  width: 40%;
}

.links {
  font-weight: 550;
  margin: 20px 0 0 0;
}

.subscribe {
  height: 50px;
  width: 300px;
  background-color: #1a1a1a;
  border: 2px solid #484848;
  border-radius: 50px;
  text-decoration: none;
  color: #ffffff;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 5px;
}

.subscribe:hover {
  border: 2px solid #484848;
  background-color: #b8b8b81a;
}

.subscribe:active {
  transform: scale(0.95); /* Shrinks the button by 5% when clicked */
}

.email-news {
  height: 70px;
  border-radius: 10px;
  background-color: #1a1a1a;
  border: 2px solid #484848;
  outline: none;
  margin: 10px;
  font-size: 20px;
  color: #ffffff;
  padding: 10px;
}

.news-text {
  margin-top: 15px;
}

.sub {
  display: flex;
  justify-content: center;
}

.floowus {
  font-size: smaller;
}

.footer-right {
  margin-top: 5%;
}

.support {
  color: #aaaaaa;
  text-decoration: none;
}
