/* 博主详情页面样式 */
.blogger-detail-content {
  background-color: #fff;
  min-height: 100vh;
}

/* 顶部横幅区域 */
.banner-section {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.banner-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 博主信息区域 */
.blogger-info-section {
  padding: 30px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.blogger-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.blogger-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blogger-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogger-details {
  flex: 1;
}

.blogger-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  margin-top: 0;
}

.blogger-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
}

.badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.premium-badge {
  background-color: #4a90e2;
  color: #fff;
}

/* 社交媒体徽章样式 */
.social-badge {
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.telegram-badge {
  background: linear-gradient(135deg, #0088cc, #0055a5);
  color: white;
}

.telegram-badge:hover {
  background: linear-gradient(135deg, #0099dd, #0066b6);
  color: white;
}

.twitter-badge {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
  color: white;
}

.twitter-badge:hover {
  background: linear-gradient(135deg, #1da1f2, #1a91da);
  color: white;
}

.youtube-badge {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
  color: white;
}

.youtube-badge:hover {
  background: linear-gradient(135deg, #1da1f2, #1a91da);
  color: white;
}

.discord-badge {
  background: linear-gradient(135deg, #5865F2, #4752C4);
  color: white;
}

.discord-badge:hover {
  background: linear-gradient(135deg, #6975FF, #5865F2);
  color: white;
}

.telegram-badge i,
.twitter-badge i,
.discord-badge i,
.youtube-badge i {
  font-size: 1rem;
}

.badge.status-badge {
  background-color: #28a745 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #28a745, #20c997) !important;
}

#status-badge-green {
  background-color: #28a745 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #28a745, #20c997) !important;
}

.blogger-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

/* 博主介绍区域 */
.blogger-description-section {
  padding: 40px 0;
  background-color: #fff;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.description-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.description-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
}

.description-content p:last-child {
  margin-bottom: 0;
}

/* 新增的标题和图片容器样式 */
.additional-section {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.additional-section .section-title {
  margin-bottom: 30px;
}

.image-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.02);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .banner-section {
    height: 200px;
  }
  
  .blogger-profile {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .blogger-avatar {
    width: 100px;
    height: 100px;
  }
  
  .blogger-name {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .blogger-badges {
    justify-content: center;
    margin-bottom: 10px;
  }
  
  .blogger-price {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .description-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .banner-section {
    height: 150px;
  }
  
  .blogger-info-section {
    padding: 20px 0;
  }
  
  .blogger-avatar {
    width: 80px;
    height: 80px;
  }
  
  .blogger-name {
    font-size: 1.8rem;
  }
  
  .blogger-badges {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    align-items: center;
  }
  
  /* 将Premium和社交媒体徽章分组显示 */
  .blogger-badges .premium-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    width: 100%;
  }
  
  .blogger-badges .social-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .blogger-price {
    font-size: 1.2rem;
  }
  
  .blogger-description-section {
    padding: 30px 0;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .description-content p {
    font-size: 0.95rem;
  }
} 