@font-face {
  font-family: "DinoFiles";
  src: url("Dinofiles.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  background: linear-gradient(45deg, rgba(0,0,0,1) 25%, rgb(68,39,71) 100%);
  min-height: 100%;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.profile-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}

.name {
  font-family: "DinoFiles", sans-serif;
  color: rgb(245, 152, 255);
}

.card {
  filter: drop-shadow(0 0 0.75rem rgb(245, 152, 255));
  border-radius: 25px;
  border: 4px solid rgb(245, 152, 255);
  padding: 20px 30px;
  max-width: 100%;
  width: max-content;
  text-align: center;
  margin-bottom: 15px;
}

ul {
  list-style: none;
  margin: 15px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ul li {
  background: rgba(245, 152, 255, 0.08);
  border: 1px solid rgba(245, 152, 255, 0.4);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 16px;
  color: white;
  transition: 0.2s ease;
}

ul li:hover {
  background: rgba(245, 152, 255, 0.15);
  box-shadow: 0 0 12px rgba(245, 152, 255, 0.5);
  transform: translateY(-2px);
}

ul a {
  color: rgb(245, 152, 255);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: rgb(245, 152, 255);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

ul a:hover {
  text-shadow: 0 0 6px rgb(245, 152, 255);
}

ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.socials li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials li:hover .icon {
  filter: drop-shadow(0 0 10px rgba(245, 152, 255, 1));
  transform: scale(1.1);
  transition: 0.2s ease;
}

.apps li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.apps li:hover .icon {
  filter: drop-shadow(0 0 10px rgba(245, 152, 255, 1));
  transform: scale(1.1);
  transition: 0.2s ease;
}

.better-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-card {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.icon {
  width: 20px;
  height: 20px;
  fill: rgb(245, 152, 255);
  filter: drop-shadow(0 0 6px rgba(245, 152, 255, 0.7));
  flex-shrink: 0;
}

.card ul {
  align-items: center;
}

.translate-icon {
    width: 30px;
    height: 30px;
    fill: rgb(245, 152, 255);
    filter: drop-shadow(0 0 6px rgba(245, 152, 255, 0.7));
}

#translate-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  z-index: 999;
}

#translate-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(245, 152, 255, 1);
}
