/*
Theme Name: NetCinema News
Theme URI: #
Author: Jhon
Author URI: #
Description: A modern, dark-themed magazine style WordPress theme for NetCinema News.
Version: 1.0
Text Domain: netcinema-news
*/
/* Import Google Fonts for Premium Look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary-color: #e50914; /* Red accent */
    --bg-dark: #0f0f11;
    --bg-card: #1c1c1f;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar & Ticker */
.top-bar {
    background-color: #000;
    border-bottom: 1px solid #222;
    font-size: 13px;
    color: #ccc;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}
.top-date {
    font-weight: 500;
    padding-right: 15px;
}
.breaking-ticker {
    flex-grow: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0 20px;
}
.ticker-label {
    background: var(--primary-color);
    color: #fff;
    padding: 2px 8px;
    font-weight: bold;
    font-size: 11px;
    border-radius: 3px;
    margin-right: 15px;
    white-space: nowrap;
}
.ticker-scroll {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}
#ticker-list {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: ticker 25s linear infinite;
}
#ticker-list li {
    display: inline-block;
    margin-right: 30px;
}
#ticker-list a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}
#ticker-list a:hover {
    color: var(--primary-color);
}
@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main Header */
.site-header {
    background-color: var(--bg-dark);
}
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.header-logo-area {
    display: flex;
    flex-direction: column;
}
.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    color: #fff;
}
.header-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.header-ad-placeholder {
    width: 728px;
    height: 90px;
    background: #222;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    border-radius: 4px;
}

/* Navigation */
.header-nav {
    background-color: #1a1a1d;
    border-top: 1px solid #2a2a2d;
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}
.header-nav li {
    margin-right: 40px;
}
.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding-bottom: 2px;
}

/* Cleaned up duplicate container and body */

/* Hero Top */
.hero-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-main {
    flex: 2.2;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
}

/* Cards (Main and Small) */
.card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 1;
}

.main-post .card-content h2 {
    font-size: 32px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    line-height: 1.2;
}

/* Sidebar */
.sidebar-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-header::before, .sidebar-header::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background-color: #555;
}

.sidebar-header::before {
    left: 0;
}

.sidebar-header::after {
    right: 0;
}

.sidebar-header span, .sidebar-header h2 {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-item {
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: pointer;
    background-color: #333;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.sidebar-item:hover {
    background-color: #3d3d3d;
}

.sidebar-item:hover h3 {
    color: #bfa175;
}

.sidebar-item img {
    width: 90px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.sidebar-item-content {
    flex: 1;
}

.sidebar-item-content .time {
    font-size: 11px;
    color: #aaa;
    display: block;
    margin-bottom: 5px;
}

.sidebar-item-content h3 {
    font-size: 13px;
    line-height: 1.3;
    font-weight: bold;
    transition: color 0.2s;
}

.sidebar-more {
    text-align: right;
    margin-top: auto;
    padding-top: 15px;
}

.sidebar-more a {
    color: #bfa175;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

/* Hero Bottom */
.hero-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.hero-bottom .card {
    height: 200px;
}

.hero-bottom .card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-bottom .card-content {
    padding: 12px;
}

.hero-bottom .card-content .tag {
    font-size: 11px;
    padding: 2px 8px;
}

.hero-bottom .card-content h4 {
    font-size: 13px;
    margin-top: 5px;
    line-height: 1.3;
}

.hero-bottom .card-content div {
    font-size: 12px !important;
    margin-top: 3px !important;
}

.small-card .card-content h4 {
    font-size: 16px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Reviews Section */
.reviews-section {
    background-color: transparent;
    color: #fff;
    padding-bottom: 40px;
}

.reviews-grid {
    display: flex;
    gap: 30px;
}

.reviews-col {
    flex: 1;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin-right: 15px;
}

.see-more {
    font-size: 11px;
    font-weight: bold;
    color: #bfa175;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.see-more:hover {
    text-decoration: underline;
}

/* Movie Slider */
.movie-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.movie-slider img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.movie-slider .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    padding-right: 90px; /* space for nav buttons */
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6) 60%, transparent);
}

.movie-slider .card-content h3 {
    font-size: 20px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.slider-nav {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.nav-btn {
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.nav-btn:hover {
    background-color: #bfa175;
}

/* TV Reviews List */
.tv-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-item {
    display: flex;
    gap: 15px;
    background-color: #333;
    border-radius: 6px;
    overflow: hidden;
    transition: background-color 0.2s;
    border: 1px solid #3d3d3d;
}

.review-item:hover {
    background-color: #3d3d3d;
}

.review-item img {
    width: 160px;
    height: 110px;
    object-fit: cover;
}

.review-info {
    padding: 12px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.review-info h4 {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.review-item:hover .review-info h4 {
    color: #bfa175;
}

.review-meta {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #aaa;
    gap: 10px;
}

.review-meta .author {
    font-weight: bold;
    color: #ddd;
}

.review-meta .comments {
    margin-left: auto;
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Movie News Section */
.movie-news-section {
    background-color: transparent;
    color: #fff;
    padding-bottom: 40px;
}

.movie-news-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.news-card {
    background-color: #1c1c1c;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 300px;
}

.color-block {
    height: 140px;
    position: relative;
    padding: 15px;
    display: flex;
    align-items: flex-end;
}

.color-block .franchise {
    font-weight: bold;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.news-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-content h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.read-more {
    color: #ff3333;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Exclusive Stories Section */
.latest-news-section, .exclusive-stories-section {
    background-color: transparent;
    color: #fff;
    padding-bottom: 40px;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.exclusive-card {
    height: 300px;
}

.exclusive-card .card-content {
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.7) 50%, transparent);
    padding: 15px;
}

.exclusive-card .date {
    font-size: 11px;
    color: #ccc;
    display: block;
    margin-bottom: 5px;
}

.exclusive-card h4 {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.exclusive-card .review-meta {
    margin-top: 10px;
}

/* Trailers Section Specifics */
.trailers-section {
    background-color: transparent;
    color: #fff;
    padding-bottom: 40px;
}

.yt-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff0000;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    font-size: 16px;
    padding-left: 3px; /* visual center for play icon */
    transition: background-color 0.2s, transform 0.2s;
}

.trailer-card:hover .play-btn {
    background-color: rgba(255,0,0,0.8);
    border-color: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Celebs Section */
.celebs-section {
    background-color: transparent;
    color: #fff;
    padding-bottom: 40px;
}

/* Video Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9); 
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: auto;
}

.close-modal {
    color: #fff;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ff3333;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== NEW FOOTER STYLES ===== */
.site-footer {
    background-color: #0d0d0d;
    color: #fff;
}

/* Top row: brand + nav columns */
.footer-top-row {
    padding: 50px 40px 40px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.footer-brand {
    min-width: 180px;
}

.footer-logo {
    font-family: Georgia, serif;
    font-size: 26px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 10px;
    color: #aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-cols {
    display: flex;
    flex: 1;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Divider */
.footer-divider {
    border: none;
    border-top: 1px solid #222;
    margin: 0 40px;
}

/* Bottom row: social icons + copyright */
.footer-bottom-row {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #444;
    border-radius: 50%;
    transition: border-color 0.2s, background-color 0.2s;
}

.social-link:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.1);
}

.social-icon {
    width: 16px;
    height: 16px;
    fill: #aaa;
    transition: fill 0.2s;
}

.social-link:hover .social-icon {
    fill: #fff;
}

.copyright {
    font-size: 12px;
    color: #999;
}

/* CTA Banner (index.html only) */
.cta-banner-container {
    padding: 40px 20px;
    background-color: #0d0d0d;
    display: flex;
    justify-content: center;
    border-top: 1px solid #1a1a1a;
}

.cta-banner {
    background-color: #0b1a30;
    border: 1px solid #1c4b82;
    border-radius: 8px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

.cta-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.cta-content .highlight {
    color: #3399ff;
}

.cta-content p {
    color: #aaa;
    font-size: 14px;
}

.btn-primary {
    background-color: #0066ff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #3399ff;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.6);
}

.menu-toggle {
    display: none;
}

/* ========================================= */
/* Category Pages Grid Layout                */
/* ========================================= */
.category-page {
    padding: 40px 0;
    min-height: 70vh;
}

.category-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    border-left: 4px solid #bfa175;
    padding-left: 15px;
    margin-bottom: 30px;
}

.header-nav a:hover, .header-nav a.active {
    color: var(--primary-color);
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.header-nav a:hover::after, .header-nav a.active::after {
    width: 100%;
}

/* ------------------------------------- */
/* MAGAZINE LAYOUT */
/* ------------------------------------- */
.magazine-section {
    padding: 30px 0;
}
.magazine-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    height: 500px;
}
.magazine-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
}
.magazine-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}
.magazine-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #fff;
}
.magazine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.magazine-card:hover img {
    transform: scale(1.05);
}
.magazine-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    z-index: 2;
}
.magazine-cat {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 8px;
}
.magazine-main .magazine-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px;
}
.magazine-sub-grid .magazine-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}
.magazine-meta {
    font-size: 12px;
    color: #ccc;
    margin-top: 5px;
}

/* Main Content & Sidebar Layout */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.main-sidebar {
    position: relative;
}
.sidebar-widget {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border-top: 3px solid var(--primary-color);
}
.sticky-widget {
    position: sticky;
    top: 80px;
}
.sidebar-ad-placeholder {
    width: 100%;
    height: 250px;
    background: #222;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    border-radius: 4px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.main-content-area .category-grid {
    grid-template-columns: repeat(2, 1fr);
}

.category-grid .card {
    height: 250px; /* Make category cards a bit taller than hero bottom */
    width: 100%;
}

.category-grid .card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.category-grid .card {
    position: relative;
}

.category-grid .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    box-sizing: border-box;
}

.category-grid .card-content h4 {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .category-grid { grid-template-columns: 1fr; }
}

/* ========================================= */
/* Article Page Extras (Share, Nav, Related) */
/* ========================================= */

.share-your-love {
    margin-top: 40px;
    margin-bottom: 40px;
}

.share-title {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: normal;
}

.share-buttons {
    display: flex;
    border: 1px solid #222;
    background-color: #111;
}

.share-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-right: 1px solid #222;
    transition: background-color 0.2s;
}

.share-btn:last-child {
    border-right: none;
}

.share-btn:hover {
    background-color: #222;
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.post-navigation {
    display: flex;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 30px 0;
}

.nav-post {
    flex: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.nav-post.next-post {
    justify-content: flex-end;
    border-left: 1px solid #222;
    padding-left: 30px;
}

.nav-post.prev-post {
    padding-right: 30px;
}

.nav-post img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-post-info {
    display: flex;
    flex-direction: column;
}

.nav-post-info.text-right {
    text-align: right;
}

.nav-label {
    color: #aaa;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 5px;
}

.nav-post-info h4 {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s;
}

.nav-post:hover .nav-post-info h4 {
    color: #bfa175;
}

.related-posts {
    margin-top: 50px;
}

.related-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    display: flex;
    flex-direction: column;
}

.related-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.related-info h4 {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.related-info .date {
    color: #aaa;
    font-size: 12px;
}

@media (max-width: 768px) {
    /* Related Posts - Horizontal Swipe Scroll */
    .related-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .related-grid::-webkit-scrollbar {
        display: none;
    }
    .related-card {
        flex: 0 0 75vw;
        max-width: 280px;
        scroll-snap-align: start;
    }
    .related-card img {
        height: 160px;
        width: 100%;
    }

    /* Post Navigation - Clean Stacked Layout */
    .post-navigation {
        flex-direction: column;
        gap: 0;
        padding: 0;
        border: none;
    }
    .nav-post {
        flex-direction: row;
        width: 100%;
        padding: 20px 0;
        border-bottom: 1px solid #222;
        gap: 15px;
    }
    .nav-post.prev-post {
        padding-right: 0;
        border-top: 1px solid #222;
    }
    .nav-post.next-post {
        justify-content: center;
        border-left: none;
        padding-left: 0;
        flex-direction: row;
    }
    .nav-post.next-post .nav-post-info {
        text-align: left;
    }
    .nav-post img {
        width: 70px;
        height: 70px;
        border-radius: 6px;
        flex-shrink: 0;
    }
    .nav-post-info h4 {
        font-size: 14px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* ========================================= */
/* Global Mobile Responsiveness              */
/* ========================================= */

@media (max-width: 768px) {
    /* Header / Nav */
    .site-header {
        padding: 15px 0;
        position: relative;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 25px;
        right: 20px;
        background: transparent;
        color: #fff;
        border: 1px solid #444;
        border-radius: 4px;
        font-size: 24px;
        cursor: pointer;
        padding: 5px 10px;
        z-index: 100;
        transition: background 0.2s;
    }
    .menu-toggle:hover {
        background: #222;
    }

    .header-nav {
        display: none;
        width: 100%;
        margin-top: 20px;
    }
    .header-nav.active {
        display: block;
    }

    .header-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .header-nav li {
        text-align: center;
        border-bottom: 1px solid #222;
    }
    .header-nav a {
        display: block;
        padding: 15px 0;
    }

    /* Hero Section */
    .hero-top {
        flex-direction: column;
    }
    .hero-main, .hero-sidebar {
        width: 100%;
        padding-right: 0;
    }
    .hero-sidebar {
        margin-top: 30px;
    }
    .hero-bottom {
        grid-template-columns: 1fr;
    }

    /* Homepage Grids */
    .reviews-grid {
        flex-direction: column;
        gap: 30px;
    }

    /* TV Reviews List - Horizontal Swipe Scroll on Mobile */
    .tv-reviews-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
        padding: 15px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        background-color: transparent;
        border-radius: 0;
    }
    .tv-reviews-list::-webkit-scrollbar {
        display: none;
    }
    .review-item {
        flex: 0 0 80vw;
        max-width: 300px;
        flex-direction: column;
        scroll-snap-align: start;
        border-radius: 8px;
    }
    .review-item img {
        width: 100%;
        height: 160px;
        border-radius: 6px 6px 0 0;
    }
    .review-info {
        padding: 12px;
    }

    /* Homepage Grids - Horizontal Swipe Scroll on Mobile */
    .movie-news-grid,
    .exclusive-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar but keep functionality */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .movie-news-grid::-webkit-scrollbar,
    .exclusive-grid::-webkit-scrollbar {
        display: none;
    }
    .movie-news-grid .news-card,
    .movie-news-grid .exclusive-card,
    .exclusive-grid .exclusive-card,
    .exclusive-grid .news-card {
        flex: 0 0 75vw;
        max-width: 300px;
        scroll-snap-align: start;
    }

    /* News card height fix */
    .news-card {
        height: auto;
        min-height: 280px;
    }

    /* CTA Banner */
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* Article Layout */
    .article-layout {
        flex-direction: column;
    }
    .article-main {
        padding-right: 0;
        width: 100%;
    }
    .article-sidebar {
        width: 100%;
        margin-top: 40px;
    }

    /* Box Office Table wrapper */
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .bo-table {
        min-width: 600px; /* Forces scrolling instead of squishing */
    }

    /* Footer */
    .footer-top-row {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px 20px;
        text-align: center;
    }
    .footer-brand {
        min-width: unset;
        width: 100%;
    }
    .footer-cols {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    .footer-col {
        width: 100%;
    }
    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-divider {
        margin: 0 20px;
    }
    .footer-bottom-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 32px;
    }
    .main-post .card-content h2 {
        font-size: 24px;
    }
    .article-title {
        font-size: 28px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    /* Swipe cards become slightly narrower on tiny screens */
    .movie-news-grid .news-card,
    .movie-news-grid .exclusive-card,
    .exclusive-grid .exclusive-card,
    .exclusive-grid .news-card {
        flex: 0 0 85vw;
    }
}

/* =========================================================
   Skeleton Loaders
   ========================================================= */

.skeleton {
    background-color: #2a2a2a;
    background-image: linear-gradient(90deg, #2a2a2a 0px, #3a3a3a 40px, #2a2a2a 80px);
    background-size: 200%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-img { width: 100%; height: 200px; display: block; border-radius: 8px 8px 0 0; }
.skeleton-title { width: 80%; height: 24px; margin-top: 15px; margin-bottom: 10px; }
.skeleton-text { width: 100%; height: 16px; margin-bottom: 8px; }
.skeleton-text.short { width: 60%; }

.skeleton-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.skeleton-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.skeleton-hero {
    aspect-ratio: 16/9;
    height: auto;
    border-radius: 8px;
    width: 100%;
}

.hero-main img, .hero-link img {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
}

.skeleton-sidebar-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.skeleton-sidebar-img {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 4px;
}

.skeleton-sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-title a {
    color: var(--text-main);
    text-decoration: none;
}
.header-title a:hover {
    color: var(--primary-color);
}


.top-social { display: flex; align-items: center; gap: 15px; }
.top-social a { color: #fff; font-size: 16px; margin: 0; }
/* --- PREMIUM HOMEPAGE LAYOUT --- */
.flex-heading { display: flex; justify-content: space-between; align-items: center; }
.see-more { font-size: 14px; text-transform: uppercase; color: var(--accent-color); font-weight: 600; text-decoration: none; }
.see-more i { margin-left: 5px; }

/* 1. Top Section */
.home-top-section { padding: 40px 0; border-bottom: 1px solid #333; }
.home-top-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.home-main-col { display: flex; flex-direction: column; gap: 20px; }
.top-hero-card a { display: block; position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; }
.top-hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 20px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: #fff; }
.hero-overlay h2 { font-size: 28px; font-weight: 800; margin: 0; line-height: 1.2; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }

.top-sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.sub-card a { display: block; position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; }
.sub-card img { width: 100%; height: 100%; object-fit: cover; }
.sub-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 15px 15px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: #fff; }
.sub-overlay h3 { font-size: 14px; font-weight: 700; margin: 0; line-height: 1.3; }

.timeline-list { position: relative; padding-left: 20px; margin-top: 20px; }
.timeline-list::before { content: ''; position: absolute; left: 0; top: 10px; bottom: 0; width: 2px; background: #333; }
.timeline-item { position: relative; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 25px; padding-left: 20px; }
.timeline-dot { position: absolute; left: -24px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: #555; border: 2px solid var(--bg-dark); }
.timeline-item:hover .timeline-dot { background: var(--accent-color); }
.timeline-content { flex: 1; padding-right: 15px; }
.time-ago { display: block; font-size: 11px; color: #888; text-transform: uppercase; margin-bottom: 5px; font-weight: 600; }
.timeline-content h4 { font-size: 15px; font-weight: 700; margin: 0; color: #fff; line-height: 1.3; }
.timeline-thumb { width: 80px; height: 50px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.timeline-thumb img { width: 100%; height: 100%; object-fit: cover; }
.more-link-right { text-align: right; margin-top: 20px; }
.more-link-right a { color: var(--accent-color); font-size: 13px; font-weight: 700; text-decoration: none; }

/* 2. Celebs Section */
.home-celebs-section { padding: 40px 0; background: #1a1a1a; border-bottom: 1px solid #333; }
.celebs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-top: 20px; }
.celeb-card a { display: block; position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/5; }
.celeb-card img { width: 100%; height: 100%; object-fit: cover; }
.celeb-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 100%); color: #fff; padding: 15px; display: flex; flex-direction: column; justify-content: flex-end; }
.celeb-overlay h4 { font-size: 14px; font-weight: 700; margin: 0; line-height: 1.3; text-shadow: 1px 1px 2px rgba(0,0,0,0.8); }
.celeb-meta { font-size: 11px; margin-top: 5px; color: #ccc; }

/* 3. Reviews & Profiles */
.home-reviews-profiles { padding: 40px 0; border-bottom: 1px solid #333; }
.rp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.reviews-list { margin-top: 20px; display: flex; flex-direction: column; gap: 15px; }
.review-item { display: flex; gap: 15px; align-items: center; background: #222; padding: 10px; border-radius: 6px; border: 1px solid #333; transition: 0.2s; }
.review-item:hover { border-color: #555; }
.review-thumb { width: 120px; height: 80px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.review-thumb img { width: 100%; height: 100%; object-fit: cover; }
.review-content h4 { font-size: 16px; font-weight: 700; margin: 0 0 5px 0; color: #fff; line-height: 1.3; }
.review-meta { font-size: 12px; color: #aaa; }
.review-meta span { color: var(--accent-color); font-weight: 600; }

.profile-card { margin-top: 20px; }
.profile-card a { display: block; position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; }
.profile-card img { width: 100%; height: 100%; object-fit: cover; }
.profile-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 20px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: #fff; display: flex; justify-content: space-between; align-items: flex-end; }
.profile-overlay h2 { font-size: 22px; font-weight: 700; margin: 0; line-height: 1.2; max-width: 80%; }
.nav-arrows { display: flex; gap: 10px; font-size: 18px; }
.nav-arrows i { background: rgba(255,255,255,0.2); padding: 8px; border-radius: 50%; transition: 0.2s; }
.nav-arrows i:hover { background: var(--accent-color); color: #fff; }

/* 4. Bottom Latest */
.home-bottom-latest { padding: 40px 0; }
.bl-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.filter-tabs { display: flex; gap: 10px; margin: 15px 0 25px 0; flex-wrap: wrap; }
.filter-tabs .tab { padding: 5px 12px; font-size: 12px; font-weight: 700; color: #fff; background: #333; border-radius: 3px; cursor: pointer; transition: 0.2s; letter-spacing: 0.5px; }
.filter-tabs .tab:hover { background: #555; }
.filter-tabs .tab.active { background: var(--primary-color); }

.bl-list { display: flex; flex-direction: column; gap: 25px; }
.bl-item { display: flex; gap: 20px; border-bottom: 1px solid #2a2a2a; padding-bottom: 25px; }
.bl-item:last-child { border-bottom: none; }
.bl-thumb { width: 220px; height: 140px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.bl-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.bl-item:hover .bl-thumb img { transform: scale(1.05); }
.bl-content { flex: 1; }
.bl-content .time-ago { font-size: 11px; color: #888; font-weight: 600; text-transform: uppercase; margin-bottom: 5px; display: block; }
.bl-content h3 { font-size: 20px; font-weight: 700; margin: 0 0 10px 0; color: #fff; line-height: 1.3; }
.bl-content p { font-size: 14px; color: #aaa; margin: 0 0 10px 0; line-height: 1.5; }
.bl-meta { font-size: 12px; color: #888; }
.bl-meta span { color: #fff; font-weight: 600; }

.what-to-watch-promo { margin-top: 20px; position: relative; }
.promo-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: #fff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; }
.promo-text span { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #ccc; }
.promo-text h4 { font-size: 18px; font-weight: 800; margin: 5px 0 0 0; line-height: 1.2; }

.trending-list { display: flex; flex-direction: column; gap: 15px; margin-top: 15px; }
.trend-item { display: flex; gap: 15px; align-items: center; }
.trend-thumb { width: 90px; height: 60px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.trend-thumb img { width: 100%; height: 100%; object-fit: cover; }
.trend-content h5 { font-size: 14px; font-weight: 700; margin: 0; color: #e0e0e0; line-height: 1.3; transition: 0.2s; }
.trend-item:hover h5 { color: var(--accent-color); }

/* Responsive adjustments */
@media (max-width: 991px) {
    .home-top-grid, .bl-grid { grid-template-columns: 1fr; }
    .rp-grid { grid-template-columns: 1fr; }
    .celebs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .top-sub-grid { grid-template-columns: 1fr; }
    .celebs-grid { 
        display: flex; 
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        flex-wrap: nowrap;
        padding-bottom: 15px;
        gap: 15px;
    }
    .celebs-grid::-webkit-scrollbar { height: 6px; }
    .celebs-grid::-webkit-scrollbar-thumb { background: #555; border-radius: 3px; }
    .celeb-card {
        flex: 0 0 65%;
        scroll-snap-align: start;
    }
    .bl-item { flex-direction: column; }
    .bl-thumb { width: 100%; height: 200px; }
}

/* Fix link styles */
a { text-decoration: none; }
.timeline-content a, .review-content a, .bl-content a, .trend-content a { color: inherit; }


/* Collider-style Footer */
.site-footer.collider-style { background-color: #111; color: #aaa; padding: 60px 0 0; font-family: var(--font-body); border-top: 1px solid #222; }

/* Desktop Grid Layout */
.footer-main-layout { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 60px; padding: 0 15px; }
.footer-left { max-width: 350px; }
.footer-right { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; flex: 1; }

.footer-brand { margin-bottom: 40px; }
.footer-logo { font-size: 28px; color: #fff; margin: 0 0 5px 0; font-family: var(--font-heading); font-weight: 700; }
.footer-tagline { font-size: 14px; margin: 0; }
.footer-tagline a { color: #aaa; text-decoration: underline; text-underline-offset: 4px; }
.footer-tagline a:hover { color: #fff; }

.footer-section h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 20px 0; text-transform: uppercase; letter-spacing: 2px; }

.social-icons-centered { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icons-centered a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid #444; background: #222; color: #ccc; transition: 0.2s; font-size: 18px; }
.social-icons-centered a:hover { background: #444; color: #fff; border-color: #666; }

.inline-links { list-style: none; padding: 0; margin: 0 0 15px 0; display: flex; flex-direction: column; }
.inline-links li { margin-bottom: 12px; }
.inline-links li a { color: #aaa; text-decoration: none; font-size: 14px; transition: 0.2s; }
.inline-links li a:hover { color: #fff; }
.premium-link { color: #00e600; font-size: 14px; font-weight: 700; text-decoration: none; transition: 0.2s; display: inline-block; margin-top: 5px; }
.premium-link:hover { color: #33ff33; }

.site-footer.collider-style .footer-copyright { background-color: #0d0d0d; padding: 25px 0; text-align: center; font-size: 13px; color: #55606e; margin-top: 50px; border-top: 1px solid #1a1a1a; }


.bl-see-more { margin-top: 30px; }
.btn-see-more { display: block; width: 100%; text-align: center; padding: 15px; background-color: #1a1a1a; color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; border: 1px solid #333; border-radius: 6px; transition: 0.2s; letter-spacing: 1px; }
.btn-see-more:hover { background-color: #2a2a2a; color: #fff; }


.trend-item { display: flex; gap: 15px; align-items: center; position: relative; }
.trend-rank { font-size: 32px; font-weight: 900; color: #333; line-height: 1; font-family: var(--font-heading); min-width: 25px; text-align: center; }


/* MailPoet Custom Styles */
.custom-mailpoet-wrapper .mailpoet_form { display: flex; margin-bottom: 15px; border-radius: 4px; overflow: hidden; }
.custom-mailpoet-wrapper .mailpoet_paragraph { margin: 0; flex: 1; display: flex; }
.custom-mailpoet-wrapper .mailpoet_text { width: 100%; padding: 12px 15px !important; border: 1px solid #333 !important; background: #222 !important; color: #fff !important; font-size: 14px !important; outline: none !important; border-radius: 4px 0 0 4px !important; }
.custom-mailpoet-wrapper .mailpoet_submit { background: var(--primary-color) !important; color: #fff !important; border: none !important; padding: 0 20px !important; cursor: pointer !important; transition: 0.2s !important; border-radius: 0 4px 4px 0 !important; font-weight: 700; height: 100%; display: flex; align-items: center; }
.custom-mailpoet-wrapper .mailpoet_submit:hover { background: #b80710 !important; }
.custom-mailpoet-wrapper .mailpoet_message { color: #28a745; font-size: 13px; margin-top: 10px; }


/* Mobile View Specifics */
@media (max-width: 768px) {
    .menu-toggle { display: block !important; position: static !important; }
    .mobile-profile-icon { display: block !important; color: #fff; font-size: 24px; }
    .header-social { display: none !important; }
    .header-logo-area { flex: 1; text-align: center; }
    .header-main { padding: 10px 15px; }
    .timeline-item { padding-left: 20px; border-left: 2px solid #333; position: relative; margin-bottom: 0; padding-bottom: 25px; border-bottom: none; }
    .timeline-dot { left: -6px; top: 0; width: 10px; height: 10px; border-radius: 50%; background: #ccc; border: none; }
    .timeline-item::after { content: ''; position: absolute; bottom: 0; left: 20px; right: 0; border-bottom: 1px solid #222; }
    .timeline-thumb { width: 100px; height: 60px; }
    .menu-toggle { border: none; font-size: 24px; padding: 0; }
    .main-post .card-content h2, .article-title, .hero-overlay h2 { font-size: 16px !important; line-height: 1.3 !important; font-weight: 700 !important; margin-bottom: 10px; }
    
    .review-item { flex: none; width: 100%; max-width: none !important; flex-direction: row; align-items: center; padding: 10px; gap: 15px; box-sizing: border-box; }
    .review-thumb { width: 120px; height: 80px; flex-shrink: 0; border-radius: 4px; overflow: hidden; display: block; }
    .review-thumb a { display: block; width: 100%; height: 100%; }
    .review-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .review-content { padding: 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
    .review-content h4 { font-size: 15px !important; line-height: 1.2 !important; margin-bottom: 8px !important; }
    
    .site-footer.collider-style { padding: 40px 0 0; text-align: center; }
    .footer-main-layout { flex-direction: column; gap: 40px; align-items: center; }
    .footer-left { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .footer-right { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand { align-items: center; }
    
    .social-icons-centered { justify-content: center; }
    
    .inline-links { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .inline-links li { position: relative; padding: 0 12px; margin-bottom: 8px; }
    .inline-links li::after { content: '|'; position: absolute; right: -2px; color: #444; }
    .inline-links li:last-child::after { content: ''; }

    .footer-section h3 { font-size: 14px; margin-bottom: 15px; }
}
@media (min-width: 769px) {
    .mobile-profile-icon { display: none; }
    .menu-toggle { display: none !important; }
}

/* Category Page Styles */
.category-hero-grid { display: grid; grid-template-columns: 2fr 1.5fr; gap: 20px; }
.cat-hero-main { height: 100%; min-height: 400px; }
.cat-hero-thumb { display: block; width: 100%; height: 100%; position: relative; border-radius: 6px; overflow: hidden; }
.cat-hero-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.cat-hero-thumb:hover img { transform: scale(1.05); }
.cat-hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 20px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); }
.cat-hero-main h2 { color: #fff; font-size: 28px; font-weight: 900; line-height: 1.2; margin: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.cat-hero-side-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 15px; }
.cat-hero-small { height: 100%; min-height: 190px; }
.cat-hero-small h3 { color: #fff; font-size: 15px; font-weight: 700; line-height: 1.3; margin: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.cat-latest-item { margin-bottom: 25px; align-items: flex-start; }

@media (max-width: 991px) {
    .category-hero-grid { grid-template-columns: 1fr; }
    .cat-hero-main { min-height: 300px; }
}
@media (max-width: 575px) {
    .cat-hero-side-grid { grid-template-columns: 1fr; }
    .cat-latest-item { flex-direction: column; }
    .cat-latest-item .review-thumb { width: 100% !important; height: 200px !important; margin-bottom: 15px; }
}
/* Category Sidebar and Ad */
.category-content-layout { display: flex; gap: 40px; align-items: flex-start; }
.category-main-col { flex: 1; }
.category-sidebar { width: 330px; flex-shrink: 0; }

.streaming-ad-box { background: linear-gradient(145deg, #262626, #1a1a1a); border: 1px solid #333; border-top: 4px solid var(--primary-color, #e50914); border-radius: 8px; padding: 25px; margin-top: 60px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); position: relative; overflow: hidden; }
.streaming-ad-box::before { content: ''; position: absolute; top: -50px; right: -50px; width: 100px; height: 100px; background: var(--primary-color, #e50914); opacity: 0.1; filter: blur(30px); border-radius: 50%; }
.streaming-ad-box h3 { color: #fff; font-size: 22px; font-weight: 900; line-height: 1.2; margin-bottom: 15px; font-family: var(--font-heading); text-shadow: 1px 1px 2px rgba(0,0,0,0.8); }
.streaming-ad-box p { color: #ccc; font-size: 14px; line-height: 1.6; margin-bottom: 25px; position: relative; z-index: 1; }
.streaming-ad-btn { display: block; width: 100%; box-sizing: border-box; background: var(--primary-color, #e50914); color: #fff; text-align: center; padding: 14px; border-radius: 6px; font-weight: 900; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; margin-bottom: 20px; position: relative; z-index: 1; box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4); }
.streaming-ad-btn:hover { background: #ff0f1a; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6); }
.streaming-ad-btn i { margin-right: 8px; font-size: 18px; vertical-align: middle; }
.streaming-ad-disclaimer { font-size: 11px; color: #888; margin: 0; border-top: 1px solid #333; padding-top: 15px; position: relative; z-index: 1; }
.streaming-ad-disclaimer a { color: #aaa; text-decoration: underline; }
.streaming-ad-disclaimer a:hover { color: #fff; }

@media (max-width: 991px) {
    .category-content-layout { flex-direction: column; }
    .category-sidebar { width: 100%; }
    .streaming-ad-box { margin-top: 0; }
}
/* Single Article Page Styles */
.article-hero { background-size: cover; background-position: center; min-height: 500px; height: 60vh; display: flex; align-items: flex-end; padding-bottom: 50px; position: relative; }
.article-hero-content { max-width: 1000px; margin: 0 auto; padding: 0 15px; width: 100%; z-index: 2; position: relative; }
.article-hero-meta-top { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.author-avatar { border-radius: 50%; width: 40px; height: 40px; object-fit: cover; border: 2px solid var(--primary-color, #e50914); }
.article-hero-meta-top a { color: #fff; }
.article-hero-meta-top a:hover { color: var(--primary-color, #e50914); }
.article-hero-title { font-size: 48px; font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); font-family: var(--font-heading); }
.article-hero-meta-bottom { font-size: 13px; color: #ccc; font-weight: 700; display: flex; gap: 15px; text-transform: uppercase; }
.article-hero-meta-bottom a { color: #fff; }

.article-bar { background-color: #1a1a1a; padding: 15px 0; border-bottom: 1px solid #333; }
.article-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.breadcrumbs { font-size: 12px; font-weight: 700; color: #888; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; flex: 1; }
.breadcrumbs a { color: #ccc; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .separator { margin: 0 10px; color: #555; }
.breadcrumbs .current { color: var(--primary-color, #e50914); overflow: hidden; text-overflow: ellipsis; }
.article-share { display: flex; align-items: center; gap: 15px; font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.share-icons { display: flex; gap: 10px; }
.share-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: #333; border-radius: 50%; fill: #fff; transition: 0.3s; }
.share-icon svg { width: 14px; height: 14px; }
.share-icon:hover { background: var(--primary-color, #e50914); transform: scale(1.1); }

.article-layout { display: flex; gap: 60px; margin-top: 50px; margin-bottom: 80px; align-items: flex-start; }
.article-main-content { flex: 1; min-width: 0; }
.article-sidebar { width: 330px; flex-shrink: 0; }

.content-body { font-size: 18px; line-height: 1.8; color: #ccc; }
.content-body p { margin-bottom: 25px; }
.content-body h2 { font-size: 32px; color: #fff; margin: 40px 0 20px; font-weight: 900; font-family: var(--font-heading); }
.content-body h3 { font-size: 26px; color: #fff; margin: 30px 0 15px; font-weight: 900; }
.content-body a { color: var(--primary-color, #e50914); text-decoration: underline; text-underline-offset: 4px; }
.content-body a:hover { color: #fff; }
.content-body blockquote { border-left: 5px solid var(--primary-color, #e50914); padding: 10px 0 10px 25px; margin: 40px 0; background: #1a1a1a; font-size: 22px; font-style: italic; color: #fff; }
.content-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 30px 0; display: block; }
.content-body ul, .content-body ol { margin-bottom: 25px; padding-left: 20px; }
.content-body li { margin-bottom: 10px; }

.article-tags { margin-top: 40px; padding-top: 30px; border-top: 1px solid #333; }
.tags-label { font-size: 14px; font-weight: 900; color: #fff; text-transform: uppercase; margin-right: 15px; }
.article-tags a { display: inline-block; padding: 6px 15px; background: #222; color: #ccc; font-size: 13px; font-weight: 700; border-radius: 4px; margin-right: 10px; margin-bottom: 10px; transition: 0.3s; border: 1px solid #333; }
.article-tags a:hover { background: var(--primary-color, #e50914); color: #fff; border-color: var(--primary-color, #e50914); }

.author-profile-box { background: #1a1a1a; border-radius: 8px; padding: 40px; text-align: center; margin-top: 50px; border: 1px solid #333; }
.author-line-wrapper { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 20px; }
.author-line { flex: 1; border: none; border-top: 1px solid #444; margin: 0; }
.author-avatar-large { border-radius: 50%; width: 80px; height: 80px; object-fit: cover; border: 3px solid var(--primary-color, #e50914); padding: 3px; background: #111; }
.author-name-large { font-size: 24px; color: #fff; font-weight: 900; font-family: var(--font-heading); margin: 0 0 15px 0; }
.author-bio { font-size: 15px; color: #aaa; line-height: 1.6; margin: 0; }

.post-navigation { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; }
.nav-post { display: flex; align-items: center; gap: 15px; flex: 1; background: #1a1a1a; padding: 20px; border-radius: 8px; border: 1px solid #333; transition: 0.3s; }
.nav-post:hover { background: #222; border-color: #555; transform: translateY(-3px); }
.nav-post img { width: 80px; height: 60px; object-fit: cover; border-radius: 4px; }
.nav-post-info { flex: 1; display: flex; flex-direction: column; }
.nav-label { font-size: 11px; font-weight: 900; color: var(--primary-color, #e50914); text-transform: uppercase; margin-bottom: 5px; }
.nav-post-info span:last-child { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; }
.text-right { text-align: right; }

.related-posts { margin-top: 60px; }
.related-title { font-size: 24px; color: #fff; font-weight: 900; font-family: var(--font-heading); margin-bottom: 25px; border-left: 4px solid var(--primary-color, #e50914); padding-left: 15px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Sidebar Additions */
.sidebar-widget { margin-bottom: 40px; }
.widget-title { font-size: 18px; color: #fff; font-weight: 900; font-family: var(--font-heading); text-transform: uppercase; margin-bottom: 25px; border-bottom: 2px solid #333; padding-bottom: 10px; }
.side-article { display: flex; gap: 15px; margin-bottom: 20px; cursor: pointer; }
.side-article:hover h4 { color: var(--primary-color, #e50914); }
.side-article img { width: 90px; height: 65px; object-fit: cover; border-radius: 4px; }
.side-article-content h4 { font-size: 14px; font-weight: 700; color: #ddd; line-height: 1.3; margin: 0; transition: 0.2s; }
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { margin-bottom: 10px; }
.category-list a { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; background: #1a1a1a; border-radius: 4px; border: 1px solid #333; color: #ccc; font-size: 14px; font-weight: 700; transition: 0.3s; }
.category-list a:hover { background: #222; color: #fff; border-color: var(--primary-color, #e50914); }
.cat-count { background: #333; color: #fff; font-size: 11px; padding: 3px 8px; border-radius: 12px; }

@media (max-width: 991px) {
    .article-layout { flex-direction: column; }
    .article-sidebar { width: 100%; }
    .article-hero-title { font-size: 36px; }
}
@media (max-width: 768px) {
    .article-hero-meta-top { flex-wrap: wrap; gap: 8px 12px; font-size: 11px; margin-bottom: 15px; }
    .author-avatar { width: 30px; height: 30px; }
    .article-hero-meta-top span { white-space: nowrap; }
    .article-bar .container { flex-direction: column; gap: 15px; align-items: flex-start; }
    .breadcrumbs { width: 100%; }
    .article-share { width: 100%; justify-content: space-between; }
    .article-hero { min-height: 400px; padding-bottom: 30px; }
    .article-hero-title { font-size: 24px; }
    .post-navigation { flex-direction: column; }
    .related-grid { grid-template-columns: 1fr; }
}
/* Hover Underline Animation */
a h1, a h2, a h3, a h4, a h5, a h6,
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6,
.hero-overlay h2, .sub-overlay h3,
.side-article-content h4, .review-content h4,
.cat-hero-main h2, .cat-hero-sub h3,
.trend-item h5, .related-card h4, .bl-content h3 {
    text-decoration: none !important;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s ease, color 0.3s ease;
    display: inline;
}

a:hover h1, a:hover h2, a:hover h3, a:hover h4, a:hover h5, a:hover h6,
.card:hover h1, .card:hover h2, .card:hover h3, .card:hover h4, .card:hover h5, .card:hover h6,
.side-article:hover h4, .review-item:hover h4, .trend-item:hover h5, .bl-item:hover h3 {
    background-size: 100% 2px;
}
/* Pagination Styles */
.pagination { margin-top: 50px; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.pagination .page-numbers { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-width: 45px; 
    height: 45px; 
    padding: 0 15px; 
    background-color: #111; 
    color: #fff; 
    border: 1px solid #333; 
    border-radius: 4px; 
    font-size: 16px; 
    font-weight: 700; 
    text-decoration: none; 
    transition: 0.3s;
}
.pagination .page-numbers:hover {
    background-color: #222;
    border-color: #555;
}
.pagination .page-numbers.current {
    background-color: #4CAF50; /* Green active state */
    color: #fff;
    border-color: #4CAF50;
}
.pagination .prev, .pagination .next {
    font-size: 14px;
    letter-spacing: 1px;
    background-color: #1a1a1a;
}
