/* Reset & Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #1c1a18;
  color: #ffcd50;
  font-family: Verdana, sans-serif;
}

/* 🌌 Banner */
.banner {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 🔸 Content Wrapper (flexbox for sidebar + main) */
.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 🔸 Sidebar */
.sidebar {
  width: 220px;
  background: #111;
  padding: 20px 10px;
  border-radius: 10px;
}

.sidebar-avatar {
  width: 120px;
  height: 120px;
  border: 2px solid #8ce1dc;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: #000;
}
.sidebar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.sidebar-links a {
  text-decoration: none;
  color: #8ce1dc;
  border: 1px solid #8ce1dc;
  padding: 8px;
  border-radius: 5px;
  transition: background 0.3s;
}
.sidebar-links a:hover {
  background: #1b1b1b;
}

/* 🔹 Main Profile Content */
.profile-container {
  flex: 1;
}

.profile-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-avatar {
  width: 200px;
  height: 200px;
  border: 2px solid #8ce1dc;
  border-radius: 50%;
  overflow: hidden;
}
.main-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info h1 {
  font-size: 40px;
  font-family: cursive;
  text-shadow: 0 0 5px #8ce1dc;
}
.subtitle {
  font-size: 14px;
  color: #aaa;
}
.bluesky-note {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
  color: #8ce1dc;
}

/* Info Boxes */
.info-section {
  background: #8100c4;
  color: white;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.info-column {
  flex: 1;
  min-width: 200px;
}

/* Bio */
.bio-box {
  background: #101010;
  padding: 15px;
  margin-top: 20px;
  border-left: 5px solid #8ce1dc;
}
