/*
 * Blog Nuntius Games - Estilos Principais
 * Responsabilidade única: Layout e design do sistema de blog
 */

/* Background Elegante e Escuro */
body.nuntius-blog-page {
    background: linear-gradient(180deg, 
        #0a0a0f 0%,           /* Preto profundo no topo */
        #1a1a2e 15%,          /* Azul escuro */
        #2d1b3d 30%,          /* Roxo escuro */
        #1e1e3f 45%,          /* Azul navy */
        #2a2a4f 60%,          /* Cinza azulado */
        #1a1a2e 80%,          /* De volta ao azul escuro */
        #0f0f1a 100%          /* Preto suave no final */
    );
    background-size: 100% 200%;
    animation: elegantDarkFlow 25s ease-in-out infinite;
    min-height: 100vh;
    position: relative;
}

body.nuntius-blog-page::before {
    content: '';
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 300vh;
    background: radial-gradient(ellipse at center top, 
        rgba(45, 27, 61, 0.4) 0%,     /* Roxo escuro sutil */
        rgba(26, 26, 46, 0.3) 30%,    /* Azul escuro */
        rgba(15, 15, 26, 0.2) 60%,    /* Quase preto */
        transparent 100%
    );
    animation: subtleBackgroundShift 30s ease-in-out infinite;
    z-index: -10;
}

/* ===========================================
   CONTAINER E LAYOUT PRINCIPAL
   =========================================== */

.nuntius-blog-container {
    min-height: 60vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: transparent; /* Remove background próprio para usar o global */
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.nuntius-blog-container::before {
    content: '';
    position: fixed;
    top: -50vh; /* Ajustado para a nova altura */
    left: -50vw;
    width: 200vw;
    height: 200vh; /* Reduzido de 300vh para 200vh */
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(196, 144, 254, 0.04) 0%, transparent 50%);
    animation: epicBgFloat 30s ease-in-out infinite;
    z-index: -2;
}

.nuntius-blog-container::after {
    content: '';
    position: fixed;
    top: 0;
    left: -50vw;
    width: 200vw;
    height: 100vh;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="epic-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23a855f7" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="4s" repeatCount="indefinite"/></circle><circle cx="10" cy="40" r="0.8" fill="%237c3aed" opacity="0.08"><animate attributeName="opacity" values="0.08;0.2;0.08" dur="6s" repeatCount="indefinite"/></circle><circle cx="40" cy="10" r="1.2" fill="%23c084fc" opacity="0.06"><animate attributeName="opacity" values="0.06;0.15;0.06" dur="8s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23epic-pattern)"/></svg>');
    animation: epicPatternMove 60s linear infinite;
    z-index: -1;
    pointer-events: none;
}

/* Partículas Flutuantes */
.blog-particles {
    position: fixed;
    top: 0;
    left: -50vw;
    width: 200vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.6), rgba(124, 58, 237, 0.3));
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 30%;
    left: 70%;
    animation-delay: 15s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 28s;
}

/* Header do Blog */
.blog-header {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: transparent; /* Remove background próprio para usar o global */
    padding: 60px 0 40px; /* Reduzido: de 80px para 60px acima, de 60px para 40px abaixo */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Padrão decorativo do header */
.blog-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blog-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-pattern)"/></svg>');
    animation: blogHeaderFloat 20s ease-in-out infinite;
    z-index: -1;
}

/* Remove o before conflitante */

.blog-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: calc(100% - 40px);
}

.blog-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: blogTitleSlide 1s ease-out;
}

.blog-title i {
    color: #a855f7;
    margin-right: 15px;
}

.blog-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: blogTitleSlide 1s ease-out 0.2s both;
}

/* Layout Principal */
.blog-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 30px 20px; /* Reduzido pela metade: de 60px para 30px */
    position: relative;
    z-index: 1;
    width: calc(100% - 40px);
}

/* ===========================================
   SLIDESHOW ÉPICO DE NOTÍCIAS
   =========================================== */

.epic-news-slideshow {
    margin: 20px 0 30px; /* Reduzido pela metade: de 40px para 20px acima, de 60px para 30px abaixo */
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(135deg, 
        rgba(10, 10, 15, 0.3) 0%, 
        rgba(26, 26, 46, 0.2) 30%,
        rgba(45, 27, 61, 0.1) 50%,
        rgba(26, 26, 46, 0.2) 70%,
        rgba(10, 10, 15, 0.3) 100%
    );
    background-size: 300% 300%;
    animation: elegantSlideSection 35s ease-in-out infinite;
    padding: 20px 0; /* Reduzido pela metade: de 40px para 20px */
}

.slideshow-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.slideshow-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: floatUp 1s ease-out;
}

.slideshow-title i,
.slideshow-title i::before,
.slideshow-title i::after,
.slideshow-title .fas,
.slideshow-title .fa-fire {
    color: #a855f7 !important;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 5px 0 0 !important;
    animation: fireIconGlow 3s ease-in-out infinite; /* Animação sem box-shadow */
}

.slideshow-wrapper {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.epic-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
}

.epic-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2); /* Aumentado de 0.4 para 0.75 */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, 
        rgba(124, 58, 237, 0.2) 0%, 
        rgba(168, 85, 247, 0.15) 25%, 
        rgba(196, 144, 254, 0.1) 50%,
        rgba(168, 85, 247, 0.15) 75%,
        rgba(124, 58, 237, 0.2) 100%);
    background-size: 400% 400%;
    animation: infiniteSlideOverlay 15s ease-in-out infinite;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 80px 40px 120px; /* Aumentado padding esquerdo para evitar sobreposição */
    color: #ffffff;
    margin-left: 60px; /* Adiciona margem esquerda extra */
}

.slide-content.no-featured {
    text-align: center;
    width: 100%;
    max-width: none;
}

.slide-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.slide-game {
    background: rgba(168, 85, 247, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.slide-type {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.slide-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    animation: slideIn 1s ease-out 0.2s both;
}

.slide-excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    animation: slideIn 1s ease-out 0.4s both;
}

.slide-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: slideIn 1s ease-out 0.6s both;
}

.slide-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.slide-btn-primary:hover {
    background: linear-gradient(45deg, #6d28d9, #7c3aed);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.6);
    color: #ffffff;
}

.slide-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Controles do Slideshow */
.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px; /* Aumentado de 20px para 40px para dar mais espaço */
    z-index: 3;
    pointer-events: none;
}

.slide-nav {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.slide-nav:hover {
    background: rgba(168, 85, 247, 0.8);
    border-color: rgba(168, 85, 247, 1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

/* Indicadores */
.slide-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.indicator.active {
    background: #a855f7;
    border-color: #a855f7;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

.indicator:hover {
    background: rgba(168, 85, 247, 0.8);
    transform: scale(1.1);
}

/* ===========================================
   SIDEBAR E FILTROS
   =========================================== */

.blog-sidebar {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-filter-widget,
.blog-search-widget,
.blog-recent-widget {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-filter-widget:last-child,
.blog-recent-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-sidebar h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-sidebar h3::before {
    content: '';
    width: 3px;
    height: 20px;
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    border-radius: 2px;
}

/* Busca */
.blog-search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

.blog-search-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-search-form input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

.blog-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.blog-search-form button {
    padding: 12px 15px;
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-search-form button:hover {
    background: linear-gradient(45deg, #6d28d9, #7c3aed);
    transform: translateY(-1px);
}

/* Listas de Filtros */
.product-filter-list,
.type-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-filter-list li,
.type-filter-list li {
    margin-bottom: 8px;
}

.product-filter,
.type-filter,
.filter-all {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-filter:hover,
.type-filter:hover,
.filter-all:hover {
    background: rgba(124, 58, 237, 0.2);
    color: #ffffff;
    transform: translateX(5px);
}

.product-filter i,
.type-filter i {
    width: 16px;
    color: #a855f7;
}

.count {
    margin-left: auto;
    background: rgba(124, 58, 237, 0.3);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Posts Recentes */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-link {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-link:hover {
    color: #ffffff;
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-link:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-content {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================================
   GRID DE POSTS
   =========================================== */

.blog-main {
    min-height: 100vh;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Cards dos Posts */
.blog-post-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(168, 85, 247, 0.15);
    position: relative;
    cursor: pointer;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    border-color: rgba(168, 85, 247, 0.6);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
}

/* Posts em Destaque */
.blog-post-card.featured-post {
    background: linear-gradient(270deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.1), rgba(196, 144, 254, 0.05), rgba(168, 85, 247, 0.1), rgba(124, 58, 237, 0.2));
    background-size: 300% 300%;
    animation: infiniteFeaturedGlow 12s ease-in-out infinite;
    border-color: rgba(168, 85, 247, 0.4);
}

.blog-post-card.featured-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #a855f7, #c084fc);
    z-index: 1;
}

/* Prioridades */
.blog-post-card.urgent-priority {
    border-color: rgba(239, 68, 68, 0.5);
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.1), rgba(30, 41, 59, 0.8));
}

.blog-post-card.high-priority {
    border-color: rgba(251, 191, 36, 0.5);
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.1), rgba(30, 41, 59, 0.8));
}

/* Thumbnail dos Posts */
.post-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

/* Badges */
.featured-badge,
.urgent-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.featured-badge {
    background: rgba(168, 85, 247, 0.9);
    color: #ffffff;
}

.urgent-badge {
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
}

/* Conteúdo dos Posts */
.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.post-date,
.post-products {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-tag {
    background: rgba(124, 58, 237, 0.2);
    color: #a855f7;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    text-decoration: none;
    margin-right: 5px;
}

.product-tag:hover {
    background: rgba(124, 58, 237, 0.3);
    color: #ffffff;
}

.post-title {
    margin-bottom: 15px;
}

.post-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #a855f7;
}

.post-title .fa-external-link-alt {
    font-size: 0.8rem;
    opacity: 0.7;
}

.post-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Footer dos Posts */
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(45deg, #6d28d9, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
    color: #ffffff;
}

.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.news-type-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===========================================
   PAGINAÇÃO
   =========================================== */

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px 0;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(30, 41, 59, 0.8);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    color: #ffffff;
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

.blog-pagination .prev,
.blog-pagination .next {
    width: auto;
    padding: 0 20px;
}

/* ===========================================
   ESTADOS ESPECIAIS
   =========================================== */

.no-posts-found {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.8);
}

.no-posts-icon {
    font-size: 4rem;
    color: rgba(124, 58, 237, 0.5);
    margin-bottom: 30px;
}

.no-posts-found h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.no-posts-found p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.back-to-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-blog-btn:hover {
    background: linear-gradient(45deg, #6d28d9, #7c3aed);
    transform: translateY(-2px);
    color: #ffffff;
}

/* ===========================================
   ANIMAÇÕES ÉPICAS
   =========================================== */

@keyframes epicBgFloat {
    0%, 100% { 
        transform: translateX(-10%) translateY(-5%) rotate(0deg) scale(1);
    }
    33% { 
        transform: translateX(-15%) translateY(-8%) rotate(2deg) scale(1.02);
    }
    66% { 
        transform: translateX(-5%) translateY(-12%) rotate(-1deg) scale(0.98);
    }
}

@keyframes epicPatternMove {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-25px) translateY(-15px); }
    50% { transform: translateX(-50px) translateY(-30px); }
    75% { transform: translateX(-25px) translateY(-45px); }
    100% { transform: translateX(0) translateY(-60px); }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(15px) rotate(270deg);
        opacity: 0.8;
    }
}

@keyframes blogHeaderFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes blogTitleSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes epicGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
    }
}

/* Animação específica para o ícone de fogo - sem box-shadow */
@keyframes fireIconGlow {
    0%, 100% {
        color: #a855f7;
        text-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
        transform: scale(1);
    }
    50% {
        color: #c084fc;
        text-shadow: 0 0 20px rgba(192, 132, 252, 0.6);
        transform: scale(1.05);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes infiniteBackgroundFlow {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 150% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes infiniteHorizontalGradient {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 100% 50%;
    }
    66% {
        background-position: 200% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animação para o novo gradiente elegante */
@keyframes elegantDarkFlow {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 0% 100%;
    }
    75% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Animação sutil para o background overlay */
@keyframes subtleBackgroundShift {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) rotate(0.5deg);
    }
}

@keyframes infiniteSlideOverlay {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes infiniteFeaturedGlow {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 150% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes infiniteSlideSection {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 100% 50%;
    }
    66% {
        background-position: 200% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animação elegante para a seção do slideshow */
@keyframes elegantSlideSection {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 25%;
    }
    50% {
        background-position: 200% 50%;
    }
    75% {
        background-position: 100% 75%;
    }
}

/* ===========================================
   RESPONSIVIDADE
   =========================================== */

@media (max-width: 1200px) {
    .blog-layout {
        grid-template-columns: 280px 1fr;
        gap: 30px;
        padding: 40px 15px;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        position: static;
        order: -1;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 60px 0 40px;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-description {
        font-size: 1rem;
    }
    
    .blog-layout {
        padding: 30px 10px;
        gap: 30px;
    }
    
    .blog-sidebar {
        padding: 20px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}

/* ===========================================
   SISTEMAS ÉPICOS ADICIONAIS
   =========================================== */

/* Painéis Épicos */
.epic-panel {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.epic-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #a855f7, #c084fc);
    animation: epicGlow 3s ease-in-out infinite;
}

/* Filtros de Jogos Épicos */
.epic-game-filters {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.epic-game-filters .product-filter {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
}

.epic-game-filters .product-filter:hover {
    border-left-color: #a855f7;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(124, 58, 237, 0.1));
    transform: translateX(8px) scale(1.02);
}

.game-icon {
    margin-right: 12px;
    font-size: 1.1rem;
    color: #a855f7;
    transition: all 0.3s ease;
}

.product-filter:hover .game-icon {
    color: #ffffff;
    transform: scale(1.2) rotate(10deg);
}

/* Efeitos de Destaque por Jogo */
.blog-post-card.game-highlighted {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
    border-color: rgba(168, 85, 247, 0.6);
}

.blog-post-card.game-dimmed {
    opacity: 0.4;
    transform: scale(0.98);
    filter: grayscale(0.5);
}

/* Estatísticas de Jogos */
.game-statistics h3 {
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-stat-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-stat-item:last-child {
    border-bottom: none;
}

.stat-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.stat-game {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-count {
    color: #a855f7;
    font-size: 0.8rem;
    font-weight: 500;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    border-radius: 2px;
    transition: width 0.6s ease;
    animation: epicGlow 2s ease-in-out infinite;
}

/* Responsividade do Slideshow */
@media (max-width: 1200px) {
    .slideshow-wrapper {
        height: 450px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-content {
        padding: 0 40px;
    }
}

@media (max-width: 968px) {
    .slideshow-wrapper {
        height: 400px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-content {
        padding: 0 30px;
    }
    
    .slide-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .slideshow-wrapper {
        height: 350px;
        border-radius: 15px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-excerpt {
        font-size: 1rem;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .slideshow-controls {
        padding: 0 10px;
    }
}/*
 * Blog Single Post - Módulo de Página Individual
 * Responsabilidade única: Layout épico para posts individuais
 * Princípios: Clean Code, KISS, DRY
 */

/* ===========================================
   HERO SECTION - DESIGN CINEMATOGRÁFICO ÉPICO
   =========================================== */

/* Reset para garantir cobertura total */
body.single-nuntius_news {
    margin: 0;
    padding: 0;
}

/* Hero Section Cinematográfico - Infinito para cima */
.single-post-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: -120px; /* Compensa altura da topbar + qualquer gap */
    padding-top: 120px; /* Mantém o conteúdo na posição correta */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Camada 1: Background com efeito Ken Burns */
/* Background com efeito Ken Burns épico - Infinito em todas as direções */
.single-post-hero-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

/* Camada 2: Múltiplos overlays cinematográficos */
.single-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Vinheta cinematográfica */
        radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.4) 100%),
        /* Gradiente dramático */
        linear-gradient(45deg, 
            rgba(0,0,0,0.6) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0,0,0,0.6) 100%
        ),
        /* Efeito de luz lateral */
        linear-gradient(90deg, 
            rgba(168,85,247,0.1) 0%,
            transparent 20%,
            transparent 80%,
            rgba(196,144,254,0.1) 100%
        );
    z-index: 2;
}

/* Camada 3: Partículas flutuantes cinematográficas */
.single-post-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(168,85,247,0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(196,144,254,0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(168,85,247,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatingParticles 15s linear infinite;
    z-index: 3;
}

/* Efeito de profundidade com múltiplas camadas - Cobertura infinita */
.cinema-layers {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    z-index: 4;
}

.cinema-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0) 100%
    );
}

.cinema-layer:nth-child(1) {
    transform: translateZ(100px) scale(1.1);
    animation: parallaxLayer1 25s ease-in-out infinite;
}

.cinema-layer:nth-child(2) {
    transform: translateZ(200px) scale(1.2);
    animation: parallaxLayer2 30s ease-in-out infinite reverse;
}

.cinema-layer:nth-child(3) {
    transform: translateZ(300px) scale(1.3);
    animation: parallaxLayer3 35s ease-in-out infinite;
}

/* ===========================================
   HERO CONTENT - DESIGN CINEMATOGRÁFICO
   =========================================== */

/* Conteúdo do Hero */
.single-post-hero-content {
    position: relative;
    z-index: 15;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 0; /* Garante que o conteúdo não tenha margin superior */
}

/* Container de efeitos cinematográficos */
.cinematic-container {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.3) 100%
    );
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 100px rgba(168,85,247,0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.single-post-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 1rem;
    opacity: 0.9;
    animation: slideInFromTop 1s ease-out 0.5s both;
}

.breadcrumb-link {
    color: #a855f7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.3);
    backdrop-filter: blur(10px);
}

.breadcrumb-link:hover {
    color: #ffffff;
    background: rgba(168,85,247,0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168,85,247,0.4);
}

.single-post-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #e0e7ff 25%,
        #c084fc 50%,
        #a855f7 75%,
        #7c3aed 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: titleSpectacular 2s ease-out 0.8s both;
    filter: drop-shadow(0 4px 20px rgba(168,85,247,0.3));
}

.single-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(168, 85, 247, 0.1) 100%
    );
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
    animation: cascadeIn 0.8s ease-out both;
}

.meta-item:nth-child(1) { animation-delay: 1.2s; }
.meta-item:nth-child(2) { animation-delay: 1.4s; }
.meta-item:nth-child(3) { animation-delay: 1.6s; }
.meta-item:nth-child(4) { animation-delay: 1.8s; }

.meta-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(168, 85, 247, 0.2) 100%
    );
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
}

.meta-item i {
    font-size: 1.1rem;
    animation: subtleBreathing 3s ease-in-out infinite;
}

.meta-featured-badge {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 
        0 8px 25px rgba(249, 158, 11, 0.4),
        0 0 20px rgba(249, 158, 11, 0.3);
    animation: subtleBreathing 2s ease-in-out infinite;
}

.meta-featured-badge:hover {
    background: linear-gradient(45deg, #f97316, #ea580c);
    box-shadow: 
        0 12px 35px rgba(249, 115, 22, 0.5),
        0 0 30px rgba(249, 115, 22, 0.4);
}

/* ===========================================
   MAIN CONTENT AREA - LAYOUT ÉPICO
   =========================================== */

.single-post-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.single-post-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.single-post-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(168, 85, 247, 0.03) 0%,
        transparent 70%
    );
    animation: subtleRotate 20s linear infinite;
    z-index: 0;
}

.single-post-content > * {
    position: relative;
    z-index: 1;
}

/* ===========================================
   TYPOGRAPHY - ESTILIZAÇÃO DE CONTEÚDO
   =========================================== */

.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.single-post-content h2 {
    font-size: 2rem;
    border-left: 4px solid #a855f7;
    padding-left: 20px;
}

.single-post-content h3 {
    font-size: 1.5rem;
    color: #c084fc;
}

.single-post-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.single-post-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.single-post-content blockquote {
    background: rgba(168, 85, 247, 0.1);
    border-left: 4px solid #a855f7;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 10px;
    font-style: italic;
    color: #c084fc;
}

/* ===========================================
   SIDEBAR ÉPICA - INFORMAÇÕES EXTRAS
   =========================================== */

.single-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.sidebar-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h3 i {
    color: #a855f7;
}

/* ===========================================
   COMMENTS SECTION - SISTEMA WORDPRESS ÉPICO
   =========================================== */

.single-post-comments {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-area {
    width: 100%;
}

.comments-title {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.comments-title i {
    color: #a855f7;
}

/* Lista de comentários */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.comment {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 3px solid #a855f7;
    transition: all 0.3s ease;
}

.comment:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: #c084fc;
}

.comment-body {
    display: flex;
    flex-direction: column;
}

.comment-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.comment-author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.comment-metadata {
    flex: 1;
}

.comment-author-name {
    color: #c084fc;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-author-name a {
    color: #c084fc;
    text-decoration: none;
}

.author-badge {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: #ffffff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.comment-date-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.comment-date-link a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-date-link a:hover {
    color: #a855f7;
}

.comment-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-left: 65px;
}

.comment-content p {
    margin: 0 0 15px 0;
}

.comment-awaiting-moderation {
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 8px;
    padding: 10px 15px;
    color: #fb923c;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.comment-actions {
    margin-top: 10px;
}

.comment-actions a {
    color: #a855f7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.comment-actions a:hover {
    color: #c084fc;
}

/* Comentários filhos (respostas) */
.comment .children {
    margin-left: 40px;
    margin-top: 20px;
    border-left: 1px solid rgba(168, 85, 247, 0.2);
    padding-left: 20px;
}

/* Formulário de comentários */
.comment-form {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-respond h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-respond h3 i {
    color: #a855f7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.comment-form input,
.comment-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-submit {
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    border: none;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

/* Navegação de comentários */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-navigation a {
    color: #a855f7;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.no-comments {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

/* ===========================================
   VIDEO SUPPORT - SUPORTE A MÍDIA
   =========================================== */

.single-post-video {
    position: relative;
    width: 100%;
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.single-post-video iframe,
.single-post-video video {
    width: 100%;
    height: auto;
    min-height: 400px;
}

/* ===========================================
   ANIMATIONS - SISTEMA CINEMATOGRÁFICO ÉPICO
   =========================================== */

/* Efeito Ken Burns para o background */
@keyframes kenBurnsEffect {
    0% {
        transform: scale(1) rotate(0deg);
        filter: brightness(0.7) saturate(1.2);
    }
    25% {
        transform: scale(1.1) rotate(0.5deg);
        filter: brightness(0.8) saturate(1.3);
    }
    50% {
        transform: scale(1.05) rotate(-0.3deg);
        filter: brightness(0.6) saturate(1.4);
    }
    75% {
        transform: scale(1.08) rotate(0.2deg);
        filter: brightness(0.9) saturate(1.1);
    }
    100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(0.7) saturate(1.2);
    }
}

/* Partículas flutuantes cinematográficas */
@keyframes floatingParticles {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-100px) translateX(50px);
        opacity: 1;
    }
    66% {
        transform: translateY(-200px) translateX(-30px);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-300px) translateX(20px);
        opacity: 0;
    }
}

/* Camadas parallax */
@keyframes parallaxLayer1 {
    0%, 100% {
        transform: translateZ(100px) scale(1.1) translateX(0px);
    }
    50% {
        transform: translateZ(100px) scale(1.15) translateX(10px);
    }
}

@keyframes parallaxLayer2 {
    0%, 100% {
        transform: translateZ(200px) scale(1.2) translateY(0px);
    }
    50% {
        transform: translateZ(200px) scale(1.25) translateY(-5px);
    }
}

@keyframes parallaxLayer3 {
    0%, 100% {
        transform: translateZ(300px) scale(1.3) rotate(0deg);
    }
    50% {
        transform: translateZ(300px) scale(1.35) rotate(0.5deg);
    }
}

/* Entrada cinematográfica do conteúdo */
@keyframes heroContentEntrance {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(50px) scale(0.95);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
        filter: blur(0px);
    }
}

/* Animação do breadcrumb */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0px);
    }
}

/* Título espetacular */
@keyframes titleSpectacular {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8);
        filter: blur(20px);
        background-position: 0% 50%;
    }
    30% {
        opacity: 0.3;
        transform: translateY(40px) scale(0.9);
        filter: blur(10px);
        background-position: 25% 50%;
    }
    70% {
        opacity: 0.8;
        transform: translateY(10px) scale(1.05);
        filter: blur(2px);
        background-position: 75% 50%;
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
        filter: blur(0px);
        background-position: 100% 50%;
    }
}

/* Meta informações com efeito cascata */
@keyframes cascadeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

/* Efeito de respiração sutil */
@keyframes breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Sistema de partículas flutuantes épicas - Cobertura infinita */
.floating-particles {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, rgba(255,215,0,0.8), rgba(255,255,255,0.6));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255,215,0,0.4);
}

/* Animações únicas para cada partícula */
.particle-1 {
    top: 20%;
    left: 10%;
    animation: float1 15s infinite linear;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 80%;
    width: 6px;
    height: 6px;
    animation: float2 18s infinite linear;
    animation-delay: -3s;
    background: linear-gradient(45deg, rgba(138,43,226,0.6), rgba(255,255,255,0.4));
    box-shadow: 0 0 25px rgba(138,43,226,0.3);
}

.particle-3 {
    top: 30%;
    left: 60%;
    width: 3px;
    height: 3px;
    animation: float3 20s infinite linear;
    animation-delay: -7s;
}

.particle-4 {
    top: 80%;
    left: 30%;
    animation: float4 12s infinite linear;
    animation-delay: -2s;
    background: linear-gradient(45deg, rgba(0,191,255,0.7), rgba(255,255,255,0.5));
    box-shadow: 0 0 15px rgba(0,191,255,0.4);
}

.particle-5 {
    top: 40%;
    left: 90%;
    width: 5px;
    height: 5px;
    animation: float5 25s infinite linear;
    animation-delay: -10s;
}

.particle-6 {
    top: 70%;
    left: 5%;
    animation: float6 16s infinite linear;
    animation-delay: -5s;
    background: linear-gradient(45deg, rgba(255,20,147,0.6), rgba(255,255,255,0.4));
    box-shadow: 0 0 18px rgba(255,20,147,0.3);
}

.particle-7 {
    top: 15%;
    left: 40%;
    width: 7px;
    height: 7px;
    animation: float7 22s infinite linear;
    animation-delay: -8s;
}

.particle-8 {
    top: 85%;
    left: 70%;
    animation: float8 14s infinite linear;
    animation-delay: -4s;
    background: linear-gradient(45deg, rgba(50,205,50,0.7), rgba(255,255,255,0.5));
    box-shadow: 0 0 22px rgba(50,205,50,0.4);
}

/* Keyframes únicos para movimento natural das partículas */
@keyframes float1 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px) rotate(360deg); opacity: 0; }
}

@keyframes float2 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateY(-120vh) translateX(-80px) rotate(-270deg); opacity: 0; }
}

@keyframes float3 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(0.5); opacity: 0; }
    20% { opacity: 1; scale: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-110vh) translateX(30px) rotate(180deg) scale(1.5); opacity: 0; }
}

@keyframes float4 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { transform: translateY(-90vh) translateX(-60px) rotate(450deg); opacity: 0; }
}

@keyframes float5 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { transform: translateY(-140vh) translateX(-40px) rotate(-180deg); opacity: 0; }
}

@keyframes float6 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0; }
    18% { opacity: 1; }
    82% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(70px) rotate(320deg) scale(0.3); opacity: 0; }
}

@keyframes float7 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0; }
    22% { opacity: 1; }
    78% { opacity: 1; }
    100% { transform: translateY(-130vh) translateX(-20px) rotate(-90deg); opacity: 0; }
}

@keyframes float8 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(0.8); opacity: 0; }
    16% { opacity: 1; }
    84% { opacity: 1; }
    100% { transform: translateY(-95vh) translateX(90px) rotate(540deg) scale(1.2); opacity: 0; }
}

/* ===================================
   BOTÃO STEAM CALL-TO-ACTION ÉPICO
   ================================ */
.steam-cta-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    animation: steamPulse 3s ease-in-out infinite;
}

.steam-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 50%, #1b2838 100%);
    color: #c6d4df;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #4c6b22;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(76, 107, 34, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.steam-cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 192, 244, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.steam-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(76, 107, 34, 0.7);
    border-color: #5c7e25;
    background: linear-gradient(135deg, #2a475e 0%, #4c6b22 50%, #2a475e 100%);
    color: #ffffff;
}

.steam-cta-button:hover::before {
    opacity: 1;
    animation: steamShine 1s ease-in-out;
}

.steam-cta-button .fab {
    font-size: 1.4rem;
    color: #4c6b22;
}

.steam-cta-button .fas {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #c6d4df;
}

.steam-cta-button:hover .fab {
    color: #5c7e25;
}

.steam-cta-button:hover .fas {
    color: #ffffff;
}

@keyframes steamPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes steamShine {
    0% { left: -50%; }
    100% { left: 150%; }
}

/* Botão Steam para links externos */
.steam-external-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 50%, #1b2838 100%);
    color: #c6d4df;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #4c6b22;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(76, 107, 34, 0.4);
}

.steam-external-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(76, 107, 34, 0.6);
    border-color: #5c7e25;
    background: linear-gradient(135deg, #2a475e 0%, #4c6b22 50%, #2a475e 100%);
    color: #ffffff;
}

.steam-external-btn .fab {
    font-size: 1.2rem;
    color: #4c6b22;
}

.steam-external-btn .fas {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #c6d4df;
}

.steam-external-btn:hover .fab {
    color: #5c7e25;
}

.steam-external-btn:hover .fas {
    color: #ffffff;
}

/* ===================================
   SEÇÃO ÉPICA DE NOTÍCIAS RELACIONADAS
   ================================ */
.related-news-epic-section {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
    padding: 5rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

/* Versão inline para dentro do conteúdo */
.related-news-epic-section-inline {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.related-news-epic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
}

/* Background mais sutil para versão inline */
.related-news-epic-section-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(255, 20, 147, 0.05) 0%, transparent 70%);
    animation: backgroundFloat 25s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.related-news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Container para versão inline */
.related-news-epic-section-inline .related-news-container {
    max-width: 100%;
    padding: 0;
}

.related-news-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Header mais compacto para versão inline */
.related-news-epic-section-inline .related-news-header {
    margin-bottom: 2.5rem;
}

.related-news-epic-section-inline .related-news-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.related-news-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(45deg, #ffffff, #66c0f4, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.related-news-title i {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 1rem;
}

.related-news-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(102, 192, 244, 0.5); }
    100% { text-shadow: 0 0 40px rgba(102, 192, 244, 0.8); }
}

/* Grid de Notícias Relacionadas - Cards menores para não quebrar linha */
.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .related-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 640px) {
    .related-news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.related-news-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.related-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 192, 244, 0.5);
}

.related-news-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.related-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-news-card:hover .related-news-image img {
    transform: scale(1.1);
}

.related-news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.related-news-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-news-product {
    background: rgba(102, 192, 244, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.related-news-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.related-news-content {
    padding: 1.2rem;
}

.related-news-card-title {
    margin: 0 0 0.8rem 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.related-news-card-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-news-card:hover .related-news-card-title a {
    color: #66c0f4;
}

.related-news-excerpt {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.related-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #66c0f4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-news-read-more:hover {
    color: white;
    transform: translateX(5px);
}

/* Fallback para quando não há notícias */
.no-related-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.no-related-news i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: rgba(102, 192, 244, 0.5);
}

.no-related-news p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-explore {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #66c0f4, #4fc3f7);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 192, 244, 0.4);
}

/* Responsividade */
/* Seção de Comentários */
.single-post-comments-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-post-comments {
    max-width: 100%;
}

.comments-title {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.comments-title i {
    color: #66c0f4;
}

@media (max-width: 768px) {
    .steam-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .related-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-news-epic-section {
        padding: 3rem 0;
    }
    
    .related-news-header {
        margin-bottom: 2.5rem;
    }
    
    .single-post-comments-section {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}

/* Rotação infinita sutil */
@keyframes subtleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Flutuação épica */
@keyframes epicFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* ===========================================
   RELATED POSTS - POSTS RELACIONADOS
   =========================================== */

.related-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.related-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.related-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-thumb:hover img {
    transform: scale(1.1);
}

.related-post-content {
    flex: 1;
}

.related-post-content h4 {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.related-post-content h4 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: #a855f7;
}

.related-post-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Priority badges */
.priority-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.priority-high {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
}

.priority-urgent {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Sidebar styling extras */
.game-name {
    color: #a855f7;
    font-weight: 600;
}

.category-name {
    color: #c084fc;
    font-weight: 600;
}

.sidebar-card div {
    margin-bottom: 15px;
}

.sidebar-card div:last-child {
    margin-bottom: 0;
}

/* External link button */
.external-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #059669, #10b981);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.external-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: #ffffff;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1024px) {
    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .single-post-title {
        font-size: 2.5rem;
    }
    
    .single-post-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .single-post-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .single-post-title {
        font-size: 2rem;
    }
    
    .single-post-meta {
        gap: 15px;
    }
    
    .meta-item {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
    
    .single-post-content {
        padding: 25px;
    }
}