:root {
  --primary: #c41e3a;
  /* Deep Red from Grupo Vise logo */
  --primary-hover: #a01830;
  --bg-dark: #0a0a0a;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-white: #ffffff;
  --text-muted: #a3a3a3;
  /* Silver-grey from logo */
  --font-family: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: #000;
  background-image:
    radial-gradient(at 0% 0%, hsla(354, 73%, 15%, 1) 0, transparent 50%),
    radial-gradient(at 100% 100%, hsla(0, 0%, 20%, 1) 0, transparent 50%),
    radial-gradient(at 50% 50%, hsla(0, 0%, 5%, 1) 0, transparent 50%),
    linear-gradient(180deg, #050505 0%, #121212 100%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  padding: 20px;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile {
  text-align: center;
}

.profile-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 20px rgba(196, 30, 58, 0.4));
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.profile-img:hover {
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 0 30px rgba(196, 30, 58, 0.6));
}

.profile h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}

.profile p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.links-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.link-card:hover::before {
  transform: translateX(100%);
}

.link-card:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
}

.link-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.link-icon {
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.link-text {
  font-weight: 500;
  font-size: 1rem;
}

.chevron {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.link-card:hover .chevron {
  transform: translateX(4px);
  color: var(--primary);
}

footer {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}