/* ===== CUSTOM VARIABLES ===== */
:root {
    --primary-red: #D31E24;
    --bg-dark: #0D0D0D;
    --card-bg: #1A1A1A;
    --card-bg-hover: #222222;
    --text-white: #FFFFFF;
    --text-grey: #A0A0A0;
    --text-light: #CCCCCC;
    --border: rgba(255,255,255,0.07);
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-width: 300px;
    --gap: 16px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1380px; margin: 0 auto; padding: 0 20px; }

/* ===== LOGO ANIMATION ===== */
.logo-anim-wrap { position: relative; height: 80px; width: 180px; }
.logo-frame {
    position: absolute; top: 0; left: 0;
    height: 40px; width: auto; object-fit: contain;
    opacity: 0; transition: opacity 0.8s ease;
}
.logo-frame.active { opacity: 1; }

/* ===== HEADER ===== */
header {
    padding: 15px 0;
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1380px; 
    margin: 0 auto; 
    padding: 0 15px; /* Slightly reduced padding to give elements more horizontal room */
    width: 100%;
    position: relative;
}

/* --- LOGO FIXES --- */
/* This targets the wrapper around your logo image */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: auto; /* Forces everything else to the right */
    padding-right: 20px; /* Guarantees a physical safety buffer zone to its right */
    max-width: 45%; /* Prevents the logo container from taking up more than half the screen */
}

/* This shrinks the actual logo image down so it stops overlapping */
.logo img, 
header img { 
    max-height: 40px !important; /* Forces the logo to be smaller vertically */
    max-width: 100% !important;  /* Ensures it scales down horizontally to fit the screen */
    width: auto;
    object-fit: contain;
    display: block;
}
/* ------------------ */

.nav-links { display: flex; list-style: none; gap: 35px; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--text-white);
    font-weight: 500; font-size: 0.95rem;
    transition: var(--transition); position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary-red); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-red); }

.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 15px; /* Controlled spacing between search, subscribe, and hamburger */
    flex-shrink: 0; /* Prevents the icons from getting squished by the logo */
}

.search-icon { cursor: pointer; transition: var(--transition); flex-shrink: 0; }
.search-icon:hover { color: var(--primary-red); }

.btn-primary {
    background: var(--primary-red); color: white; border: none;
    padding: 6px 15px; font-weight: 600; border-radius: 50px; /* Made slightly smaller for mobile mobile */
    cursor: pointer; transition: var(--transition); font-size: 0.85rem;
    text-decoration: none; display: inline-block;
    white-space: nowrap; /* Keeps 'Subscribe' on one line */
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(211,30,36,0.4); }

/* ===== CUSTOM TOP SEARCH BAR OVERLAY ===== */
.custom-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1001;
    padding: 0 20px;
}
.custom-search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.custom-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px 15px;
    transition: var(--transition);
}
.custom-search-form:focus-within {
    border-color: var(--primary-red);
    background: rgba(255,255,255,0.1);
}
.custom-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 6px 10px;
}
.custom-search-input::placeholder {
    color: var(--text-grey);
}
.custom-search-submit {
    background: transparent;
    border: none;
    color: var(--text-grey);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-search-submit:hover {
    color: var(--primary-red);
}
.custom-search-close {
    background: transparent;
    border: none;
    color: var(--text-grey);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    margin-left: 15px;
}
.custom-search-close:hover {
    color: var(--primary-red);
}

/* ===== HAMBURGER ===== */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; flex-shrink: 0; }
.hamburger span { width: 25px; height: 2px; background: var(--text-white); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ===== HERO ===== */
.hero {
    height: 100vh; min-height: 600px;
    background: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    display: flex; align-items: center; position: relative;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.85) 30%, rgba(211,30,36,0.3) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin: 20px 0; font-weight: 900; }
.text-red { color: var(--primary-red); }
.badge { background: var(--primary-red); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; display: inline-block; }
.hero-content p { font-size: 1.2rem; color: var(--text-grey); max-width: 500px; margin-bottom: 30px; }
.btn-red, .btn-outline { padding: 14px 35px; font-weight: 700; border-radius: 50px; cursor: pointer; transition: var(--transition); font-size: 1rem; }
.btn-red { background: var(--primary-red); color: white; border: none; margin-right: 15px; }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(211,30,36,0.4); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--bg-dark); }

/* ===== DATE TIME BAR ===== */
.datetime-bar {
    background: rgba(18,18,18,0.98);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    padding: 8px 0;
}
.datetime-inner {
    max-width: 1380px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; gap: 18px;
}
.datetime-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.5px;
}
.datetime-divider { color: var(--border); font-size: 1rem; }
.tz-label {
    background: rgba(211,30,36,0.15); border: 1px solid rgba(211,30,36,0.3);
    color: var(--primary-red); border-radius: 4px; padding: 1px 7px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
}

/* Globe canvas */
.globe-canvas {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

/* ===== CATEGORY FILTER ===== */
.category-filter { display: flex; gap: 10px; flex-wrap: wrap; margin: 28px 0 24px; }
.filter-btn {
    background: #000; border: 1.5px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.75); padding: 8px 22px; border-radius: 50px;
    cursor: pointer; transition: var(--transition); font-size: 0.85rem; font-weight: 600;
}
.filter-btn:hover { border-color: var(--primary-red); color: var(--primary-red); }
.filter-btn.active { background: var(--primary-red); border-color: var(--primary-red); color: white; }

/* ===== MAIN OUTER ===== */
.main-outer { padding-bottom: 60px; }

/* ===== TOP STORIES LAYOUT: feed + sidebar ===== */
.main-layout {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 24px;
    align-items: start;
    margin-bottom: 60px;
}

/* ===== FEED HEADER ===== */
.feed-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.feed-title { font-size: 1.5rem; font-weight: 700; }
.live-dot { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--text-grey); font-weight: 500; }
.live-dot span { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.3)} }

/* ===== FEATURED STORY ===== */
.featured-story {
    background: var(--card-bg); border-radius: 14px; overflow: hidden;
    margin-bottom: 20px; display: flex; min-height: 240px;
    transition: var(--transition); border: 1px solid var(--border);
}
.featured-story:hover { border-color: rgba(211,30,36,0.3); box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.featured-img-wrap { flex: 0 0 45%; position: relative; overflow: hidden; }
.featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.featured-story:hover .featured-img-wrap img { transform: scale(1.04); }
.featured-img-wrap .source-logo { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,0.75); border-radius: 6px; padding: 4px 10px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.featured-info { flex: 1; padding: 24px 26px; display: flex; flex-direction: column; justify-content: space-between; }
.featured-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.external-badge { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.08); border-radius: 50px; padding: 4px 12px; font-size: 0.72rem; color: var(--text-grey); font-weight: 500; }
.external-badge svg { width: 12px; height: 12px; }
.featured-category { color: var(--primary-red); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.featured-info h2 { font-size: 1.45rem; font-weight: 800; line-height: 1.25; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.featured-info p { color: var(--text-grey); font-size: 0.88rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 18px; flex: 1; }
.featured-footer { display: flex; align-items: center; justify-content: space-between; }
.source-info { display: flex; align-items: center; gap: 8px; }
.source-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--primary-red); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; }
.source-name { font-size: 0.8rem; color: var(--text-grey); font-weight: 500; }
.btn-read { background: transparent; border: 1.5px solid rgba(255,255,255,0.2); color: var(--text-white); padding: 8px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.btn-read:hover { background: var(--primary-red); border-color: var(--primary-red); }

/* ===== TOP VIDEOS ROW (3 cards) ===== */
.top-videos-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }

/* ===== SIDEBAR ===== */
.sidebar { position: sticky; top: 80px; }
.sidebar-section { background: var(--card-bg); border-radius: 14px; padding: 18px; border: 1px solid var(--border); }
.sidebar-title { font-size: 1rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-title svg { width: 16px; height: 16px; color: var(--primary-red); }
.for-you-list { display: flex; flex-direction: column; gap: 12px; }

/* ===== STANDARD NEWS / VIDEO CARD ===== */
.news-card {
    background: var(--card-bg); border-radius: 12px; overflow: hidden;
    transition: var(--transition); cursor: pointer;
    border: 1px solid var(--border); display: flex; flex-direction: column;
    height: 100%;
}
.news-card:hover { transform: translateY(-4px); border-color: rgba(211,30,36,0.25); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.news-card-img-wrap { overflow: hidden; position: relative; flex-shrink: 0; }
.news-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: var(--transition); display: block; }
.news-card:hover .news-card-img { transform: scale(1.03); }
.card-type-badge { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); border-radius: 4px; padding: 3px 8px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.card-type-badge.news-type { color: #60a5fa; }
.card-type-badge.video-type { color: #f87171; }
.news-card-body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.news-card-body h3 { font-size: 0.9rem; font-weight: 600; line-height: 1.35; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-body p { font-size: 0.78rem; color: var(--text-grey); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-source { font-size: 0.7rem; color: var(--primary-red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.card-time { font-size: 0.68rem; color: var(--text-grey); }
.play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); }
.play-circle { width: 44px; height: 44px; background: rgba(211,30,36,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.news-card:hover .play-circle { transform: scale(1.15); background: var(--primary-red); }

/* ===== TALL CARD (fills vertical space) ===== */
.news-card.tall .news-card-img { aspect-ratio: unset; height: 100%; min-height: 180px; }
.news-card.tall .news-card-img-wrap { flex: 1; min-height: 180px; }
.news-card.tall { min-height: 320px; }

/* ===== SMALL HORIZONTAL CARD ===== */
.small-card {
    display: flex; gap: 10px; background: var(--card-bg);
    border-radius: 10px; border: 1px solid var(--border);
    overflow: hidden; cursor: pointer; transition: var(--transition);
    text-decoration: none; color: inherit;
}
.small-card:hover { border-color: rgba(211,30,36,0.25); background: var(--card-bg-hover); transform: translateY(-2px); }
.small-card-img { flex: 0 0 90px; height: 64px; overflow: hidden; position: relative; }
.small-card-img img { width: 100%; height: 100%; object-fit: cover; }
.small-card-img .sc-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); }
.sc-play-circle { width: 20px; height: 20px; background: rgba(211,30,36,0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.small-card-body { flex: 1; padding: 8px 10px 8px 0; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.small-card-body h4 { font-size: 0.78rem; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }
.small-card-body .sc-source { font-size: 0.65rem; color: var(--primary-red); font-weight: 600; text-transform: uppercase; }
.small-card-type { font-size: 0.6rem; color: var(--text-grey); }

/* ===== CATEGORY SECTION WRAPPER ===== */
.cat-section {
    margin-bottom: 56px;
}
.cat-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.06);
}
.cat-title { font-size: 1.4rem; font-weight: 700; }
.cat-view-all {
    font-size: 0.78rem; color: var(--primary-red); font-weight: 600;
    cursor: pointer; letter-spacing: 0.5px;
}
.cat-view-all:hover { text-decoration: underline; }

/* ===== TEMPLATE 1: Left tall | Centre 3 stacked small | Right tall ===== */
/* 3 columns: 1fr | 1.2fr | 1fr */
.cat-t1-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: var(--gap);
    min-height: 380px;
}
.cat-t1-left { display: flex; flex-direction: column; }
.cat-t1-centre { display: flex; flex-direction: column; gap: 10px; }
.cat-t1-right { display: flex; flex-direction: column; }

/* ===== TEMPLATE 2: Top row 2-col | Bottom row 3-col ===== */
.cat-t2-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--gap);
    margin-bottom: var(--gap);
}
.cat-t2-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

/* ===== TEMPLATE 3: Left 2 stacked | Centre tall | Right 2 stacked ===== */
/* 3 columns: 1fr | 1.4fr | 1fr */
.cat-t3-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: var(--gap);
    min-height: 380px;
}
.cat-t3-left, .cat-t3-right { display: flex; flex-direction: column; gap: 10px; }
.cat-t3-centre { display: flex; flex-direction: column; }

/* ===== SKELETONS ===== */
.featured-skeleton { display: flex; width: 100%; min-height: 240px; }
.skeleton-img { flex: 0 0 45%; background: linear-gradient(90deg,#1e1e1e 25%,#2a2a2a 50%,#1e1e1e 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
.skeleton-text { flex: 1; padding: 28px 30px; display: flex; flex-direction: column; gap: 12px; }
.skeleton-line { height: 16px; border-radius: 4px; background: linear-gradient(90deg,#1e1e1e 25%,#2a2a2a 50%,#1e1e1e 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
.skeleton-line.wide { width: 90%; height: 26px; }
.skeleton-line.medium { width: 70%; }
.skeleton-line.short { width: 45%; }
@keyframes shimmer { 0%{background-position:-200% 0}100%{background-position:200% 0} }

/* ===== LOADING ===== */
.loading-indicator { display: none; align-items: center; justify-content: center; gap: 12px; padding: 30px; color: var(--text-grey); font-size: 0.9rem; }
.loading-indicator.visible { display: flex; }
.spinner { width: 22px; height: 22px; border: 2px solid rgba(255,255,255,0.1); border-top-color: var(--primary-red); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }

/* ===== ANIMATIONS ===== */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.hero-content { opacity: 0; transform: translateY(40px); transition: opacity 1s ease-out, transform 1s ease-out; }
.hero-content.visible { opacity: 1; transform: translateY(0); }

/* ===== FOOTER ===== */
footer { background: #111; padding: 60px 0 20px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 35px; margin-bottom: 15px; }
.footer-brand p { color: var(--text-grey); font-size: 0.9rem; max-width: 300px; }
.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons i { cursor: pointer; transition: var(--transition); color: var(--text-grey); }
.social-icons i:hover { color: var(--primary-red); transform: translateY(-3px); }
.footer-links h4 { color: var(--text-white); margin-bottom: 20px; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--text-grey); text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.footer-links ul li a:hover { color: var(--primary-red); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; color: var(--text-grey); font-size: 0.85rem; }

/* ===== ARTICLE PAGE ===== */
.article-page-layout { max-width: 860px; margin: 0 auto; padding: 40px 20px 80px; }
.article-back { display: inline-flex; align-items: center; gap: 8px; color: var(--text-grey); font-size: 0.85rem; font-weight: 500; text-decoration: none; margin-bottom: 28px; transition: var(--transition); cursor: pointer; background: none; border: none; padding: 0; }
.article-back:hover { color: var(--text-white); }
.article-headline { font-size: 2.2rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; color: var(--text-white); }
.article-hero-img-wrap { width: 100%; border-radius: 14px; overflow: hidden; margin-bottom: 28px; aspect-ratio: 16/9; background: var(--card-bg); position: relative; }
.article-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-excerpt-box { background: var(--card-bg); border-left: 3px solid var(--primary-red); border-radius: 0 10px 10px 0; padding: 20px 24px; margin-bottom: 32px; border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.article-excerpt-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary-red); margin-bottom: 8px; }
.article-excerpt-text { font-size: 1.05rem; line-height: 1.75; color: var(--text-light); }
.article-cta-section { background: linear-gradient(135deg,#1a1a1a,#111); border: 1px solid rgba(211,30,36,0.2); border-radius: 14px; padding: 30px; margin-bottom: 50px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.btn-continue { display: inline-flex; align-items: center; gap: 10px; background: var(--primary-red); color: white; text-decoration: none; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: var(--transition); white-space: nowrap; flex-shrink: 0; }
.btn-continue:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(211,30,36,0.45); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    :root { --sidebar-width: 260px; }
    .cat-t1-grid { grid-template-columns: 1fr 1.1fr 1fr; }
    .cat-t3-grid { grid-template-columns: 1fr 1.2fr 1fr; }
}

@media (max-width: 992px) {
    .main-layout { grid-template-columns: 1fr; }
    #for-you-sidebar { display: none; }
    .top-videos-row { grid-template-columns: repeat(2,1fr); }
    .cat-t1-grid { grid-template-columns: 1fr 1fr; }
    .cat-t1-right { display: none; }
    .cat-t2-top { grid-template-columns: 1fr; }
    .cat-t2-bottom { grid-template-columns: repeat(2,1fr); }
    .cat-t3-grid { grid-template-columns: 1fr 1fr; }
    .cat-t3-right { display: none; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 70px; left: -100%; width: 80%;
        height: calc(100vh - 70px); background: var(--bg-dark);
        flex-direction: column; padding: 40px 30px;
        transition: var(--transition); border-right: 1px solid var(--border);
        gap: 25px; align-items: flex-start; z-index: 999;
    }
    .nav-links.open { left: 0; }
    .nav-links a { font-size: 1.2rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .featured-story { flex-direction: column; }
    .featured-img-wrap { flex: 0 0 auto; height: 200px; width: 100%; }
    .featured-info { padding: 16px; }
    .featured-info h2 { font-size: 1.05rem; }
    .top-videos-row { grid-template-columns: 1fr; }
    .cat-t1-grid { grid-template-columns: 1fr; }
    .cat-t1-right { display: none; }
    .cat-t2-top { grid-template-columns: 1fr; }
    .cat-t2-bottom { grid-template-columns: 1fr; }
    .cat-t3-grid { grid-template-columns: 1fr; }
    .cat-t3-right, .cat-t3-left { flex-direction: row; flex-wrap: wrap; }
    .cat-t3-left > *, .cat-t3-right > * { flex: 1 1 45%; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .article-headline { font-size: 1.5rem; }
    .article-cta-section { flex-direction: column; }
    .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .category-filter { gap: 8px; }
    .filter-btn { padding: 6px 14px; font-size: 0.75rem; }
    .news-card-body h3 { font-size: 0.82rem; }
    .cat-t3-left > *, .cat-t3-right > * { flex: 1 1 100%; }
}
