body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
  color: #222;
  text-align: center;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 40px 20px;
}

/* Profile Image + Text (Flex Layout) */
.profile-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  text-align: left;
}

.header-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.header-text {
  max-width: 400px;
}

/* Social channel thumbnails */
.channels {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.channel {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.channel img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Buttons */
.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  transition: background 0.3s;
}

.link-btn:hover {
  background: #444;
}

/* Affiliate Section */
.affiliate {
  margin-top: 50px;
}

.affiliate h2 {
  font-size: 22px;
}

.disclaimer {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
  padding: 0 10px;
}

/* Footer */
footer {
  margin-top: 60px;
  font-size: 12px;
  color: #666;
}
