:root {
  --bg-primary: #0a0a0f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-border: rgba(255, 255, 255, 0.08);
  --text-primary: #f5f5f5;
  --accent-1: #6366f1;
  --accent-2: #8b5cf6;
  --glow: rgba(99, 102, 241, 0.15);
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(139, 92, 246, 0.1), transparent);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.container {
  max-width: 340px;
  width: 100%;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 80px var(--glow),
    0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #c4c4c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.links a:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(99, 102, 241, 0.4),
    0 0 0 1px rgba(99, 102, 241, 0.3);
}

.links a:hover::before {
  opacity: 1;
}

.links a:active {
  transform: translateY(-1px);
}

.links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .name {
    font-size: 1.75rem;
  }
}