/* Base styles */
:root {
  --bg-color: #05070c;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --accent-color: rgba(255, 255, 255, 0.8);
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-color);
  background-size: cover;
  background-position: center;
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 12, 0.9);
  z-index: -1;
}

.container {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

/* Profile section */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-align: center;
}

.profile-alt-name {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.profile-location {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.profile-location svg {
  margin-right: 0.4rem;
}

/* Links section */
.links {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  list-style: none;
}

.links li {
  display: flex;
}

.link-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  text-decoration: none;
  color: var(--text-color);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.link-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  color: var(--text-color);
}

.link-text {
  font-size: 0.875rem;
  font-weight: normal;
}

/* Footer */
.footer {
  margin-top: 1rem;
  color: var(--text-tertiary);
  font-size: 0.75rem;
  text-align: center;
}
