.tiktok-header {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #000;
  color: #fff;
  padding: 20px;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

.main-content {
  margin-top: 20px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.content-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-image {
  flex-shrink: 1;
}

.profile-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.name-section {
  display: flex;
  justify-content: start;
  flex-direction: row-reverse;
  gap: 2px;
}

.username-row {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.username {
  color: #81858b;
  font-size: 14px;
  font-weight: 500;
}

.verified-badge {
  background: #20d5ec;
  color: #000;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.display-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.bio {
  color: #81858b;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 0 0;
}

.actions-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .actions-container {
    flex-direction: column-reverse;
  }
}

.stats {
  display: flex;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 12px;
  color: #81858b;
  margin-top: 2px;
}

.action-buttons {
  display: flex;
  gap: 8px;
}

.btn-follow, .btn-message, .btn-more {
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-follow {
  background: #fe2a55;
  color: #fff;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-follow:hover {
  background: #e11d44;
}

.btn-follow.following {
  background: transparent;
  border: 1px solid #81858b;
  color: #fff;
}

.btn-message {
  background: #f0f1f0;
  border: 1px solid #f0f1f0;
  color: #000;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-message:hover {
  background: #e8e9e8;
}

.btn-more {
  background: transparent;
  border: 1px solid #81858b;
  color: #fff;
  width: 40px;
  padding: 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-more:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* More Options Dropdown */
.more-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #000;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  margin-top: 8px;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
  border-radius: 8px;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.dropdown-label {
  font-size: 14px;
  font-weight: 500;
}

/* Dropdown arrow */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: #000;
  border: 1px solid #2a2a2a;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

/* Mobile styles */
@media (max-width: 768px) {
  .dropdown-menu {
    right: -20px;
    min-width: 180px;
  }

  .dropdown-menu::before {
    right: 36px;
  }
}

@media (max-width: 768px) {
  .tiktok-header {
    padding: 16px;
  }

  .main-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }

  .stat-item {
    flex-direction: column;
    gap: 4px;
  }

  .btn-follow, .btn-message {
    width: 40px;
  }

  .stat-divider {
    width: 1px;
    height: 30px;
    background-color: #fffffe;
    opacity: 0.5;
  }

  .profile-image img {
    width: 180px;
    height: 180px;
  }

  .name-section {
    flex-direction: column-reverse;
  }

  .display-name {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .username-row {
    margin-bottom: 0;
    justify-content: center;
  }

  .stats {
    gap: 16px;
  }

  .action-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .btn-follow, .btn-message {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tiktok-header {
    padding: 12px;
  }

  .profile-image img {
    width: 70px;
    height: 70px;
  }

  .display-name {
    font-size: 18px;
  }

  .bio {
    font-size: 13px;
  }

  .stat-number {
    font-size: 14px;
  }

  .stat-label {
    font-size: 11px;
  }

  .btn-follow, .btn-message {
    width: 75px;
  }

  .btn-follow, .btn-message, .btn-more {
    padding: 8px 12px;
    font-size: 14px;
  }
}