/* =========================
   BASE
========================= */
body {
  margin: 0;
  background: radial-gradient(circle at top, #1f1f1f, #0d0d0d 70%);
  color: white;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.hidden {
  display: none;
}

.center {
  text-align: center;
  margin-top: 20vh;
}

/* =========================
   TITULOS PRINCIPALES
========================= */
.platform-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff4d6d, #ff8fab, #ffc2d1, #ff4d6d);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
  text-shadow: 0 0 30px rgba(255, 77, 109, 0.4);
}

@keyframes shine {
  0% { background-position: 0%; }
  100% { background-position: 300%; }
}

/* =========================
   INPUT & BUTTON
========================= */
input {
  padding: 12px 15px;
  margin: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 16px;
}

button {
  padding: 12px 25px;
  background: linear-gradient(45deg, #E50914, #ff4d6d);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.5);
}

/* =========================
   PERFILES
========================= */
.profile-header {
  text-align: center;
  margin-top: 60px;
}

.profiles {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
}

.profile {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.profile:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg, #ff4d6d, #E50914);
}

.profile img {
  width: 130px;
  height: 130px;
  border-radius: 15px;
  object-fit: cover;
}

.profile p {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
}

/* =========================
   HEADER
========================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
}

/* =========================
   SECCIONES
========================= */
#secciones-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 40px;
}

.perfil-seccion {
  display: none;
  flex: 1 1 100%;
  gap: 20px;
}

.perfil-seccion .seccion {
  flex: 1 1 45%;
  min-width: 300px;
}

/* =========================
   FILAS Y TARJETAS
========================= */
.row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.row::-webkit-scrollbar {
  height: 6px;
}

.row::-webkit-scrollbar-thumb {
  background: #ff4d6d;
  border-radius: 10px;
}

.card {
  min-width: 220px;
  height: 320px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
  position: relative;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.card:hover {
  transform: scale(1.08);
}

.card:hover img {
  filter: brightness(1.2);
}

/* =========================
   MODAL
========================= */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

iframe {
  border-radius: 15px;
  box-shadow: 0 0 40px rgba(255, 77, 109, 0.5);
}

.close {
  position: absolute;
  top: 25px;
  right: 50px;
  font-size: 35px;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  transform: scale(1.2)
