/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: url("logo.png") no-repeat center center/cover;
  background: black;
  height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
main {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 15px; */
  backdrop-filter: blur(10px);
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */

  background: rgba(0, 0, 0, 0.6);
}

.container {
  text-align: center;
  max-width: 500px;
  width: 100%;
  padding: 20px;
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid white;
}

.profile h2 {
  color: white;
  margin-top: 10px;
}

.profile p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 15px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  display: block;
}

.link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Social Icons Container */
.social-icons {
  display: flex;
  gap: 10px;
  padding: 10px;
  padding-top: 20px;
  justify-content: center;
}

/* Icon Style */
.icon {
  font-size: 32px;
  color: white;
  text-decoration: none;
  /* border: 2px solid white; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Hover Effect */
.icon:hover {
  background: white;
  color: black;
  transform: scale(1.1);
}

/* Three Dots Trigger Button */
.menu-trigger {
  font-size: 24px;
  color: white;
  background: rgba(248, 248, 248);
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* Share Menu */
.share-menu {
  position: fixed;
  bottom: -240px;
  left: 0;
  width: 100%;
  background: white;
  padding: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
  transition: bottom 0.4s ease-in-out;
}

/* Header */
.share-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Close Button */
.close-btn {
  cursor: pointer;
  font-size: 18px;
  color: #333;
}

/* Link Preview */
.link-preview {
  background: rgba(0, 0, 0, 0.05);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 15px;
}
.link div {
  display: flex;
  justify-content: space-between;
}
.link div i {
  margin-top: 6px;
}
.link-preview strong {
  font-size: 16px;
}

.link-preview p {
  font-size: 14px;
  color: gray;
}

/* Social Icons (Scrollable) */
.social-icons {
  display: flex;
  overflow-x: auto;
  padding-bottom: 10px;
  gap: 15px;
}

.social-icons::-webkit-scrollbar {
  display: none;
}

/* Icon Styling */
.icon-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  font-size: 18px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.icon-share:hover {
  background: rgba(0, 0, 0, 0.1);
}

.icon-share span {
  font-size: 12px;
  margin-top: 5px;
}
