.profile-card {
  background-color: var(--card-navy, #0f233d);
  border: 1px solid var(--border-gold, #d4af37);
  border-radius: 12px;
  padding: 25px;
  max-width: 800px;
  margin: 20px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.profile-card h2 {
  color: var(--gold, #d4af37);
  font-size: 1.6rem;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-gold, #d4af37);
  padding-bottom: 10px;
}

.profile-card > p {
  color: var(--text-muted, #94a3b8);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.profile-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-grid fieldset {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-gold, #d4af37);
  border-radius: 8px;
  padding: 18px;
}

.profile-grid legend {
  color: var(--gold, #d4af37);
  font-weight: 600;
  padding: 0 8px;
}

.profile-grid label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted, #94a3b8);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.profile-grid input, 
.profile-grid select {
  background: var(--bg-navy, #0a192f);
  border: 1px solid var(--border-gold, #d4af37);
  color: var(--gold-light, #f3e5ab);
  padding: 8px 10px;
  border-radius: 6px;
  width: 55%;
  font-size: 0.9rem;
}

/* Stile del Player Video all'interno del modulo profilo */
.video-container-card {
  margin-top: 25px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-gold, #d4af37);
  border-radius: 8px;
  padding: 18px;
}

.video-container-card h3 {
  color: var(--gold, #d4af37);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.video-container-card p {
  color: var(--text-muted, #94a3b8);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}
