/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #111;
  color: #fff;
  text-align: center;
}

header {
  padding: 40px 20px;
}

header h1 {
  margin-top: 15px;
  font-size: 2.5rem;
}

/* Profile pic placeholder */
.pfp-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
}

/* Scrolling channels */
.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  margin: 30px 0;
}

.scroll-content {
  display: inline-block;
  animation: scroll 25s linear infinite;
}

.channel-placeholder {
  display: inline-block;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: #fff;
  margin: 0 25px;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Thumbnails grid */
.thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.thumb-placeholder {
  width: 100%;
  height: 180px;
  background: #fff;
  border-radius: 10px;
}

/* Stats section */
.stats {
  margin: 50px auto;
  max-width: 800px;
  padding: 20px;
}

.stats h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.stat-item {
  margin-bottom: 40px;
}

.stat-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.stats-placeholder {
  width: 100%;
  height: 200px;
  background: #fff;
  border-radius: 8px;
}