* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--bg);
  font-family: var(--sans);
  font-weight: 400;
  padding: 2rem;
  padding-top: 6rem;
  transition: background 0.3s ease;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 400px;
  width: 100%;
}

.profile-blob {
  position: relative;
  width: 240px;
  height: 240px;
  margin-bottom: 1rem;
}

.blob {
  width: 100%;
  height: 100%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 20px 40px var(--glow);
  transition: border-radius 0.6s ease;
  overflow: hidden;
}

.blob:hover {
  border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
}

.blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.nav-pages {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.nav-page {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-page:hover {
  transform: translateY(-2px);
  background: var(--accent-light);
  border-color: var(--accent);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.link-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.link-btn span {
  font-size: 18px;
}

@media (max-width: 600px) {
  .rg-nav-title { display: none; }
  .rg-nav { padding: 0.75rem 1rem; }
}

@media (max-width: 480px) {
  .container {
    gap: 1.5rem;
  }

  .profile-blob {
    width: 200px;
    height: 200px;
  }

  .name {
    font-size: 24px;
  }

  .link-btn {
    padding: 0.8rem 1.25rem;
    font-size: 13px;
  }
}
