/* Reset and base styles */
:root {
  --bg: #1a1a1a;
  --text: #ffffff;
  --text-muted: #cccccc;
  --text-muted-2: #aaaaaa;
  --border: #ffffff;
  --status-default: #666666;
  --status-online: #4ade80;
  --status-idle: #fbbf24;
  --status-dnd: #ef4444;
  --button-hover-bg: #ffffff;
  --button-hover-text: #1a1a1a;
}

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

body {
  font-family: 'JetBrains Mono', monospace;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.4;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main container */
.container {
  text-align: center;
  max-width: 450px;
  padding: 2rem;
}

/* Profile section */
.profile {
  margin-bottom: 3rem;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 2px solid var(--border);
}

.profile h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
  text-transform: lowercase;
}

/* Status inline with profile */
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted-2);
  margin-top: 0.75rem;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--status-default);
}

.status.online .status-indicator {
  background-color: var(--status-online);
}

.status.idle .status-indicator {
  background-color: var(--status-idle);
}

.status.dnd .status-indicator {
  background-color: var(--status-dnd);
}

.status.offline .status-indicator {
  background-color: var(--status-default);
}

/* Social links */
.link-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.link-button {
  display: block;
  width: 200px;
  padding: 0.75rem;
  background-color: transparent;
  color: var(--text);
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all 0.15s ease;
  font-weight: 300;
  font-size: 1rem;
  text-transform: lowercase;
}

.link-button:hover {
  background-color: var(--button-hover-bg);
  color: var(--button-hover-text);
}

/* Social icons row */
.social-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.social-link img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) invert(1);
}

.social-link:hover img {
  opacity: 0.85;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
    max-width: 380px;
  }

  .profile h1 {
    font-size: 2rem;
  }

  .avatar {
    width: 100px;
    height: 100px;
  }

  .link-button {
    width: 180px;
    padding: 0.6rem;
    font-size: 0.9rem;
  }

  .social-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
  }
}