.main-content-wrapper {
  position: relative;
  z-index: 10;
  background-color: var(--gr-black);
  margin-top: -80px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--gr-border);
  padding-bottom: 12px;
}

.section-title {
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.btn-view-more {
  color: var(--gr-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.2s;
}

.btn-view-more:hover {
  color: white;
}

/* Cards */
.top-game-card {
  background: var(--gr-card-bg);
  border: 1px solid var(--gr-border);
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.top-game-card:hover {
  transform: translateY(-5px);
  border-color: #444;
}

.rank-number {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
}

.news-img-placeholder {
  background: #111;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: 1px solid var(--gr-border);
}

/* Banner Empresa Destacada */
.company-banner {
  background: linear-gradient(90deg, #151515 0%, #050505 100%);
  border: 1px solid var(--gr-border);
  padding: 40px;
  border-radius: 24px;
}

/* Tarjetas de Empresas Destacadas (Sección inferior) */
.company-card {
  background: var(--gr-card-bg);
  border: 1px solid var(--gr-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.company-card:hover {
  background: white;
  color: black;
  transform: translateY(-5px);
}

.company-card:hover .text-secondary {
  color: #444 !important;
}

.company-logo-placeholder {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.company-card:hover .company-logo-placeholder {
  background: black;
  color: white;
}

/* Sidebar */
.calendar-card {
  background: var(--gr-card-bg);
  border: 1px solid var(--gr-border);
  padding: 30px;
  border-radius: 24px;
}

.launch-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.launch-item:last-child {
  border: none;
}
/* Quitar el estilo de link por defecto */
.noticia-container-link {
  text-decoration: none !important;
  display: block;
}
.noticia-container-link,
.noticia-container-link * {
  color: inherit !important; /* Hereda el color del contenedor padre */
}
/* El cuadro de la noticia ahora reacciona al pasar el ratón */
.noticia-card-hover {
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: transparent;
}

.noticia-card-hover:hover {
  background: rgba(255, 255, 255, 0.05); /* Un fondo gris muy sutil */
  transform: translateX(10px); /* Se mueve un poco a la derecha */
}

/* Aseguramos que las imágenes tengan siempre el mismo tamaño */
.img-container {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
