body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    color: #fff;
    margin: 0;
    overflow: auto;
}

.accordion {
    display: flex;
    width: 100%;
    height: 100vh;
}

a {
 color: #67ffa1;
}
.accordion-content img[src*="epic.png"],
.accordion-content img[src*="steam.png"] {
    width: 95px; /* Ajusta el tamaño según sea necesario */
    height: auto;
}

.accordion-item {
    flex: 1;
    overflow: hidden;
    transition: flex 0.5s ease;
    position: relative;
    cursor: pointer;
}

.accordion-item:hover {
    flex: 3;
}

.accordion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.accordion-content img {
    width: 400px; /* Ajusta el tamaño según sea necesario */
    height: auto;
}

.accordion-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    display: none;
}

.accordion-item:hover .accordion-content {
    display: block;
}

.accordion-item::before, .accordion-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, black, transparent);
}

.accordion-item::after {
    top: auto;
    bottom: 0;
    background: linear-gradient(to top, black, transparent);
}


/* Estilos del navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    height: 60px;
    box-sizing: border-box;
}

.navbar-logo img {
    height: 50px;
}

.navbar-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.navbar-menu li {
    margin-left: 20px;
}

.navbar-menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s;
    padding: 10px;
    display: block;
}

.navbar-menu a:hover {
    color: #ddd;
}

/* Estilos para el menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
}

/* Estilos responsive */
@media screen and (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .navbar-menu.open {
        display: flex;
    }

    .navbar-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .navbar-menu a {
        padding: 15px;
        border-bottom: 1px solid #333;
    }

    .navbar-menu a:hover {
        background-color: #444;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Animaciones del menú hamburguesa */
.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


.hidden {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.page-transition .content {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.content {
    margin-top: 80px; /* Ajusta este valor según la altura del navbar */
    padding: 20px; /* Opcional: agrega padding para darle un poco de espacio al contenido */
}



p.intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #bbb;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Titles and Text */
h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 36px;
    color: #40DCA5;
}

p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #bbb;
}

/* Estilos para las tarjetas del equipo */
.team-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px; /* Añadido para espacio entre las tarjetas */
    padding: 20px;
}

.team-card {
    background-color: #292929;
    color: #fff;
    width: 320px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    margin: 10px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.card-image {
    background-size: cover;
    background-position: center;
    height: 200px;
    width: 100%;
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h2 {
    margin: 10px 0;
    font-size: 24px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0 0 0;
}

.team-card:hover .card-image {
    transform: scale(1.1);
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}
h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 36px;
    color: #40DCA5; /* Color atractivo para el encabezado */
}

p.intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #bbb;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilos para el formulario de contacto */
.contact-form {
    background-color: #292929;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    color: #40DCA5;
}

.contact-form label img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #3c3c3c;
    color: #fff;
    margin-top: 5px;
    transition: background-color 0.3s ease, border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: #484848;
    border: 1px solid #40DCA5;
    outline: none;
}

.contact-form button {
    background-color: #40DCA5;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background-color: #35c494;
}

/* Estilos para testimonios */
.testimonials {
    margin-top: 50px;
    text-align: center;
}

.testimonials h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #40DCA5;
}

.testimonial {
    background-color: #292929;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.5;
    color: #bbb;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #777;
}

h1, h2 {
    text-align: center;
    color: #40DCA5; /* Color atractivo para encabezados */
}

.intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #bbb;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    margin: 40px 20px;
    padding: 20px;
    background-color: #292929;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.story-section p, .features-section ul, .testimonials-section p {
    font-size: 18px;
    color: #bbb;
    line-height: 1.6;
}

.game-showcase .media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.game-showcase img, .game-showcase video {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
}

.features-section ul {
    text-align: center; /* Centra el contenido de la sección */
    max-width: 800px;
    list-style: none;
    padding: 0;
    font-size: 18px;
    color: #bbb;
    max-width: 800px;
    margin: 0 auto;
}

.features-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.features-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #40DCA5;
}

.testimonials-section {
    text-align: center;
}

.testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.5;
    color: #bbb;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #777;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cta-button {
    background-color: #40DCA5;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #35c494;
}
.disabled {
    pointer-events: none; /* Impide que sea clickeable */
    cursor: default; /* Cambia el cursor para indicar que está desactivado */
    color: #888; /* Cambia el color para que parezca desactivado */
    text-decoration: none; /* Opcional: elimina subrayado si lo hay */
}

.contact-form select,
.contact-form input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #3c3c3c;
    color: #fff;
    margin-top: 5px;
    transition: background-color 0.3s ease, border 0.3s ease;
}

.contact-form select:focus,
.contact-form input:focus {
    background-color: #484848;
    border: 1px solid #40DCA5;
    outline: none;
}



/* Estilos para la sección hero */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    color: #fff;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #bbb;
}

.cta-button {
    background-color: #ff813f;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e47236;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Estilos para la sección de juegos en tendencia */
.trending-games-section {
    padding: 50px;
    text-align: center;
    background: #1a1a1a;
}

.trending-games-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.trending-games {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.game-card {
    background-color: #292929;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.game-card img {
    width: 100%;
    border-radius: 10px;
}

.game-info {
    margin-top: 10px;
}

.game-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.game-info span {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: #969696;
}

.play-now-button {
    background-color: #40dca5;
    color: #000;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.play-now-button:hover {
    background-color: #35c494;
}

.see-all-button {
    display: inline-block;
    margin-top: 30px;
    background-color: #ff813f;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.see-all-button:hover {
    background-color: #e47236;
}

/* Estilos para la sección hero */
.hero-section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    background: url('img/HighresScreenshot00005.png') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    position: relative;
    text-align: center;
}

.hero-content-2 {
    max-width: 600px;
    z-index: 1;
}

.offer-badge {
    background-color: #3a3d42;
    padding: 5px 10px;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.offer-badge span {
    color: #1da1f2;
}

.hero-content-2 h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content-2 p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #bbb;
}

.cta-button-2 {
    background-color: #1da1f2;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button-2:hover {
    background-color: #1a91da;
}

/* Overlay for background image */
.hero-section-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Estilos para el popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #292929;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.popup-content h2 {
    color: #40DCA5;
    margin-bottom: 20px;
}

.popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.popup-button {
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.popup-button img.popup-icon {
    width: auto; /* Ajusta el tamaño según sea necesario */
    height: 50px; /* Ajusta el tamaño según sea necesario */
}

.popup-button:hover {
    transform: scale(1.1);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* Esconder el popup por defecto */
.hidden {
    display: none;
}



