@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');

* {
  font-family: DM Sans, sans-serif;
  --accent: #a87b8f;
}

body {
  margin: 0;
}

.wrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  
  background: linear-gradient(135deg, #2a0000 0.000%, #5c1a1a 50.000%, #3d0a0a 100.000%);
}

.container {
  background: #ffffff75;
  border: 3px #ffffff35 solid;
  backdrop-filter: blur(25px);
  border-radius: 16px;
  padding: 8px;
  width: 380px;
  max-width: 100%;
}

.name-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.name {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.description {
  font-weight: 200px;
  color: #fff;
}

.link-wrapper {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.link-wrapper > a {
  background: #fff;
  color: var(--accent);
  border-radius: 16px;
  padding: 8px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  transition: 0.3s ease;
}

.link-wrapper > a:hover {
  scale: 1.01;
}

.link-wrapper > a:active {
  scale: 0.99;
}


/*.footer-links {
  display: flex;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 0px;
}

.footer-links > a {
  color: #fff;
  text-decoration: none;
}

.footer-links > a:hover {
  color: #f5f5f5;
}*/
/* Icon Footer (Bottom Center) */

.footer-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.footer-icon > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-icon > a:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.footer-icon > a:active {
  scale: 0.95;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .wrapper {
    height: auto;
    padding: 16px;
    padding-bottom: 90px;
    min-height: 100vh;
  }

  .container {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
  }

  .name {
    font-size: 2rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .link-wrapper > a {
    padding: 10px;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .footer-icon > a {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .wrapper {
    height: auto;
    padding: 12px;
    padding-bottom: 90px;
  }

  .container {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
  }

  .name {
    font-size: 1.75rem;
  }

  .description {
    font-size: 0.8rem;
  }

  .link-wrapper {
    gap: 5px;
    margin-top: 12px;
  }

  .link-wrapper > a {
    padding: 8px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .footer-icon > a {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}
