.igamer-profile-card {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.igamer-profile-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ff9800;
}

.igamer-profile-info h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.igamer-username {
  font-size: 14px;
  color: #6b7280;
}

.igamer-email {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 15px;
}

.igamer-profile-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
}

.igamer-stat {
  text-align: center;
}

.igamer-stat .stat-value {
  font-weight: bold;
  font-size: 16px;
  color: #111827;
}

.igamer-stat .stat-label {
  font-size: 12px;
  color: #6b7280;
}



/* For Discover */
.igamer-discover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 15px;
}

.igamer-discover-post {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.igamer-discover-post:hover {
  transform: translateY(-4px);
}

.igamer-discover-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.igamer-discover-content {
  padding: 12px;
}

.igamer-discover-title {
  font-size: 18px;
  margin: 0 0 8px;
}

.igamer-discover-excerpt {
  font-size: 14px;
  color: #666;
}

