/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Light mode (default) */
body {
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  cursor: default;
  text-align: center;
  /* padding: 20px 0 20px 0; */
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 450px;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid black;
}

.name {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
}

.description {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #555;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #f0f0f0;
  color: black;
  padding: 15px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.8;
  transition: background-color 0.3s, transform 0.2s, opacity 0.2s;
}

.link-button:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
  opacity: 1;
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-group {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.icon-button {
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  background: none;
  color: black;
}

.icon-button i {
  font-size: 24px;
  opacity: 0.8;
}

.icon-button:hover {
  transform: scale(1.1);
  opacity: 1;
  /* color: #666; */
}

.icon-button:active {
  transform: scale(0.95);
}

.link-button-text {
  font-size: 14px;
  color: #777;
}

.copyright {
  margin-top: 15px;
  font-size: 12px;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #0d1117;
    color: white;
  }

  a {
    color: white;
  }

  .profile-pic {
    border-color: white;
  }

  .description {
    color: #c9d1d9;
  }

  .link-button {
    background-color: #21262d;
    color: white;
  }

  .link-button:hover {
    background-color: #30363d;
  }

  .icon-button {
    color: white;
  }

  .footer {
    color: #8b949e;
  }

  .link-button-text {
    color: #8b949e;
  }
}

.link-button.embed {
  background-color: transparent;
  color: inherit;
  padding: 0;
  border: none;
}

.bluesky-embed {
  margin: 0 !important;
}

.name {
  color: white;
  text-shadow: 0px 0px 0.5em black, 0px 0px 1.5em black;
  font-weight: 100;
}

.background-container {
  padding: 170px 0 20px 0;
  min-height: 100vh;
  width: 100%;
  max-width: 1344px;
  margin: 0 auto;
  background:
    linear-gradient(to right, #0C0C14 0%, transparent 20%, transparent 80%, #0C0C14 100%),
    linear-gradient(to bottom, transparent 0%, transparent 20%, transparent 80%, #0C0C14 100%),
    url('/images/murder-tunnel.png') no-repeat top center;
  background-color: #0C0C14; /* fallback color */
  background-size: 100% 100%, 100% 100%, cover;
}
body {
  background-color: #0C0C14;
}