/* Profile Header Placeholder Styles - Basato su RumbleInfoTop */

.profile-header-new-style-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

/* Badge animation */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Badge overlay container */
.badge-overlay-container {
  pointer-events: none;
}

.badge-overlay-container > * {
  pointer-events: auto;
}

/* Cover image styles */
.profile-cover-img {
  object-fit: cover;
  object-position: center;
}

/* Hover effects */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .profile-header-new-style-container {
    margin-top: 10px !important;
  }
  
  .badge-overlay-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-top: 12px !important;
  }
  
  .btn {
    font-size: 13px !important;
  }
}

/* Utility classes */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.capitalize {
  text-transform: capitalize;
}

/* Spacing variables (CSS custom properties) */
:root {
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
}

/* Profile-specific styles */
.profile-image-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #22c55e;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Stats grid */
.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.profile-stat-item {
  text-align: center;
}

.profile-stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  display: block;
}

.profile-stat-label {
  font-size: 0.875rem;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Owner menu dropdown */
.owner-menu-dropdown {
  min-width: 200px;
  padding: 0.5rem;
}

.owner-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  color: #d1d5db;
  text-decoration: none;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 14px;
}

.owner-menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.owner-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}