/* VGDB Home Dev - PREMIMUM v3 2026 */
.vgdb-home-dev-wrapper {
    background-color: #01060f;
    color: #fff;
    font-family: 'Oswald', sans-serif !important;
    min-height: 100vh;
    padding-bottom: 50px;
    letter-spacing: 0.1px;
}

.vgdb-home-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}

/* GLOBAL RESET FOR SHARP STYLE */
.home-hero-art, 
.vgdb-post-card, 
.home-side-game-hero-box, 
.home-side-news-item,
.vgdb-btn {
    border-radius: 0 !important;
}

/* === MAIN 2-COLUMN LAYOUT === */
.vgdb-home-main-layout {
    display: flex;
    gap: 30px;
}

.vgdb-home-content-area {
    flex: 1;
    min-width: 0; /* Fix flex overflow */
}

.vgdb-home-right-sidebar {
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Sincronizado com o feed de notícias para alta densidade */
}


/* === THE HERO GRID === */
.vgdb-home-hero-row {
    margin-bottom: 40px;
}

.vgdb-home-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.6fr 480px;
    gap: 15px;
    min-height: 580px; /* Dynamic height to avoid overlap */
}

/* Block Styles */
.home-hero-art {
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    background-color: #000;
}

.main-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-hero-art-content { z-index: 2; position: relative; }
.home-hero-art-label, .author-link { position: relative; z-index: 3; }

.home-hero-art .thumb-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-hero-art:hover img {
    transform: scale(1.05);
}

.home-hero-art-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 20px 20px;
    background: linear-gradient(to top, rgba(1, 6, 15, 0.95) 0%, rgba(1, 6, 15, 0.5) 50%, transparent 100%);
    z-index: 2;
}

.home-hero-art-label {
    display: inline-block;
    background: #ff0055;
    color: #fff;
    padding: 2px 10px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.home-hero-art-content h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    margin: 0 0 10px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
}

.home-hero-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.home-hero-meta .author-link {
    color: #ff0055;
    text-decoration: none;
    font-weight: 700;
}

/* COL MODIFIERS */
.vgdb-home-col-main .home-hero-art-content h2 { font-size: 38px; }
.vgdb-home-col-stacked {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

/* SIDEBAR GAME (v3 Refined) */
.vgdb-home-col-game-hero {
    display: flex;
    flex-direction: column;
}

.home-side-game-hero-box {
    background: rgba(20, 20, 30, 0.9);
    border: none;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border-radius: 0;
}

.side-game-box-title {
    background: rgba(255,0,85,0.15);
    color: #fff;
    font-size: 16px;
    padding: 15px 25px;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-left: 4px solid #ff0055;
}

.side-game-header {
    display: flex;
    gap: 20px;
    padding: 20px; /* Added padding here since I removed it from parent */
}

.side-game-cover {
    width: 180px; /* Wider cover */
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.side-game-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-game-main-info {
    flex: 1;
}

.side-game-main-info h4 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 15px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.side-game-meta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item .label {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.meta-item .val {
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
}

.val.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.vgdb-plat-badge {
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

/* SIDEBAR NEWS LIST (v3 refined full-bleed) */
.home-side-news-list {
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
}

.side-news-list-title {
    font-size: 10px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin: 25px 25px 15px; /* Increased spacing to align with thumbs and not touch edges */
    color: rgba(255,255,255,0.5); 
}

.home-side-news-item {
    display: flex;
    gap: 12px;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: #fff;
}

.home-side-news-item:last-child {
    border-bottom: none;
}

.home-side-news-item .thumb {
    width: 90px;
    height: 55px;
    flex-shrink: 0;
    overflow: hidden;
}

.home-side-news-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-side-news-item h4 {
    font-size: 13px;
    margin: 0 0 5px;
    line-height: 1.4;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-side-news-item .item-meta {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.home-side-news-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.side-news-more-btn-wrap {
    padding: 15px 20px 25px;
    text-align: center;
}

.side-news-more-btn {
    display: inline-block;
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
}

.side-news-more-btn:hover {
    background: #ff0055;
    border-color: #ff0055;
    box-shadow: 0 0 15px rgba(255,0,85,0.3);
}

/* === RECENT POSTS GRID === */
.vgdb-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed to 3 columns as requested */
    gap: 20px;
}

.vgdb-post-card {
    background: rgba(20, 20, 30, 0.85);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vgdb-post-card:hover {
    border-color: rgba(255, 0, 85, 0.4);
    box-shadow: 0 8px 15px rgba(0,0,0,0.5);
    transform: none !important;
}

.vgdb-post-card:hover .thumb-overlay {
    opacity: 1;
}

.vgdb-post-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.vgdb-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vgdb-post-thumb .thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.vgdb-post-info {
    padding: 15px;
    flex-grow: 1;
}

.vgdb-post-info h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.3;
    color: #fff;
}

/* === SIDEBAR WIDGETS === */
.vgdb-sidebar-widget {
    background: rgba(20, 20, 30, 0.8);
    border: none;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border-radius: 0;
    margin-bottom: 10px;

}

.widget-title {
    font-size: 20px;
    text-transform: uppercase;
    border-left: 4px solid #ff0055;
    padding-left: 15px;
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
    color: #fff;
}

/* Featured Widget */
.featured-widget-card {
    position: relative;
    display: block;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/3;
    text-decoration: none;
    border: none;
}

.featured-widget-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.featured-widget-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-widget-card:hover .featured-widget-thumb img {
    transform: scale(1.05);
}

.featured-card-premium {
    position: relative;
    display: block;
    height: 380px;
    background: #000;
    overflow: hidden;
    text-decoration: none;
    border-radius: 0;
}

.featured-card-premium .thumb {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.featured-card-premium .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card-premium:hover .thumb img {
    transform: scale(1.05);
}

.featured-card-premium .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,17,34,0.1) 0%, rgba(10,17,34,0.95) 100%);
    z-index: 1;
}

.featured-card-premium .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    z-index: 2;
}

.featured-card-premium .content h3 {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
    line-height: 1.2;
    margin: 0 0 10px;
}

.featured-card-premium .content .meta {
    font-size: 13px;
    font-weight: 700;
    color: #ff0055;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vgdb-featured-widget-premium {
    padding: 0 !important;
    overflow: hidden;
    background: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: none !important;
}

.featured-widget-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 17, 34, 1) 0%, rgba(10, 17, 34, 0) 100%);
    z-index: 1;
}

.featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.featured-info h4 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-family: inherit;
}

.featured-info .meta {
    font-size: 10px;
    color: #ff0055;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
}

/* Countdown Widget */
.vgdb-countdown-box {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.countdown-unit {
    flex: 1;
}

.countdown-unit .num {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ff0055;
    line-height: 1;
}

.countdown-unit .lab {
    font-size: 9px;
    text-transform: uppercase;
    opacity: 0.5;
}

/* SIDEBAR REVIEWS LIST */
.sidebar-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-review-item {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: rgba(20, 20, 30, 0.85);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 5px;
}

.side-review-item:hover {
    border-color: rgba(255,0,85,0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transform: none !important;
}

.side-review-item:hover .thumb-overlay {
    opacity: 1;
}

.side-review-item .thumb {
    width: 100%;
    height: 160px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.side-review-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-review-item .content {
    padding: 15px 20px 20px;
}

.vgdb-sidebar-score {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff0055;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 800;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 2;
}

.side-review-item .content h4 {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: #fff;
    line-height: 1.25;
}

.side-review-item .content .meta {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

/* === ANALISES RECENTES (Bottom Section) === */
.vgdb-reviews-row {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* === RESPONSIBILITY === */
@media (max-width: 1200px) {
    .vgdb-home-hero-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .vgdb-home-col-game-hero { grid-column: 1 / -1; }
    .vgdb-home-main-layout { flex-direction: column; }
    .vgdb-home-right-sidebar { width: 100%; }
}

@media (max-width: 768px) {
    .vgdb-home-hero-grid {
        grid-template-columns: 1fr;
    }
    .vgdb-home-col-main { height: 400px; }
    .vgdb-home-col-stacked { height: 500px; }
    .vgdb-post-grid { grid-template-columns: 1fr; }
    .side-game-header { flex-direction: column; }
    .side-game-cover { width: 100%; height: 300px; }
    .vgdb-post-grid { grid-template-columns: 1fr; }
}

/* === IGDB GRID SECTIONS === */
.vgdb-igdb-section-box {
    background: rgba(20, 20, 30, 0.4);
    border: none;
    padding: 40px;
    margin-top: 60px;
    border-radius: 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.vgdb-igdb-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.vgdb-section-title {
    margin: 0;
    font-size: 22px;
    text-transform: uppercase;
    border-left: 4px solid #ff0055;
    padding-left: 20px;
    line-height: 1;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.vgdb-header-more-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 1px;
}

.vgdb-header-more-link:hover {
    color: #fff;
    border-color: #ff0055;
    background: rgba(255, 0, 85, 0.05);
}

.vgdb-igdb-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.vgdb-igdb-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 0;
}



.vgdb-igdb-card .card-thumb {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #000;
}

.vgdb-igdb-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.vgdb-igdb-card:hover .card-thumb img {
    filter: brightness(0.7);
}

.card-hype-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    z-index: 2;
}

.vgdb-igdb-card .card-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vgdb-igdb-card .card-info h3 {
    margin: 0 0 5px;
    font-size: 14px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vgdb-igdb-card .card-info .estudio {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.vgdb-igdb-card .card-info .meta-row {
    font-size: 11px;
    margin-bottom: 10px;
}

.vgdb-igdb-card .card-info .release {
    color: #ff0055;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

.vgdb-igdb-card .card-info .genre {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 500;
}

.vgdb-igdb-card .card-info .platforms {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.vgdb-igdb-card .card-info .platforms .badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 9px;
    padding: 3px 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.igdb-card-hidden {
    display: none !important;
}

.vgdb-load-more-container {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 25px;
}

.vgdb-load-more-btn {
    width: 100%;
    background: rgba(255,255,255,0.03);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    border-radius: 0;
}

.vgdb-load-more-btn:hover {
    background: rgba(255,0,85,0.1);
    border-color: #ff0055;
    color: #ff0055;
    letter-spacing: 4px;
}

/* ==========================================================================
   VGDB DATABASE PREMIUM DISPLAY (PREMIUM BRUTALIST)
   ========================================================================== */
.vgdb-db-premium-bar {
    margin: 0 0 50px; /* Alinhado ao topo da coluna main */
    background: radial-gradient(circle at 10% 50%, #001255 0%, #000933 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 200px;
    position: relative;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}


/* Background Diagonal Grid */
.bar-bg-canvas {
    position: absolute;
    inset: -100px;
    transform: skewY(-4deg);
    z-index: 1;
}

.bar-bg-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
    padding: 20px;
    opacity: 0.35;
    mix-blend-mode: overlay;
    /* Movimento removido conforme solicitado */
}

@keyframes bar-scroll-up {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

.bar-bg-item {
    width: 100%;
    aspect-ratio: 2/3;
    background-size: 105%; /* Crop ajustado para 105% */
    background-position: center;
    border: 1px solid rgba(255,255,255,0.05);
}


.bar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000933 25%, rgba(0,9,51,0.6) 60%, rgba(0,9,51,0.2) 100%);
    z-index: 2;
}

/* Content Container */
.bar-inner {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px; /* Espaço otimizado para coluna menor */
}


.bar-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1.5;
}

.bar-badge {
    background: #ff0055;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.bar-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px; /* Reduzido para caber melhor na coluna lateral */
    font-weight: 800;
    line-height: 0.95;
    color: #fff;
    text-transform: uppercase;
    margin: 5px 0 20px 0 !important;
}

.bar-title span {
    color: #ff0055;
    font-size: 30px;
    display: block;
    margin-top: 5px;
    opacity: 0.95;
    letter-spacing: -0.5px;
}


.bar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Centralização geométrica absoluta */
    padding: 14px 40px; 
    background: transparent;
    border: 1px solid #ff0055; /* Linha mais fina e clean */
    color: #ff0055;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 220px; /* Largura mínima para garantir presença e equilíbrio visual */
}
.bar-btn:hover {
    background: #ff0055;
    color: #fff;
}

/* Game Icons Right */
.bar-games {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 40px;
}

.bar-game-item {
    width: 120px; 
    height: 165px;
    border: 1px solid rgba(255,255,255,0.15);
    background-size: 105%; /* Crop ajustado para 105% */
    background-position: center;
    transition: all 0.3s ease;
    box-shadow: none;
}


.bar-game-item:hover {
    filter: brightness(0.6);
    border-color: #ff0055;
}



/* Mobile Adjustments */
@media (max-width: 1024px) {
    .bar-title { font-size: 28px; }
    .bar-game-item { width: 90px; height: 125px; }
}

@media (max-width: 768px) {
    .vgdb-db-premium-bar { display: none !important; } /* Desativado no celular */
    .vgdb-db-premium-bar { height: auto; min-height: 250px; }
    .bar-inner { flex-direction: column; padding: 30px 20px; text-align: center; }
    .bar-info { align-items: center; margin-bottom: 25px; }
    .bar-games { margin-left: 0; justify-content: center; }
}

.vgdb-logo-label {
    background: rgba(0,0,0,0.7);
    color: #ff0055;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}


/* Mobile Banner Adjustments */
@media (max-width: 768px) {
    .vgdb-db-banner-inner {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    .banner-text {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .banner-visual {
        justify-content: center;
        height: 140px;
        width: 100%;
    }
    .game-stack {
        width: 160px;
    }
    .game-card {
        width: 90px;
        height: 120px;
    }
    .game-card.card-3 {
        left: 35px;
    }
}

/* Responsive IGDB Grid Extra */
@media (max-width: 1200px) {
    .vgdb-igdb-grid { grid-template-columns: repeat(3, 1fr); }
    .vgdb-home-main-layout { flex-direction: column; }
    .vgdb-home-right-sidebar { width: 100%; }
}

@media (max-width: 768px) {
    .vgdb-home-container { padding: 15px; }
    
    /* Hide Ticker and Game Hero on Mobile as requested */
    .vgdb-news-ticker,
    .vgdb-home-col-game { display: none !important; }

    /* Premium Hero Mobile */
    .vgdb-home-hero-grid { 
        grid-template-columns: 1fr !important; 
        min-height: auto !important;
        gap: 20px;
    }
    .home-hero-art { 
        height: 280px !important; 
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    .home-hero-art-content { 
        padding: 20px !important;
        background: linear-gradient(transparent, rgba(0,0,0,0.95)) !important;
        justify-content: flex-end !important;
    }
    .vgdb-home-col-main .home-hero-art-content h2 { font-size: 22px !important; line-height: 1.25 !important; }
    .home-hero-art-content h2 { font-size: 18px !important; line-height: 1.3 !important; }
    .home-hero-art-label { font-size: 9px !important; margin-bottom: 8px !important; padding: 3px 8px !important; }
    .home-hero-meta { font-size: 10px !important; opacity: 0.8; }

    /* Stacking stack differently */
    .vgdb-home-col-main, .vgdb-home-col-stacked { height: auto !important; }

    .vgdb-igdb-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px; }
    .vgdb-igdb-section-box { padding: 15px; border-radius: 12px; }
    .vgdb-section-title { font-size: 18px; margin-bottom: 15px; }

    .vgdb-post-grid { grid-template-columns: 1fr !important; gap: 20px; }
    
    .side-game-header { flex-direction: column; text-align: center; }
    .side-game-cover { width: 100% !important; height: auto !important; max-width: 180px; margin: 0 auto 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
}

@media (max-width: 480px) {
    .vgdb-igdb-grid { grid-template-columns: 1fr !important; }
    .vgdb-home-col-main .home-hero-art-content h2 { font-size: 22px; }
}

/* === FEED NOTICIAS: LAYOUT LISTA EDITORIAL (1 POR LINHA) === */
.main-feed-grid {
    grid-template-columns: 1fr !important; /* Uma notícia por linha */
    gap: 10px !important; /* Espaçamento de Ultra Densidade */
}

.main-feed-grid .vgdb-post-card {
    display: flex !important;
    flex-direction: row;
    align-items: stretch; /* Crucial: faz as colunas terem a mesma altura */
    gap: 0px; 
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.05); /* Borda em todo o card */
    margin-bottom: 10px; /* Matérias agora estão muito mais unidas */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
    padding: 0 !important; /* Zero padding para a imagem colar nas bordas */
}



.main-feed-grid .vgdb-post-card:hover {
    background: rgba(255,255,255,0.03);
    border-color: #ff0055; /* Borda acende no hover */
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.main-feed-grid .vgdb-post-thumb {
    width: 320px !important;
    min-width: 320px;
    margin: 0 !important;
    overflow: hidden;
    flex: 0 0 320px;
}

.main-feed-grid .vgdb-post-thumb a {
    display: block;
    height: 100%;
    width: 100%;
}

.main-feed-grid .vgdb-post-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Preenche de ponta a ponta sem vácuo */
    display: block;
}

.main-feed-grid .vgdb-post-info {
    padding: 25px 35px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-feed-grid .vgdb-post-info h4 {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
}

.post-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.news-item-hidden {
    display: none !important;
}

.vgdb-load-more-container {
    padding: 20px 0;
    text-align: center;
    margin: 10px 0 40px;
}

@media (max-width: 900px) {
    .main-feed-grid .vgdb-post-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-feed-grid .vgdb-post-thumb {
        width: 100% !important;
        min-width: 100%;
        height: 240px !important;
    }
    .main-feed-grid .vgdb-post-info {
        padding: 20px !important;
    }
}




/* === SKELETON LOADING (UX ELITE) === */
.vgdb-news-skeleton {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.skeleton-thumb {
    width: 320px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.skeleton-info {
    flex: 1;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skeleton-line {
    height: 18px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 12px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.skeleton-line.short { width: 40%; }
.skeleton-line.medium { width: 80%; }
.skeleton-line.long { width: 100%; }

.skeleton-thumb::after,
.skeleton-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: vgdb-shimmer 1.5s infinite;
}

@keyframes vgdb-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 900px) {
    .vgdb-news-skeleton { flex-direction: column; height: auto; }
    .skeleton-thumb { width: 100%; height: 200px; }
}
