.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; 
}
.banner-ad {
    margin: 20px 0;
    text-align: center;
}
.banner-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.social-media{
	border-left:1px solid grey;
}
.footer-logo{
	border-right:1px solid grey;
}
.footer{
	background-color: black;
	color: white;
	padding: 20px;
}
.footer-grey-font{
	color: grey;
}
.footer-red-font{
	color: red;
}
.footer-logo-img{
	max-width: 100%;
}
.footer-social-list{
	list-style-type: none;
	padding: 0;
}
.main-logo-img {
  width: 75%;
  max-width: 580px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.rating-button-like{
	margin: 15px; 
	border: 2px solid green; 
	border-radius: 10px;
}
.rating-button-dislike{
	margin: 15px; 
	border: 2px solid red; 
	border-radius: 10px;
}
.rating-button-icon-like{
	color: green; 
	font-size: 50px; 
	padding: 10px;
}
.rating-button-icon-dislike{
	color: red; 
	font-size: 50px; 
	padding: 10px;
}
.comment{
	color: whitesmoke;
	padding: 5px;
	background-color: black;
	border-radius: 13px;
	margin: 10px;
}
.comment-name{
	font-size: medium;
	color: red;
}
.comment-text{
	font-size: smaller;
	margin-left: 20px;
	word-wrap: break-word;
}
.comment-date{
	color: rgb(146, 145, 145); 
	margin-left: 20px;
}
.error-message{
	color: red;
}
.game-logo-img{
	cursor: pointer;
	max-width: 100%;
	flex-shrink: 0;
}
.game-fullscreen-btn{
	cursor: pointer;
	max-width: 100%;
	height: auto;
	flex-shrink: 0;
}
.game-logo-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2px;
	margin-right: 72px;
}
.comment-form{
	padding-top: 50px;
}
.comment-form-label{
	color: whitesmoke;
}
/* *{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
} */
a {
    text-decoration: none;
}
body{
	background: #000000;
	font-family: 'Open Sans', sans-serif;
}

.body-game {
    background: #000000;
    font-family: 'Open Sans', sans-serif;
}

.wrap{
	max-width: 1100px;
	width: 90%;
	margin: auto;
	min-height: 2000px;
}

.wrap > h1{
	color: #6E6D6D;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 15px 0px;
}

.wrap > h1:after{
	content: '';
	width: 100%;
	height: 1px;
	background: #C7C7C7;
	margin: 20px 0;
}

.store-wrapper{
	display: flex;
	flex-wrap: wrap;
}

.category_list{
	display: flex;
	flex-direction: column;
	width: 18%;
}

.category_list .category_item{
	display: block;
	width: 90%;
	padding: 15px 0;
	margin-bottom: 20px;
	background: #c20000;

	text-align: center;
	text-decoration: none;
	color: #fff;
}

.category_list .ct_item-active{
	background: #655D5B;
}

#container {
   align-items: center; /* Centra verticalmente los elementos */
   margin-right: 20px; /* Ajusta el margen derecho según sea necesario */
   cursor: pointer;
   align-self: right;
}

/* BANNER DERECHA */

.banner-right {
    position: absolute;
    right: -320px; /* Valor negativo para ocultar el div inicialmente */
    background-color: #transparent;
    color: #f5dd05;
    padding: 5px;
    z-index: 1;
    transition: right 0.3s ease; /* Agrega una transición suave al cambiar la propiedad 'right' */
}

/* Ajusta el punto en el que el banner comienza a mostrarse */
@media (min-width: 1500px) {
    .banner-right {
        right: 0;
    }
}

/* BANNER IZQUIERDA */
.banner-left {
    position: absolute;
    left: -320px; /* Valor negativo para ocultar el div inicialmente */
    background-color: #transparent;
    color: #f5dd05;
    padding: 5px;
    z-index: 1;
    transition: left 0.3s ease; /* Agrega una transición suave al cambiar la propiedad 'right' */
}

/* Ajusta el punto en el que el banner comienza a mostrarse */
@media (min-width: 1500px) {
    .banner-left {
        left: 0;
    }
}


/* Agrega estilos según tus necesidades */
.contenido {
	margin-top: 190;
    padding: 2px;
    /* Otros estilos para el contenido de la página */
}

/* PRODUCTOS ============*/

.products-list{
	width: 82%;
	min-height: 300px;
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  .products-list .product-item {
    width: 100%;
    margin-left: 0;
  }
}

.products-list .product-item {
	width: 22%;
	margin-left: 3%;
	margin-bottom: 25px;
	margin: 10px auto;

	box-shadow: 0 0 8px rgba(255, 255, 255, 0.562); /* glow inicial tenue */
	transition: box-shadow 0.1s ease, transform 0.1s ease;

	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: flex-start;

	background-color: #1c1c1c; /* fondo más contrastante si hace falta */
	border-radius: 6px;
	z-index: 1; /* aseguramos que esté sobre cualquier fondo */
}

.products-list .product-item:hover {
	box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.801); /* glow visible blanco */
	transform: scale(1.05); /* opcional: efecto sutil de zoom */
	z-index: 2;
}

.products-list .product-item img{
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.products-list .product-item a{
	display: block;
	width: 100%;
	padding: 8px 0;
	background: #242424;
	min-height: 328px;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

/* IFRAME */

#iframe-container {
   position: relative;
   padding-bottom: 56.25%; /* Proporción 16:9 para hacerlo responsivo */
   height: 0;
   overflow: hidden;
}

#iframe-container iframe {
   position: absolute;
	padding: 50px;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

/* GAME INFO */

#game-info-container {
	width: 80%;
	display: block;
	background-color: transparent;
	margin-left: auto;
	margin-right: auto;
	border-bottom: 1px solid dimgrey
}

#game-info-container .title {
	color: red;
	font-weight: bold;
	font-size: x-large;
}

#game-info-container .developer {
	color: rgb(94, 94, 94);
	font-size: larger;
}

#game-info-container .description {
	color: whitesmoke;
	font-size: medium;
}

/* RESPONSIVE */

@media screen and (max-width: 1100px){
	.products-list .product-item{
		width: 30.3%;
	}
}

@media screen and (max-width: 900px){
	.category_list,
	.products-list{
		width: 100%;
	}

	.category_list{
		flex-direction: row;
		justify-content: space-between;
	}

	.category_list .category_item{
		align-self: flex-start;
		width: 15%;
		font-size: 14px;
	}

	.products-list .product-item{
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 0px;
	}
}

@media screen and (max-width: 700px){
	.category_list{
		flex-direction: column;
	}
	.category_list .category_item{
		width: 100%;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 600px){

	.products-list .product-item{
		width: 47.5%;
		
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(2n+1){
		margin-left: 0px;
	}

}

@media screen and (max-width: 350px){
	.products-list .product_item{
		width: 100%;
		margin-left: 0px;
	}
}