:root {
  --bg-color: #0E0E0E;
  --text-primary: #F3F0EA;
  --text-secondary: #8E8E93;
  --border-color: rgba(255, 255, 255, 0.1);
  --hover-bg: rgba(255, 255, 255, 0.05);
  --accent-color: #F3F0EA;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  padding: 2rem;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.container {
  max-width: 480px;
  width: 100%;
}

.profile {
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

.profile-logo {
  height: 28px;
  margin-bottom: 0.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.title {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.focus {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-primary);
  opacity: 0.8;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.link-item:hover {
  background-color: var(--hover-bg);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .profile-logo {
    height: 24px;
  }
  .title {
    font-size: 1rem;
  }
  .link-item {
    padding: 1rem 1.25rem;
  }
}
