/* ============================================
  PROFILE CONTAINER - ESPORTS STYLING
  (Contenedor Principal y Estructura Base)
  ============================================ */

.profile-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
    min-height: 1080px;
}

.profile-container .profile-section {
    background: var(--panel);
    border-radius: 0 var(--radius);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin-block: clamp(1.5rem, 3vw, 2rem);
    transition: all 0.45s ease;
}

.profile-container .profile-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--borders);
}

.profile-container .section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--titles);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    letter-spacing: -0.02em;
}

.profile-container .section-title i {
    color: var(--accent);
    font-size: 1.1em;
}

/* ============================================
  EMPTY STATES (Genérico)
  ============================================ */
/* Mantenido aquí porque se refiere a .empty-state y .tournament-empty
   y la versión .tournament-empty ya estaba sin el prefijo en el archivo 2.
   Se consolidan aquí las reglas base que aplican a ambos selectores. */

.empty-state,
.tournament-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--muted);
}

.empty-state i,
.tournament-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.empty-state p,
.tournament-empty p {
    font-size: 0.95rem;
    margin: 0;
}


@media (max-width: 768px) {
    
.profile-container {
    margin-top: 0px;
}
}