:root {
  /* BACKGROUND */
  --bg: #000000;

  /* CARDS / BUTTONS */
  --card-bg: rgba(255,255,255,0.08);
  --card-hover: rgba(255,255,255,0.12);
  --card-border: rgba(255,255,255,0.08);
  --card-border-hover: rgba(255,255,255,0.18);

  /* TEXT */
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.45);
  --text-dim: rgba(255,255,255,0.78);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL FONT */
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #000;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  overflow-x: hidden;
}
    
    .bg-image {
  position: fixed;
  inset: -60px;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-image: url("/img/profile.jpg");
  filter: blur(70px) saturate(0.8) contrast(1.1);
  transform: scale(1.25);
  opacity: 0.85;
}

/* grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28; /* control strength */
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;

}    
    
/* CONTAINER */
.container {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  background-color: rgba(13, 19, 16, .9);
  padding: 15px;
  border-radius: 18px;
}

/* PROFILE */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-top: 30px
}

.avatar {
  width: 120px;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: -10px;
}

.title-logo {
  width: 70%;
  max-width: 560px;
  height: auto;
  margin-bottom: 10px;
  object-fit: contain;
}

.bio {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 520px;
}

.bio a {
    color: white;
    text-decoration: none;
}

/* SECTION TITLE */
.section-title {
  width: 100%;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

/* LINK CARDS */
.link-card {
  width: 90%;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 5px 12px;
  min-height: 65px;

  text-decoration: none;
  color: var(--text);

  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;

  transition: 0.2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.link-card:hover {
  transform: translateY(-4px) scale(1.01);
  background: var(--card-hover);
  border-color: var(--card-border-hover);
}

/* TITLE */
.link-title {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.link-card:hover .arrow {
  transform: translateX(4px);
}

/* ICONS */
.link-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: center;
}

.socials .icon {
  background: transparent;
  border: none;
  padding: 0;
  width: auto;
  height: auto;
    transition: 0.2s ease;
}

.socials .icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.socials .icon:hover {
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

      .no-save {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
      
/* RESPONSIVE */
@media (max-width: 640px) {
body {
    padding: 0;
}
    
  .link-card {
    /*padding: 16px 18px;*/
  }
  
  .bio {
  font-size: 0.90rem;
}
.section-title {
  width: 100%;
  font-size: 0.8rem;
}
.link-title {
  font-size: .8rem;
}
  
  .container {
    border-radius: 0;
    max-width: 100%;
  }
  
}