body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

.twitter-container {
  max-width: 800px;
  margin: 0 auto;
}

.banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.profile-section {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  margin-top: -60px;
}

.profile-pic img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #000;
}

.follow-btn button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 30px;
}

.bio-section {
  padding: 20px;
}

.bio-section h2 {
  margin: 0;
  font-size: 22px;
}

.bio-section .handle {
  color: #aaa;
  margin: 5px 0 10px;
}

.bio-section p {
  margin: 5px 0;
}

.profile-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: #bbb;
  margin-top: 10px;
}

.profile-details i {
  margin-right: 5px;
}

.profile-details a {
  color: #1da1f2;
  text-decoration: none;
}

.follow-stats {
  margin-top: 15px;
  font-size: 14px;
}

.follow-stats span {
  margin-right: 20px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #333;
  padding: 10px 20px;
  gap: 20px;
}

.tabs span {
  padding-bottom: 5px;
  cursor: pointer;
  color: #aaa;
}

.tabs .active {
  border-bottom: 2px solid #1da1f2;
  color: #fff;
}

.posts-section {
  padding: 20px;
  color: #888;
  font-style: italic;
}
