/*
Theme Name: Gamezfull
Description: A gaming-focused WordPress theme with dark design and modern layout
Author: Jach
Author URI: https://wptheme.site/
Theme URI: https://wptheme.site/
Version: 1.0
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #2a2a2a; /* gris oscuro como en la imagen */
    border-bottom: 2px solid #ff4500;
    padding: 10px 0;
    margin-bottom: 0; /* asegurar que no hay margen inferior */
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #e81407; /* color rojo especificado */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.custom-logo-link {
    display: inline-block;
    max-width: 300px;
}

.hero-logo .custom-logo-link {
    display: block;
    width: 100%;
    text-align: center;
}

.custom-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    width: auto;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box form {
    display: flex;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: #666;
    font-size: 16px;
    z-index: 2;
}

.search-box input {
    padding: 10px 15px 10px 35px; /* espacio para el ícono */
    border: none;
    border-radius: 0;
    background-color: #fff;
    color: #333;
    width: 300px;
    font-size: 14px;
    outline: none;
}

.search-box input::placeholder {
    color: #999;
}

.search-box button {
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    background-color: #dc2626; /* rojo como en la imagen */
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.user-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.update-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: normal;
}

.separator-line {
    width: 1px;
    height: 30px;
    background-color: #666;
    margin: 0 10px;
}

.login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.user-icon {
    font-size: 16px;
    color: #fff;
    cursor: pointer; /* hacer que se vea clickeable */
    transition: color 0.3s ease; /* transición suave */
}

.user-icon:hover {
    color: #e81407; /* cambiar color al pasar el mouse */
}

.access-link {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: normal;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    cursor: pointer;
}

.username {
    color: #fff;
    font-size: 10px;
    font-weight: normal;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #333;
    border: 1px solid #666;
    border-radius: 4px;
    padding: 5px 0;
    min-width: 80px;
    display: none;
    z-index: 1000;
}

/* Show dropdown on hover over the user-dropdown area (icon + username) */
.user-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 5px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}

.dropdown-menu a:hover {
    background: #555;
}

/* Login Popup */
.login-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    position: relative;
    color: #fff;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.popup-content h3 {
    margin-bottom: 20px;
    color: #e81407;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #666;
    border-radius: 4px;
    background: #333;
    color: #fff;
    font-size: 14px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #e81407;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.login-btn:hover {
    background: #c41206;
}

.popup-links {
    margin-top: 20px;
    text-align: center;
}

.popup-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    margin: 5px 0;
}

.popup-links a:hover {
    color: #e81407;
}

/* Navigation */
.main-nav {
    background-color: #2a2a2a; /* gris oscuro como en la imagen */
    border-top: 1px solid #ff4500;
    margin-top: -1px; /* subir la línea para eliminar el espacio */
    position: relative;
    z-index: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 15px 20px; /* agregar padding horizontal para ocupar espacio */
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff4500;
}

/* Hero Section */
.hero-section {
    background: transparent;
    padding: 0;
    text-align: center;
    width: 100%;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    background: linear-gradient(45deg, #ff4500, #ffaa00);
    padding: 0px 0px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border: 2px solid #ffaa00;
    min-height: 100px;
    width: 100%;
}

.hero-logo h1 {
    font-size: 36px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.hero-logo .custom-logo {
    max-width: 1160px; /* 1200px - 40px de padding total */
    max-height: 219px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-logo.has-custom-logo {
    padding: 0;
    background: transparent;
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    display: block;
    width: 100%;
    text-align: center;
}

/* Game Categories */
.game-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.category-btn {
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.secondary-nav {
    background-color: #1a1a1a;
}

.secondary-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.secondary-nav .nav-menu {
    background-color: #1b1b1b;
    border: 1px solid #ff4500;
    border-radius: 0;
}

/* Game Slider Section */
.game-slider-section {
    background-color: #1a1a1a; /* mismo fondo general que el cuerpo */
    padding: 10px 0 10px 0; /* reducir espacio arriba y abajo del slider */
}

.game-slider-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111; /* caja oscura detrás de las carátulas */
    border: 1px solid #ff4500;
    padding: 10px 0 10px 0; /* menos espacio interno vertical */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.game-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 0 60px;
}

.game-slide {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    background: linear-gradient(135deg, #333, #222);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.game-slide:hover {
    transform: translateY(-5px);
    border-color: #ff4500;
}

.game-slide.active {
    border-color: #ff4500;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.game-category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

.game-slide img {
    width: 180px;
    height: 240px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.game-title {
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.game-title a {
    color: #fff;
    text-decoration: none;
}

.game-title a:hover {
    color: #ff4500;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-nav:hover {
    background: linear-gradient(135deg, #cc3300, #ff4500);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

/* Featured Games Grid */
.featured-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.game-card:hover {
    transform: scale(1.05);
    border-color: #ff4500;
}

.game-card a {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.game-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.game-card:hover .game-card-overlay {
    transform: translateY(0);
}

.game-card-title {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

/* Content Sections */
.content-section {
    background: linear-gradient(135deg, #ff6600, #cc4400, #993300);
    margin: 15px 0;
    border-radius: 15px;
    overflow: visible;
    border: 1px solid #ff8800;
    padding-top: 10px;
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

.section-header {
    background: linear-gradient(135deg, #ff4500 0%, #cc3300 50%, #991100 100%);
    padding: 12px 25px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(255, 69, 0, 0.3);
    border: 2px solid #ff6600;
    text-align: center;
    letter-spacing: 1px;
}


.section-content {
    padding: 20px;
    overflow: hidden;
}

.section-footer {
    padding: 20px 20px 20px;
    text-align: right;
    margin-top: 15px;
}

.ver-mas-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b0000, #660000);
    color: #fff;
    padding: 8px 20px;
    border: 2px solid #aa0000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.ver-mas-btn:hover {
    background: linear-gradient(135deg, #aa0000, #880000);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.updates-list {
    list-style: none;
}

.updates-list li {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.updates-list li:last-child {
    border-bottom: none;
}

.updates-list li::before {
    content: "💿";
    margin-right: 10px;
    font-size: 16px;
}

.updates-list li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.updates-list li a:hover {
    color: #ffdd00;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.updates-list .new {
    background: linear-gradient(135deg, #dc143c, #8b0000);
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-left: 10px;
}

.view-more-updates {
    margin-top: 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #8b0000, #660000);
    border-radius: 8px;
    text-align: left;
}

.view-more-updates a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.view-more-updates a:hover {
    color: #ffdd00;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.view-more-link::before {
    content: none !important;
}

/* Updates Page Styles */
.main-content.full-width {
    display: block;
    width: 100%;
}

.content-area.full-width {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

/* Full-width single post styles */
.main-content.full-width .single-post-header,
.main-content.full-width .single-post-content,
.main-content.full-width .comments-section,
.main-content.full-width .single-post-backdrop-header,
.main-content.full-width .post-tags-section,
.main-content.full-width .content-section {
    max-width: 1400px;
}

.main-content.full-width .comments-section {
    max-width: 1400px;
}

/* Backdrop Header Styles */
.single-post-backdrop-header {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ff4500;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.backdrop-image {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.backdrop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    padding: 40px;
}

.backdrop-layout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 15px;
    padding: 20px 0;
}

.backdrop-content {
    flex: 1;
    color: #fff;
    max-width: 65%;
}

.backdrop-featured-image {
    flex-shrink: 0;
    width: 250px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 0 0 10px;
}

.backdrop-featured-image .featured-poster {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.backdrop-content .post-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}


.backdrop-content .post-title {
    font-size: 42px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.backdrop-content .post-meta-inline {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.backdrop-content .post-meta-inline > * {
    align-self: center;
}

.backdrop-content .post-date,
.backdrop-content .post-author {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(255, 69, 0, 0.2);
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.backdrop-content .category-badge {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(255, 69, 0, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.backdrop-content .post-tags {
    color: #fff;
    font-size: 14px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.backdrop-content .post-tags a {
    color: #ffdd00;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.backdrop-content .post-tags a:hover {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(255, 221, 0, 0.8);
}

/* Post Tags Section */
.post-tags-section {
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    padding: 25px 30px;
    margin: 30px auto;
    border: 2px solid #ff4500;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tags-header {
    margin-bottom: 15px;
}

.tags-label {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.tag-link {
    background: linear-gradient(135deg, #333, #222);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #444;
    text-transform: lowercase;
}

.tag-link:hover {
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
    border-color: #ff4500;
}

/* Related Posts Section - Tags Style */
.related-posts-section {
    background: linear-gradient(135deg, #2c1810, #1a1a1a) !important;
    border-radius: 10px !important;
    padding: 25px 30px !important;
    margin: 30px auto !important;
    border: 2px solid #ff4500 !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.related-posts-header {
    margin-bottom: 15px;
}

.related-posts-label {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Comments Section Styling */
.comments-section {
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    padding: 25px 30px;
    margin: 30px auto;
    border: 2px solid #ff4500;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.comments-section .section-header {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

/* Individual Comment Styling */
.comment {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.comment-body {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #333;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #ff4500;
}

.comment-author .fn {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
}

.comment-author .fn:hover {
    color: #ff4500;
}

.comment-meta {
    color: #ff4500;
    font-size: 12px;
    margin-bottom: 15px;
}

.comment-meta a {
    color: #ff4500;
    text-decoration: none;
}

.comment-meta a:hover {
    color: #ffdd00;
}

.comment-content {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-content p {
    margin-bottom: 10px;
}

.reply {
    text-align: left;
}

.comment-reply-link {
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.comment-reply-link:hover {
    background: linear-gradient(135deg, #cc3300, #aa0000);
    transform: translateY(-2px);
    color: #fff;
}

/* Nested Comments */
.children {
    margin-left: 40px;
    margin-top: 20px;
}

.children .comment {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
}

/* Comment Form Styling */
.comment-respond {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid #333;
}

.comment-form {
    display: block;
    width: 100%;
}

.comment-form p {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.comment-reply-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: none;
    letter-spacing: normal;
}

.comment-notes {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    color: #fff;
    font-weight: normal;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    width: 100%;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    background: #0d0d0d;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    margin-bottom: 20px;
    box-sizing: border-box;
    font-family: inherit;
}

.comment-form-comment textarea {
    min-height: 150px;
    resize: vertical;
}

.required {
    color: #ff4500;
}

.comment-form-cookies-consent {
    margin: 20px 0;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

.comment-form-cookies-consent label {
    color: #ccc;
    font-size: 14px;
    font-weight: normal;
    display: inline;
    margin-bottom: 0;
}

/* Force vertical layout - override any theme styles */
.comment-respond .comment-form {
    display: block !important;
}

.comment-respond .comment-form > p {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.comment-respond .comment-form .comment-form-comment,
.comment-respond .comment-form .comment-form-author,
.comment-respond .comment-form .comment-form-email,
.comment-respond .comment-form .comment-form-url {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.comment-respond .comment-form label {
    display: block !important;
    width: 100% !important;
}

.comment-respond .comment-form input,
.comment-respond .comment-form textarea {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: #ff4500;
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.3);
}

.form-submit {
    text-align: left;
    margin-top: 10px;
}

.submit {
    background: #ff4500;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    font-family: inherit;
}

.submit:hover {
    background: #cc3300;
    transform: none;
    box-shadow: none;
}

/* No Comments Message */
.no-comments {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 40px 20px;
}

/* Additional Comment Styling Fixes */
.commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commentlist li {
    list-style: none;
    margin-bottom: 20px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.comment-awaiting-moderation {
    color: #ff4500;
    font-style: italic;
    font-size: 12px;
    margin-top: 10px;
}

.says {
    display: none;
}

.comment-metadata {
    color: #ff4500;
    font-size: 12px;
    margin-bottom: 15px;
}

.comment-metadata a {
    color: #ff4500;
    text-decoration: none;
}

.comment-metadata a:hover {
    color: #ffdd00;
}

.bypostauthor > .comment-body {
    border: 2px solid #ff4500;
    background: rgba(255, 69, 0, 0.1);
}

.updates-page-header {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #ff4500;
    max-width: 1400px;
    margin: 0 auto 30px auto;
}

.updates-page-header .page-title {
    font-size: 28px;
    color: #ff4500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.updates-page-header .page-description {
    color: #ccc;
    font-size: 16px;
    margin: 0;
}

.updates-page-content {
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #ff4500;
    max-width: 1400px;
    margin: 0 auto;
}

.updates-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.update-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(135deg, #1a1a1a, #2c1810);
    border-bottom: 1px solid #333;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.update-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.update-item:hover {
    background: linear-gradient(135deg, #1a1a1a, #2c1810);
    border-bottom: 1px solid #333;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.update-item:hover::before {
    left: 100%;
}

.update-item:last-child {
    border-bottom: none;
}

.update-number {
    width: 40px;
    text-align: center;
    font-weight: bold;
    color: #ff4500;
    font-size: 14px;
    margin-right: 15px;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.update-item:hover .update-number {
    color: #ff4500;
    transform: scale(1.1);
    text-shadow: none;
}

.update-thumbnail {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.update-item:hover .update-thumbnail {
    transform: scale(1.05);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.update-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.update-item:hover .update-thumbnail img {
    transform: scale(1.1);
}

.update-content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
}

.update-title {
    margin: 0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.update-title a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.update-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4500, #ffaa00);
    transition: width 0.3s ease;
}

.update-item:hover .update-title {
    transform: translateX(3px);
}

.update-item:hover .update-title a {
    color: #fff;
    text-shadow: none;
}

.update-item:hover .update-title a::after {
    width: 100%;
}

.update-item:active {
    transform: translateX(2px) scale(0.98);
    transition: all 0.1s ease;
}

.updates-pagination {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.back-home-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.back-home-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.no-updates {
    text-align: center;
    color: #888;
    font-size: 18px;
    padding: 50px 0;
}

/* Search Form Styles */
.section-content form {
    display: flex;
    gap: 10px;
}

.section-content input[type="search"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #333;
    background: #2c1810;
    color: #fff;
    border-radius: 5px;
}

.section-content button {
    background: #ff4500;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.section-content button:hover {
    background: #cc3300;
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    padding: 5px 0;
    border-bottom: 1px solid #333;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: #ff4500;
}

/* Mini Stats */
.stats-mini {
    display: flex;
    gap: 20px;
    justify-content: space-around;
}

.stat-item-mini {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #ff4500;
}

.stat-label {
    font-size: 12px;
    color: #888;
}

/* Advertisement Styles */
.gamezfull-header-ad {
    text-align: center;
    margin: 10px 0;
}

.gamezfull-header-ad .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gamezfull-sidebar-ad {
    text-align: center;
    margin-bottom: 20px;
}

.gamezfull-sidebar-ad .widget-content {
    margin: 0;
}

.gamezfull-content-ad {
    text-align: center;
    margin: 20px auto;
    max-width: 1200px;
}

.gamezfull-footer-ad {
    text-align: center;
    margin: 10px 0;
}

.gamezfull-footer-ad .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive ads */
@media (max-width: 768px) {
    .gamezfull-header-ad .container,
    .gamezfull-footer-ad .container {
        padding: 0 10px;
    }
    
    .gamezfull-content-ad {
        margin: 15px auto;
        max-width: calc(100% - 20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .update-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .update-number {
        margin-right: 0;
    }
    
    .update-thumbnail {
        margin-right: 0;
    }
    
    .update-content {
        width: 100%;
    }
    
    .updates-page-header .page-title {
        font-size: 20px;
    }
    
    .stats-mini {
        flex-direction: column;
        gap: 10px;
    }
}

/* Page Template Styles */
.page-header {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #ff4500;
}

.page-header .page-title {
    font-size: 32px;
    color: #ff4500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header .page-description {
    color: #ccc;
    font-size: 16px;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    margin-bottom: 30px;
}

.page-content .content-section {
    margin-bottom: 30px;
}

.page-content .section-content {
    line-height: 1.8;
    font-size: 16px;
}

.page-content .section-content p {
    margin-bottom: 20px;
}

.page-content .section-content h1,
.page-content .section-content h2,
.page-content .section-content h3,
.page-content .section-content h4,
.page-content .section-content h5,
.page-content .section-content h6 {
    color: #ff4500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content .section-content ul,
.page-content .section-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content .section-content li {
    margin-bottom: 8px;
}

.page-content .section-content blockquote {
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-left: 4px solid #ff4500;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    font-style: italic;
}

.page-content .section-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Page Links (Pagination) */
.page-links {
    margin-top: 30px;
    text-align: center;
}

.page-links .page-number {
    display: inline-block;
    background: #ff4500;
    color: #fff;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.page-links .page-number:hover {
    background: #cc3300;
}

/* Comments Section */
.page-comments {
    margin-top: 40px;
}

/* Sidebar Lists */
.recent-posts-list,
.archives-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li,
.archives-list li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-posts-list li:last-child,
.archives-list li:last-child {
    border-bottom: none;
}

.recent-posts-list a,
.archives-list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    flex: 1;
    transition: color 0.3s ease;
}

.recent-posts-list a:hover,
.archives-list a:hover {
    color: #ff4500;
}

.post-date {
    font-size: 12px;
    color: #888;
    margin-left: 10px;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    background: linear-gradient(135deg, #333, #222);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.tag-link:hover {
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    transform: translateY(-2px);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #333;
    background: #2c1810;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: #ff4500;
}

.search-form button,
.search-form input[type="submit"] {
    background: #ff4500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.search-form button:hover,
.search-form input[type="submit"]:hover {
    background: #cc3300;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header .page-title {
        font-size: 24px;
    }
    
    .page-header .page-description {
        font-size: 14px;
    }
    
    .page-content .section-content {
        font-size: 14px;
    }
    
    .recent-posts-list li,
    .archives-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .post-date {
        margin-left: 0;
    }
    
    .tags-cloud {
        justify-content: center;
    }
}

/* Agregados Recientemente Page Styles */
.agregados-page-header {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #ff4500;
    max-width: 1400px;
    margin: 0 auto 30px auto;
}

.agregados-page-header .page-title {
    font-size: 28px;
    color: #ff4500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.agregados-page-header .page-description {
    color: #ccc;
    font-size: 16px;
    margin: 0;
}

/* Filters Section */
.filters-section {
    margin-bottom: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.filters-container {
    background: linear-gradient(135deg, #ff4500, #cc3300);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid #aa0000;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 200px;
    flex: 1;
}

.filter-group label {
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-select {
    background: #fff;
    border: 2px solid #aa0000;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    border-color: #ff6600;
}

.filtrar-btn {
    background: linear-gradient(135deg, #8b0000, #660000);
    color: #fff;
    border: 2px solid #aa0000;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    align-self: flex-end;
}

.filtrar-btn:hover {
    background: linear-gradient(135deg, #aa0000, #880000);
    transform: translateY(-2px);
}

/* Games Archive Grid */
.agregados-content {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #ff4500;
}

.games-archive-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.game-archive-card {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: 200px;
}

.game-archive-card:hover {
    transform: scale(1.05);
    border-color: #ff4500;
}

.game-archive-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-archive-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}


.no-games {
    text-align: center;
    color: #888;
    font-size: 18px;
    padding: 50px 0;
    grid-column: 1 / -1;
}

/* Pagination */
.pagination-container {
    text-align: center;
    margin: 40px 0;
    padding-bottom: 20px;
}

.pagination {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.page-link {
    background: #ff4500;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #cc3300;
    transform: translateY(-2px);
    color: #fff;
}

.page-link.current {
    background: #8b0000;
    cursor: default;
}

.page-link.current:hover {
    transform: none;
}

.page-info {
    background: #666;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .games-archive-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-group {
        width: 100%;
        min-width: auto;
    }
    
    .games-archive-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .game-image {
        height: 160px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .games-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .game-image {
        height: 140px;
    }
    
    .game-title {
        font-size: 12px;
    }
}

/* WordPress Widgets Styling */
.sidebar .widget {
    background: linear-gradient(135deg, #ff6600, #cc4400, #993300);
    margin: 15px 0;
    border-radius: 15px;
    overflow: visible;
    border: 3px solid #ff8800;
    padding-top: 10px;
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

.sidebar .widget-title,
.sidebar .section-header {
    background: linear-gradient(135deg, #ff4500 0%, #cc3300 50%, #991100 100%);
    padding: 12px 25px;
    color: #fff !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(255, 69, 0, 0.3);
    border: 2px solid #ff6600;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Asegurar que los widgets personalizados del tema también tengan el estilo correcto */
.sidebar .content-section {
    background: linear-gradient(135deg, #ff6600, #cc4400, #993300);
    margin: 15px 0;
    border-radius: 15px;
    overflow: visible;
    border: 1px solid #ff8800;
    padding-top: 10px;
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

.sidebar .content-section .section-content {
    padding: 0 20px 20px;
}

.sidebar .content-section .widget-posts-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.sidebar .content-section .widget-posts-list li:last-child {
    border-bottom: none;
}

.sidebar .content-section .widget-posts-list li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.sidebar .content-section .widget-posts-list li a:hover {
    color: #ffdd00;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.sidebar .widget ul {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
}

.sidebar .widget li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.sidebar .widget li:last-child {
    border-bottom: none;
}

.sidebar .widget li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.sidebar .widget li a:hover {
    color: #ffdd00;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.sidebar .widget .textwidget {
    padding: 0 20px 20px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.sidebar .widget .textwidget p {
    margin-bottom: 10px;
}

.sidebar .widget .textwidget a {
    color: #ffdd00;
    text-decoration: none;
}

.sidebar .widget .textwidget a:hover {
    text-decoration: underline;
}

/* Category Page Styles */
.category-page-header {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #ff4500;
    max-width: 1400px;
    margin: 0 auto 30px auto;
}

.category-page-header .page-title {
    font-size: 28px;
    color: #ff4500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-page-header .page-description {
    color: #ccc;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.category-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.category-meta .post-count {
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Games Grid */
.category-content {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #ff4500;
}

.games-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-category-card {
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.game-category-card:hover {
    transform: scale(1.05);
    border-color: #ff4500;
}

.game-category-card .game-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.game-category-card .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-category-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.game-category-card:hover .game-overlay {
    opacity: 1;
}

.game-info-overlay {
    width: 100%;
}

.game-info-overlay .game-title {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.game-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-meta span {
    color: #ccc;
    font-size: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.game-category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* No Posts Found */
.no-posts-found {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    grid-column: 1 / -1;
}

.no-posts-found h2 {
    color: #ff4500;
    margin-bottom: 15px;
    font-size: 24px;
}

.no-posts-found p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.back-home-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-home-btn:hover {
    background: linear-gradient(135deg, #cc3300, #aa0000);
    transform: translateY(-2px);
    color: #fff;
}

/* Category Sidebar Styles */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-size: 13px;
}

.categories-list li a:hover {
    color: #ff4500;
}

.categories-list li.current-category a {
    color: #ff4500;
    font-weight: bold;
}

.category-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
}

/* Pagination Info */
.page-info-text {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.page-dots {
    color: #666;
    padding: 10px 5px;
    font-weight: bold;
}

/* Filters Responsive Design */
@media (max-width: 1200px) {
    .filters-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .filter-group {
        min-width: 180px;
        flex: 1 1 auto;
    }
}

@media (max-width: 900px) {
    .filters-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        min-width: auto;
        flex: none;
    }
    
    .filtrar-btn {
        align-self: stretch;
        margin-top: 10px;
    }
}

/* Responsive Design for Category Page */
@media (max-width: 1200px) {
    .games-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .game-category-card .game-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .category-page-header .page-title {
        font-size: 22px;
    }
    
    .category-page-header .page-description {
        font-size: 14px;
    }
    
    .games-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .game-category-card .game-image {
        height: 200px;
    }
    
    .game-info-overlay .game-title {
        font-size: 14px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .games-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .game-category-card .game-image {
        height: 180px;
    }
    
    .game-info-overlay {
        padding: 10px;
    }
    
    .game-info-overlay .game-title {
        font-size: 12px;
    }
    
    .game-meta span {
        font-size: 10px;
    }
}

/* Single Post Styles */
.single-post-header {
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #ff4500;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.post-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-badge {
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    color: #ccc;
    font-size: 14px;
}

.post-title {
    color: #ff4500;
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-author {
    color: #ccc;
    font-size: 14px;
}

.post-tags {
    color: #ccc;
    font-size: 14px;
}

.post-tags a {
    color: #ff4500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-tags a:hover {
    color: #ffdd00;
}

.single-post-content {
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #ff4500;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.post-featured-image {
    text-align: center;
    margin-bottom: 30px;
}

.post-featured-image .featured-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.post-content {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
}

.post-content h1, .post-content h2, .post-content h3,
.post-content h4, .post-content h5, .post-content h6 {
    color: #ff4500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content blockquote {
    background: rgba(255, 69, 0, 0.1);
    border-left: 4px solid #ff4500;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* Post Navigation */
.post-navigation {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 69, 0, 0.3);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous, .nav-next {
    flex: 1;
    max-width: 48%;
}

.nav-link {
    display: block;
    background: rgba(255, 69, 0, 0.1);
    border: 2px solid #ff4500;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    color: #ccc;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 69, 0, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

.nav-direction {
    display: block;
    font-size: 12px;
    color: #ff4500;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.nav-title {
    display: block;
    font-size: 14px;
    line-height: 1.4;
}

/* Search Page Styles */
.search-form-section {
    margin-bottom: 30px;
}

.search-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #ff4500;
}

.search-input-group {
    display: flex;
    gap: 10px;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #333;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: #ff4500;
}

.search-submit {
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-submit:hover {
    background: linear-gradient(135deg, #cc3300, #aa0000);
    transform: translateY(-2px);
}

.search-suggestions {
    background: rgba(255, 69, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.search-suggestions h3 {
    color: #ff4500;
    margin-bottom: 15px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    padding: 5px 0;
    color: #ccc;
    position: relative;
    padding-left: 20px;
}

.search-suggestions li:before {
    content: "•";
    color: #ff4500;
    position: absolute;
    left: 0;
}

/* 404 Error Page Styles */
.error-404-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    border: 2px solid #ff4500;
    margin-bottom: 30px;
}

.error-number {
    font-size: 120px;
    font-weight: bold;
    color: #ff4500;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.error-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.error-description {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-search {
    margin-bottom: 40px;
}

.error-search h3 {
    color: #ff4500;
    margin-bottom: 20px;
    font-size: 20px;
}

.error-links h3 {
    color: #ff4500;
    margin-bottom: 20px;
    font-size: 20px;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.quick-link {
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.quick-link:hover {
    background: linear-gradient(135deg, #cc3300, #aa0000);
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive Design for New Templates */
@media (max-width: 768px) {
    /* Backdrop Header Responsive */
    .backdrop-image {
        height: 350px;
    }
    
    .backdrop-overlay {
        padding: 20px;
    }
    
    .backdrop-layout {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 10px;
    }
    
    .backdrop-featured-image {
        order: 1;
        width: 200px;
        height: auto;
        margin: 0 auto;
    }
    
    .backdrop-content {
        max-width: 100%;
        order: 2;
    }
    
    .backdrop-content .post-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .backdrop-content .post-meta-inline {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .backdrop-content .post-date,
    .backdrop-content .post-author,
    .backdrop-content .category-badge {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .backdrop-content .post-categories {
        justify-content: center;
    }
    
    .post-title {
        font-size: 24px;
    }
    
    .post-meta-top, .post-meta-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Tags Section Responsive */
    .post-tags-section {
        padding: 20px;
        margin: 20px auto;
    }
    
    /* Related Posts Section Responsive */
    .related-posts-section {
        padding: 20px !important;
        margin: 20px auto !important;
    }
    
    /* Comments Section Responsive */
    .comments-section {
        padding: 20px !important;
        margin: 20px auto !important;
    }
    
    .comment {
        padding: 18px !important;
    }
    
    .children {
        margin-left: 30px !important;
    }
    
    .tags-label,
    .related-posts-label {
        font-size: 16px;
    }
    
    .tag-link {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-previous, .nav-next {
        max-width: 100%;
    }
    
    .error-number {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 24px;
    }
    
    .quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .search-input-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Backdrop Header Mobile */
    .backdrop-image {
        height: 300px;
    }
    
    .backdrop-overlay {
        padding: 15px;
    }
    
    .backdrop-layout {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .backdrop-featured-image {
        width: 150px;
        height: auto;
        order: 1;
        margin: 0 auto;
    }
    
    .backdrop-content {
        order: 2;
        max-width: 100%;
    }
    
    .backdrop-content .post-title {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .backdrop-content .post-date,
    .backdrop-content .post-author,
    .backdrop-content .category-badge {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .backdrop-content .post-meta-inline {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .backdrop-content .post-categories {
        justify-content: center;
    }
    
    .single-post-header, .single-post-content {
        padding: 20px;
    }
    
    /* Tags Section Mobile */
    .post-tags-section {
        padding: 15px;
        margin: 15px auto;
    }
    
    /* Related Posts Section Mobile */
    .related-posts-section {
        padding: 15px !important;
        margin: 15px auto !important;
    }
    
    /* Comments Section Mobile */
    .comments-section {
        padding: 15px !important;
        margin: 15px auto !important;
    }
    
    .comment {
        padding: 15px !important;
    }
    
    .children {
        margin-left: 20px !important;
    }
    
    .comment-respond {
        padding: 20px !important;
    }
    
    .comment-reply-title {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .comment-form-comment textarea,
    .comment-form-author input,
    .comment-form-email input,
    .comment-form-url input {
        padding: 12px !important;
        margin-bottom: 15px !important;
    }
    
    .tags-label,
    .related-posts-label {
        font-size: 14px;
    }
    
    .tag-link {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .error-404-section {
        padding: 40px 15px;
    }
    
    .error-number {
        font-size: 60px;
    }
    
    .post-content {
        font-size: 14px;
    }
}

/* Site Main */
.site-main {
    width: 100%;
}

/* Sidebar */
.sidebar {
    width: 300px;
}

.main-content {
    display: flex;
    gap: 20px;
    margin-top: 10px; /* menos espacio entre slider y contenedores inferiores */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.content-area {
    flex: 1;
}

/* Game Grid Sections */
.games-grid {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
}

.games-grid .game-card {
    height: 200px;
    width: calc((100% - 40px) / 5);
    flex-shrink: 0;
}


/* All home sections use contain to show full images */
.content-section .games-grid .game-card img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
    background: #1a1a1a !important;
}

/* Ensure all content sections cards have proper styling */
.content-section .games-grid .game-card {
    width: calc((100% - 40px) / 5) !important;
    height: 200px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
    background: #1a1a1a !important;
}

/* Hover effect for all content sections */
.content-section .games-grid .game-card:hover {
    transform: scale(1.05) !important;
}

/* Related posts section now uses games-archive-grid for consistency */

/* Asegurar que en pantallas grandes se mantengan las 5 columnas */
@media (min-width: 1200px) {
    .games-grid {
        gap: 15px;
    }
    
    .games-grid .game-card {
        height: 220px;
        width: calc((100% - 60px) / 5);
    }
}

/* Statistics */
.stats-section {
    background-color: #1a1a1a;
    padding: 40px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.stat-circle.orange {
    background: linear-gradient(135deg, #ff4500, #cc3300);
}

.stat-circle.green {
    background: linear-gradient(135deg, #00ff00, #00cc00);
}

.stat-circle.gray {
    background: linear-gradient(135deg, #666, #333);
}

.stat-label {
    font-size: 12px;
    color: #ccc;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 15px 0;
    text-align: center;
    border-top: 2px solid #ff4500;
}

.footer-content {
    font-size: 12px;
    color: #ccc;
}

/* Footer Links Menu */
.footer-links-section {
    text-align: center;
}

.footer-nav-menu-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-menu-vertical li {
    margin: 0 0 3px 0;
}

.footer-nav-menu-vertical li a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    padding: 1px 0;
    display: block;
    transition: color 0.3s ease;
}

.footer-nav-menu-vertical li a:hover {
    color: #ff4500;
}

/* Footer Two Columns Layout */
.footer-two-columns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
}

.footer-dmca-section {
    text-align: center;
}

/* Page Layout - No Sidebar */
.main-content.no-sidebar .content-area {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content.no-sidebar {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Home Page Mobile Adaptations */
    .hero-section {
        padding: 8px 0;
        min-height: auto;
        overflow: hidden;
    }
    
    .hero-logo {
        padding: 5px;
        text-align: center;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-logo h1 {
        font-size: 22px;
        margin: 0;
        line-height: 1.2;
    }
    
    .hero-logo img {
        max-width: 80px;
        height: auto;
        max-height: 25px;
        object-fit: contain;
        width: auto;
    }
    
    /* Hide mobile menu toggle completely */
    .mobile-menu-toggle,
    .menu-toggle,
    .hamburger-menu,
    button[class*="toggle"],
    button[class*="hamburger"] {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Secondary Navigation Mobile */
    .secondary-nav {
        padding: 10px 0;
    }
    
    .secondary-nav .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .secondary-nav .nav-menu li a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Content Sections Mobile */
    .content-section {
        margin: 20px 0;
        padding: 15px;
    }
    
    .section-header {
        font-size: 16px;
        padding: 8px 15px;
        margin-bottom: 15px;
    }
    
    .section-content {
        padding: 10px;
    }
    
    /* Games Grid Mobile - Already handled by existing responsive rules */
    
    /* Updates Section Mobile */
    .updates-list {
        padding: 10px;
    }
    
    .update-item {
        padding: 8px;
        font-size: 12px;
    }
    
    /* Main Content Mobile */
    .main-content {
        flex-direction: column;
        padding: 0 10px;
        gap: 0;
    }
    
    .content-area {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .sidebar {
        width: 100%;
        margin-top: 15px;
    }
    
    /* Sidebar Mobile Improvements */
    .sidebar .content-section {
        margin: 10px 0;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.02);
    }
    
    .sidebar .section-header {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Footer responsive */
    .footer-two-columns {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }
    
    .footer-links-section,
    .footer-dmca-section {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
    
    .footer-nav-menu-vertical {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .footer-nav-menu-vertical li {
        margin: 0;
        width: auto;
    }
    
    .footer-nav-menu-vertical li a {
        display: block;
        padding: 5px 10px;
        text-align: center;
    }
    
    .footer-dmca-section {
        padding: 0 15px;
    }
    
    .search-box input {
        width: 200px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
    }
    
    .nav-menu li {
        margin: 0 10px;
    }
    
    .game-categories {
        flex-wrap: wrap;
    }
    
    .games-grid {
        gap: 8px;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        padding: 5px;
    }
    
    .games-grid .game-card {
        height: 200px;
        width: calc((100% - 16px) / 3);
    }
    
    /* All content sections responsive - tablet */
    .content-section .games-grid .game-card {
        width: calc((100% - 16px) / 3) !important;
        height: 200px !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        transition: transform 0.3s ease !important;
    }
    
    .content-section .games-grid .game-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        background: #1a1a1a !important;
    }
    
    
    .game-slide {
        width: 150px;
        min-width: 150px;
        max-width: 150px;
    }
    
    .game-slide img {
        width: 150px;
        height: 200px;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-logo-link {
        max-width: 250px;
    }
    
    .custom-logo {
        max-height: 50px;
    }
    
    .hero-logo .custom-logo {
        max-width: 700px;
        max-height: 130px;
    }
    
    .hero-logo h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .featured-games {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        gap: 8px;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        padding: 5px;
    }
    
    .games-grid .game-card {
        height: 160px;
        width: calc((100% - 8px) / 2);
    }
    
    /* All content sections responsive - mobile */
    .content-section .games-grid .game-card {
        width: calc((100% - 8px) / 2) !important;
        height: 220px !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
        margin-bottom: 8px !important;
    }
    
    .content-section .games-grid .game-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
    
    
    .game-slider {
        padding: 0 40px;
        gap: 10px;
    }
    
    .game-slide {
        width: 130px;
        min-width: 130px;
        max-width: 130px;
    }
    
    .game-slide img {
        width: 130px;
        height: 170px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-logo-link {
        max-width: 200px;
    }
    
    .custom-logo {
        max-height: 40px;
    }
    
    .hero-logo .custom-logo {
        max-width: 450px;
        max-height: 90px;
    }
    
    .hero-logo h1 {
        font-size: 24px;
        letter-spacing: 1px;
    }
}

/* Featured Image Templates */


/* Simple Centered Template */
.single-post-simple-header {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.1), rgba(26, 26, 26, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(255, 69, 0, 0.2);
}

.simple-content {
    max-width: 800px;
    margin: 0 auto;
}

.simple-content .post-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 25px 0;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.post-meta-simple {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: center;
}

.post-meta-simple .post-date,
.post-meta-simple .post-author {
    color: #fff;
    font-size: 14px;
    background: rgba(255, 69, 0, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.post-categories-simple {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.simple-featured-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.simple-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.simple-featured-image:hover .simple-image {
    transform: scale(1.02);
}

.content-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4500, transparent);
    margin: 30px 0;
    border-radius: 1px;
}

/* Simple Centered Template - Inline Version (dentro del contenido) */
.simple-content-inline {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
}

.post-title-inline {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 25px 0;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.post-meta-inline {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: center;
}

.post-meta-inline .post-date,
.post-meta-inline .post-author {
    color: #fff;
    font-size: 14px;
    background: rgba(255, 69, 0, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.post-categories-inline {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 0;
}

.post-categories-inline .category-badge {
    color: #fff;
    font-size: 14px;
    background: rgba(255, 69, 0, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    display: inline-block;
}

.simple-featured-image-inline {
    margin: 30px auto;
    max-width: 320px;
}

.simple-image-inline {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}


.content-separator-inline {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4500, transparent);
    margin: 40px 0;
    border-radius: 1px;
}

/* Minimal Template */
.single-post-minimal-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #2c1810, #1a1a1a);
    border-radius: 10px;
    border: 1px solid #ff4500;
}

.single-post-minimal-header .post-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: bold;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.post-meta-minimal {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.post-meta-minimal .post-date,
.post-meta-minimal .post-author,
.post-meta-minimal .category-badge {
    color: #fff;
    font-size: 14px;
    background: rgba(255, 69, 0, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    display: inline-block;
}

/* Responsive Design for Featured Image Templates */
@media (max-width: 768px) {
    .single-post-simple-header {
        padding: 30px 20px;
    }
    
    .simple-content .post-title {
        font-size: 2rem;
    }
    
    .post-meta-simple {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .simple-featured-image {
        max-width: 100%;
        margin: 25px 0;
    }
    
    /* Responsive para versión inline */
    .post-title-inline {
        font-size: 2rem;
    }
    
    .post-meta-inline {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .simple-featured-image-inline {
        max-width: 100%;
        margin: 25px auto;
    }
    
    .single-post-minimal-header .post-title {
        font-size: 2rem;
    }
    
    .post-meta-minimal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .single-post-simple-header {
        padding: 20px 15px;
    }
    
    .simple-content .post-title {
        font-size: 1.6rem;
    }
    
    .post-meta-simple .post-date,
    .post-meta-simple .post-author {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .simple-featured-image {
        margin: 20px 0;
    }
    
    /* Responsive móvil para versión inline */
    .post-title-inline {
        font-size: 1.6rem;
    }
    
    .post-meta-inline .post-date,
    .post-meta-inline .post-author {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .post-categories-inline .category-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .simple-featured-image-inline {
        margin: 20px auto;
    }
    
    .single-post-minimal-header {
        padding: 20px 15px;
    }
    
    .single-post-minimal-header .post-title {
        font-size: 1.6rem;
    }
}

/* Floating Back to Top Button */
.floating-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4500, #cc3300);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-back-to-top:hover {
    background: linear-gradient(135deg, #ff6600, #ff4500);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

.floating-back-to-top:active {
    transform: translateY(0);
}

.floating-back-to-top .chevron-up {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(-45deg);
    margin-top: 8px;
}

/* Responsive adjustments for floating button */
@media (max-width: 768px) {
    .floating-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .floating-back-to-top .chevron-up {
        width: 10px;
        height: 10px;
        border-width: 2.5px;
        margin-top: 7px;
    }
}

@media (max-width: 480px) {
    .floating-back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .floating-back-to-top .chevron-up {
        width: 8px;
        height: 8px;
        border-width: 2px;
        margin-top: 6px;
    }
}

/* Mobile Small Devices (480px and below) */
@media (max-width: 480px) {
    /* Hero Section Mobile Small */
    .hero-section {
        padding: 5px 0;
        min-height: auto;
        overflow: hidden;
    }
    
    .hero-logo {
        padding: 3px;
        text-align: center;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-logo h1 {
        font-size: 18px;
        margin: 0;
        line-height: 1.1;
    }
    
    .hero-logo img {
        max-width: 60px;
        max-height: 20px;
        object-fit: contain;
        width: auto;
    }
    
    /* Hide mobile menu toggle completely */
    .mobile-menu-toggle,
    .menu-toggle,
    .hamburger-menu,
    button[class*="toggle"],
    button[class*="hamburger"] {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Secondary Navigation Mobile Small */
    .secondary-nav .nav-menu li a {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* Content Sections Mobile Small */
    .content-section {
        margin: 15px 0;
        padding: 10px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .section-header {
        font-size: 14px;
        padding: 6px 12px;
        border-radius: 8px;
    }
    
    .section-content {
        padding: 8px;
    }
    
    /* Main Content Mobile Small */
    .main-content {
        padding: 0 5px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Updates Section Mobile Small */
    .update-item {
        padding: 6px;
        font-size: 11px;
        line-height: 1.3;
    }
    
    /* Sidebar Mobile Small */
    .sidebar .content-section {
        padding: 8px;
    }
    
    .widget-posts-list li {
        padding: 6px !important;
        font-size: 11px !important;
    }
    
    /* Footer Mobile Small */
    .footer {
        padding: 15px 0;
    }
    
    .footer-content {
        font-size: 11px;
    }
    
    .footer-two-columns {
        gap: 25px;
        padding: 0 10px;
    }
    
    .footer-links-section,
    .footer-dmca-section {
        padding: 0 5px;
    }
    
    .footer-nav-menu-vertical li a {
        font-size: 12px;
        padding: 8px 15px;
        margin: 2px 0;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
        transition: background 0.3s ease;
    }
    
    .footer-nav-menu-vertical li a:hover {
        background: rgba(255, 69, 0, 0.1);
    }
    
    .footer-dmca-section {
        line-height: 1.4;
    }
}
