body {
  background: #181d23;
  color: #f2f2f2;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#bubble-bg {
  position: fixed;
  z-index: 0;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: auto;
  display: block;
  background: transparent;
}
.container {
  background: #232c36;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 #0005;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  object-fit: cover;
  border: 3px solid #3ecf4e;
  background: #222;
  display: inline-block;
}
h1 {
  margin-bottom: 0.25rem;
  font-size: 2rem;
  color: #53a9ff;
  font-weight: 700;
}
.subtitle {
  color: #a2a7ad;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  font-weight: 400;
}
.about {
  font-size: 1.1rem;
  color: #d8d8d8;
  margin-bottom: 1.8rem;
  line-height: 1.45;
}
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}
.link-btn {
  background: #2e3b4e;
  color: #fff;
  padding: 0.65rem 1.2rem;
  border: none;
  border-radius: 24px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 1px 4px #0003;
}
.link-btn:hover {
  background: #53a9ff;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.websites {
  margin-top: 0.6rem;
}
.website-link {
  color: #48e;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}
.website-link:hover {
  color: #3ecf4e;
  text-decoration: underline;
}
.project-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 4px #0001;
}
.link-btn svg {
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  fill: currentColor;
}
