/*
Theme Name: Inspira News Portal
Theme URI: https://inspira.tv/
Author: Antigravity
Description: Premium News Portal WordPress Theme based on Inspira.tv design. Features a dark header, colorful logo, TV streaming link, responsive grid, and custom categories.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: inspira-news
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ===== TAILWIND BASE ===== */
@import "tailwindcss";

/* ===== DESIGN SYSTEM VARIABLES ===== */
:root {
    /* Colors - Dark theme inspired by inspira.tv */
    --color-primary: #7C3AED;
    --color-primary-light: #A855F7;
    --color-primary-dark: #6D28D9;
    --color-primary-gradient: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);

    --color-dark-900: #0f0f1a;
    --color-dark-800: #1a1a2e;
    --color-dark-700: #24243e;
    --color-dark-600: #2e2e4a;
    --color-dark-500: #3a3a56;

    --color-light-100: #f8f9fa;
    --color-light-200: #e9ecef;
    --color-light-300: #dee2e6;
    --color-light-400: #ced4da;

    --color-accent-red: #ef4444;
    --color-accent-orange: #f59e0b;
    --color-accent-green: #10b981;
    --color-accent-blue: #3b82f6;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --container-padding: 1rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.3);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: var(--color-light-100);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== BREAKING NEWS TICKER ===== */
.breaking-news-bar {
    background: linear-gradient(90deg, var(--color-accent-red) 0%, #dc2626 100%);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 50;
}

.breaking-news-bar .label {
    background: white;
    color: var(--color-accent-red);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 3px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.breaking-news-bar .ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.breaking-news-bar .ticker-content {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.breaking-news-bar .ticker-scroll {
    display: flex;
    gap: 40px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.breaking-news-bar .ticker-scroll a {
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.3);
}

.breaking-news-bar .ticker-scroll a:hover {
    text-decoration: underline;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
    background: #000000 !important;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: background var(--transition-base);
}

.site-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    height: 72px;
}

.logo-inspira {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-inspira-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: #ffffff;
    letter-spacing: -1.5px;
    text-transform: lowercase;
    line-height: 1;
}

.logo-inspira-play {
    width: 30px;
    height: 30px;
}

.site-header .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.site-header .nav-menu li {
    position: relative;
}

.site-header .nav-menu a {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 22px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
    border-bottom: none;
}

.site-header .nav-menu a:hover,
.site-header .nav-menu a.active {
    color: #ff9800;
    background: transparent;
}

/* Dropdown */
.site-header .nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111111;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    min-width: 190px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
    list-style: none;
    z-index: 200;
}

.site-header .nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header .nav-menu .dropdown-menu a {
    padding: 10px 18px;
    font-size: 0.85rem;
    color: #cccccc;
    font-weight: 500;
}

.site-header .nav-menu .dropdown-menu a:hover {
    color: #ffffff;
    background: #222222;
}

.dropdown-arrow {
    font-size: 0.65rem;
    opacity: 0.8;
}

/* Search & Actions */
.site-header .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-form-group {
    display: flex;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    background: #000000;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 0.85rem;
    width: 120px;
    height: 36px;
    outline: none;
    transition: width var(--transition-base);
    font-family: var(--font-body);
}

.search-input:focus {
    width: 170px;
    border-color: #ff9800;
}

.search-btn {
    background: #d9d9d9;
    border: 1px solid #ffffff;
    border-left: none;
    color: #333333;
    padding: 0 14px;
    height: 36px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: background var(--transition-fast);
    white-space: nowrap;
}

.search-btn:hover {
    background: #b3b3b3;
}

/* Live Search Results */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 250px;
    background: #111111;
    border-radius: var(--radius-sm);
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    z-index: 300;
    display: none;
    max-height: 350px;
    overflow-y: auto;
}

.search-results-dropdown.active {
    display: block;
}

.search-results-dropdown .search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    color: #ffffff;
    transition: background var(--transition-fast);
}

.search-results-dropdown .search-item:hover {
    background: #222222;
}

.search-results-dropdown .search-item img {
    width: 50px;
    height: 35px;
    object-fit: cover;
    border-radius: 2px;
}

.search-results-dropdown .search-item .info h4 {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 0;
}

.search-results-dropdown .search-item .info span {
    color: #888888;
    font-size: 0.7rem;
}

/* Mobile menu toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* TV Streaming Button (Inspira TV style) */
.tv-streaming-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #6200ea 0%, #a855f7 100%);
    color: #ffffff !important;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    box-shadow: 0 0 10px rgba(98, 0, 234, 0.4);
    height: 36px;
    white-space: nowrap;
}

.tv-streaming-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
    box-shadow: 0 0 15px rgba(98, 0, 234, 0.6);
}

.tv-streaming-btn i {
    font-size: 1.05rem;
}

/* ===== HERO / HEADLINE SECTION ===== */
.hero-section {
    padding: 32px 0;
    background: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.hero-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-main:hover img {
    transform: scale(1.03);
}

.hero-main .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
}

.hero-main .hero-overlay .category-badge {
    display: inline-block;
    background: var(--color-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hero-main .hero-overlay h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.hero-main .hero-overlay .meta {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.hero-sidebar {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.hero-sidebar .hero-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.hero-sidebar .hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-sidebar .hero-item:hover img {
    transform: scale(1.05);
}

.hero-sidebar .hero-item .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.hero-sidebar .hero-item .hero-overlay .category-badge {
    display: inline-block;
    background: var(--color-primary);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero-sidebar .hero-item .hero-overlay h3 {
    font-size: 0.95rem;
    color: white;
    line-height: 1.35;
}

/* ===== SECTION TITLES ===== */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--color-primary);
}

.section-title h2 {
    font-size: 1.35rem;
    font-weight: 800;
    position: relative;
}

.section-title .view-all {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-title .view-all:hover {
    color: var(--color-primary-dark);
}

/* ===== NEWS CARDS ===== */
.news-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.news-card .card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.news-card .card-image .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card .card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card .card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .card-body h3 a:hover {
    color: var(--color-primary);
}

.news-card .card-body .excerpt {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-card .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.news-card .card-meta .author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card .card-meta .author img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

/* Small horizontal card */
.news-card-sm {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.news-card-sm .card-image {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.news-card-sm .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-sm .card-body h4 {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.news-card-sm .card-body h4 a:hover {
    color: var(--color-primary);
}

.news-card-sm .card-body .meta {
    font-size: 0.72rem;
    color: #999;
}

/* Numbered list card */
.news-numbered {
    counter-reset: newsCounter;
}

.news-numbered .news-card-sm {
    counter-increment: newsCounter;
    position: relative;
    padding-left: 40px;
}

.news-numbered .news-card-sm::before {
    content: counter(newsCounter);
    position: absolute;
    left: 0;
    top: 16px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.6;
    line-height: 1;
}

/* ===== CONTENT GRID ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

/* ===== MAIN LAYOUT WITH SIDEBAR ===== */
.main-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px 0;
}

/* ===== SIDEBAR ===== */
.sidebar .sidebar-widget {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar .widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--color-primary);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    padding: 4px 14px;
    background: var(--color-light-200);
    color: #555;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.tag-cloud a:hover {
    background: var(--color-primary);
    color: white;
}

/* ===== CATEGORY TABS ===== */
.category-tabs {
    padding: 40px 0;
    background: white;
}

.tab-nav {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid #eee;
    overflow-x: auto;
}

.tab-nav button {
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.tab-nav button:hover,
.tab-nav button.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===== ARTICLE DETAIL ===== */
.article-header {
    padding: 32px 0 0;
}

.article-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 20px;
}

.article-header .breadcrumb a:hover {
    color: var(--color-primary);
}

.article-header .breadcrumb .separator {
    color: #ccc;
}

.article-header h1 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 16px;
}

.article-header .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-header .article-meta .author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-header .article-meta .author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.article-header .article-meta .author-info .name {
    font-weight: 600;
    font-size: 0.9rem;
}

.article-header .article-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.83rem;
    color: #888;
}

.article-thumbnail {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.article-thumbnail img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Article Content */
.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5em;
}

.article-content h2 {
    font-size: 1.5rem;
    margin: 2em 0 0.8em;
}

.article-content h3 {
    font-size: 1.25rem;
    margin: 1.5em 0 0.6em;
}

.article-content img {
    border-radius: var(--radius-md);
    margin: 1.5em 0;
}

.article-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 16px 24px;
    margin: 1.5em 0;
    background: var(--color-light-100);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: #555;
}

.article-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Article Tags */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 32px;
}

.article-tags .label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
}

/* ===== SHARE BUTTONS ===== */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
}

.share-buttons .label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #555;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.share-buttons a:hover {
    transform: scale(1.1);
}

.share-buttons .share-wa { background: #25D366; }
.share-buttons .share-fb { background: #1877F2; }
.share-buttons .share-tw { background: #1DA1F2; }
.share-buttons .share-tg { background: #0088cc; }
.share-buttons .share-copy {
    background: #555;
    cursor: pointer;
}

/* ===== PAGINATION ===== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.pagination-wrapper nav {
    display: flex;
    gap: 4px;
}

.pagination-wrapper .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    background: white;
    border: 1px solid #ddd;
    transition: all var(--transition-fast);
}

.pagination-wrapper .page-link:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pagination-wrapper .page-link.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-dark-800);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-grid h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-about .footer-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 12px;
}

.footer-about .footer-logo span {
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--color-primary-light);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.65);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-dark-600);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ===== BANNER SLOTS ===== */
.banner-slot {
    text-align: center;
    margin: 20px 0;
}

.banner-slot img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

/* ===== AUTHOR PROFILE ===== */
.author-profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.author-profile-header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.author-profile-header .info h1 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.author-profile-header .info .bio {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.author-profile-header .info .stats {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* ===== SEARCH PAGE ===== */
.search-page-header {
    padding: 40px 0 20px;
    background: var(--color-dark-800);
    color: white;
    margin-bottom: 32px;
}

.search-page-header h1 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.search-page-header .search-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
}

.search-page-header .search-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-dark-500);
    background: var(--color-dark-600);
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
}

.search-page-header .search-form input:focus {
    border-color: var(--color-primary);
}

.search-page-header .search-form button {
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    background: var(--color-primary-gradient);
    color: white;
    border: none;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-page-header .search-form button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* ===== 404 PAGE ===== */
.error-page {
    text-align: center;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-page h1 {
    font-size: 8rem;
    font-weight: 900;
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.error-page p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 32px;
}

.error-page a {
    display: inline-block;
    padding: 12px 32px;
    background: var(--color-primary-gradient);
    color: white;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.error-page a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===== SECTION BACKGROUNDS ===== */
.section-latest {
    padding: 40px 0;
    background: var(--color-light-100);
}

.section-popular {
    padding: 40px 0;
    background: white;
}

.section-trending {
    padding: 40px 0;
    background: var(--color-light-100);
}

/* ===== BTN ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--color-primary-gradient);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-sidebar {
        grid-template-rows: unset;
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-with-sidebar {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header .nav-menu {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-dark-800);
        flex-direction: column;
        padding: 20px;
        z-index: 99;
    }

    .site-header .nav-menu.mobile-open {
        display: flex;
    }

    .site-header .nav-menu a {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-menu-btn {
        display: block;
    }

    .search-box input {
        width: 140px;
    }

    .search-box input:focus {
        width: 180px;
    }

    .hero-main .hero-overlay h2 {
        font-size: 1.15rem;
    }

    .news-grid, .news-grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-sidebar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.5rem;
    }

    .article-header .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-main .hero-overlay {
        padding: 16px;
    }

    .hero-main .hero-overlay h2 {
        font-size: 1rem;
    }

    .container {
        padding: 0 12px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
    border-radius: var(--radius-sm);
}

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

/* ===== LIVE STREAMING TV BUTTON (INSPIRA.TV STYLING) ===== */
.live-tv-btn {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%) !important;
    color: white !important;
    font-weight: 700 !important;
    font-family: var(--font-heading);
    text-transform: uppercase;
    padding: 6px 16px !important;
    border-radius: var(--radius-sm);
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
    transition: all var(--transition-fast) !important;
    border-bottom: none !important;
    margin-left: 10px;
    height: auto !important;
    align-self: center;
}

.live-tv-btn:hover {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%) !important;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.8) !important;
    transform: scale(1.05);
}

.live-tv-btn.active {
    background: linear-gradient(90deg, #9333ea 0%, #7c3aed 100%) !important;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.6) !important;
}

.live-tv-btn .dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.2s infinite alternate;
}

@keyframes livePulse {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1.3);
    }
}

