@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap");

html,
body {
  /* font-family: "TikTok Sans", sans-serif; */
  font-family: "DM Sans", sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  background: url("/assets/img/sr_background.jpeg") no-repeat top center fixed;
  background-size: cover;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

/* Utilities */

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mobile-container {
  /* background-color: #fff; */
  /* background-image: url("/assets/img/sr_background.jpeg"); */
  background-size: 100%;
  max-width: 400px;
  margin: 30px auto;
  padding: 30px 20px;
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  text-align: center;
}
.profile-pic {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
}
.username {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}
.link-btn {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: none;
}

.link-btn-animated {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  background: transparent;
  border: 2px solid transparent;
  font-weight: 700;
}

.link-btn-animated::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    #00c9ff,
    #92fe9d,
    #f5576c,
    #f093fb,
    #00c9ff
  );
  background-size: 400% 400%;
  animation: gradientBorder 6s linear infinite;
  z-index: -1;
  transform: rotate(0deg);
}

.link-btn-animated::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #e91e63;
  border-radius: 20px;
  z-index: -1;
}

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

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.social-icons a {
  color: #333;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #e91e63;
}

.custom-btn {
  background-color: #e91e63 !important;
}

.logo-container {
  margin-bottom: 20px;
}

.logo {
  width: 100%;
  max-width: 120px;
  height: auto;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
}
@media (max-width: 600px) {
  .mobile-container {
    padding: 15px;
    width: 100%;
  }
  .profile-pic {
    width: 100%;
    height: auto;
  }
  .username {
    font-size: 1.2rem;
  }
  .link-btn {
    /* font-size: 1rem; */
  }
  .social-icons a {
    font-size: 1.2rem;
  }
}
