/* ============================================================
   БГ Новини - Главен стил
   ============================================================ */

:root {
    --red:    #e63946;
    --dark:   #1a1a2e;
    --mid:    #16213e;
    --light:  #0f3460;
    --white:  #f8f9fa;
    --gray:   #6c757d;
    --border: #e0e0e0;
    --shadow: 0 2px 15px rgba(0,0,0,.08);
    --radius: 6px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: #f4f5f7;
    color: #2d2d2d;
    line-height: 1.65;
    font-size: 16px;
}

a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: #c1121f; }

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--dark);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header-top {
    background: var(--red);
    font-size: 12px;
    padding: 6px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breaking-text {
    color: white;
    font-weight: 600;
    letter-spacing: .5px;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
}

.site-logo span { color: var(--red); }

.site-logo:hover { color: white; }

.site-tagline {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin-top: 2px;
}

/* Навигация */
.site-nav {
    background: var(--mid);
    border-top: 1px solid rgba(255,255,255,.05);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-list::-webkit-scrollbar { display: none; }

.nav-list a {
    display: block;
    color: rgba(255,255,255,.8);
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 3px solid transparent;
    transition: all .2s;
    white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
    color: white;
    border-bottom-color: var(--red);
    background: rgba(255,255,255,.05);
}

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-area {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    padding: 30px 0;
}

.full-width { grid-template-columns: 1fr; }

/* ============================================================
   HERO / FEATURED
   ============================================================ */
.hero-section {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 25px 0 0;
    box-shadow: var(--shadow);
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    min-height: 380px;
}

.hero-main {
    position: relative;
    overflow: hidden;
}

.hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

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

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

.hero-overlay .cat-badge { margin-bottom: 10px; }

.hero-overlay h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.3;
    color: white;
}

.hero-overlay h2 a { color: white; }
.hero-overlay h2 a:hover { color: #ffd166; }

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

.hero-side-item {
    flex: 1;
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: background .2s;
}

.hero-side-item:last-child { border-bottom: none; }
.hero-side-item:hover { background: #fafafa; }

.hero-side-item img {
    width: 80px;
    height: 65px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-side-item h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.hero-side-item h3 a { color: #2d2d2d; }
.hero-side-item h3 a:hover { color: var(--red); }

/* ============================================================
   CARD GRID
   ============================================================ */
.section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--red);
    border-radius: 2px;
    display: inline-block;
}

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

.news-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

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

.card-image .no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255,255,255,.2);
}

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

.card-body h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 8px 0;
    font-family: var(--font-heading);
}

.card-body h3 a { color: #1a1a1a; }
.card-body h3 a:hover { color: var(--red); }

.card-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    flex-wrap: wrap;
}

.cat-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: white;
    background: var(--red);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    overflow: hidden;
}

.widget-title {
    background: var(--dark);
    color: white;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-body { padding: 15px; }

/* Trending */
.trending-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

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

.trending-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    min-width: 30px;
    font-family: var(--font-heading);
}

.trending-item h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.trending-item h4 a { color: #2d2d2d; }
.trending-item h4 a:hover { color: var(--red); }

/* Категории */
.cat-list { list-style: none; }

.cat-list li {
    border-bottom: 1px solid #f0f0f0;
}

.cat-list li:last-child { border-bottom: none; }

.cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    font-size: 14px;
    color: #2d2d2d;
    transition: all .2s;
}

.cat-list a:hover { color: var(--red); padding-left: 10px; }

.cat-count {
    background: #f0f0f0;
    color: var(--gray);
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.article-header { margin-bottom: 25px; }

.article-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin: 15px 0;
    color: #1a1a1a;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--gray);
    font-size: 14px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 15px 0;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-featured-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: #2d2d2d;
}

.article-body h2, .article-body h3 {
    font-family: var(--font-heading);
    margin: 25px 0 12px;
}

.article-body p { margin-bottom: 18px; }

.article-body img {
    width: 100%;
    border-radius: var(--radius);
    margin: 15px 0;
}

.article-body blockquote {
    border-left: 4px solid var(--red);
    padding: 15px 20px;
    background: #f9f9f9;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.source-credit {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
    padding: 15px 20px;
    margin: 25px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.source-credit strong { color: var(--dark); }
.source-credit a { color: var(--red); font-weight: 700; }

/* ============================================================
   КОМЕНТАРИ
   ============================================================ */
.comments-section {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.comment {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment:last-child { border-bottom: none; }

.comment-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--dark), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.comment-author { font-weight: 700; font-size: 15px; color: var(--dark); }
.comment-date { font-size: 12px; color: #999; margin-top: 2px; }
.comment-content { margin-top: 8px; font-size: 15px; line-height: 1.6; }

/* ============================================================
   ФОРМИ
   ============================================================ */
.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 11px 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color .2s, box-shadow .2s;
    background: white;
    color: #2d2d2d;
}

.form-control:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230,57,70,.1);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    border: none;
    font-family: var(--font-body);
}

.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: #c1121f; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(230,57,70,.3); }
.btn-secondary { background: var(--dark); color: white; }
.btn-secondary:hover { background: #0d0d1e; }
.btn-outline { background: transparent; border: 2px solid var(--red); color: var(--red); }
.btn-outline:hover { background: var(--red); color: white; }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 17px; }

/* ============================================================
   ПАГИНАЦИЯ
   ============================================================ */
.pagination { margin: 30px 0; }

.pagination ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.pagination a {
    display: block;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: #444;
    background: white;
    transition: all .2s;
}

.pagination a:hover,
.pagination a.active {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.pagination .dots {
    padding: 8px 10px;
    color: #999;
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.alert-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.alert-error   { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }
.alert-info    { background: #d1ecf1; border: 1px solid #bee5eb; color: #0c5460; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
    flex-wrap: wrap;
}

.cookie-banner p { font-size: 14px; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--red); }

.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    margin-top: 50px;
}

.footer-top {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-col h4 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-col p { font-size: 14px; line-height: 1.7; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--red); }

.footer-bottom {
    background: rgba(0,0,0,.2);
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,.05);
}

.social-links { display: flex; gap: 10px; margin-top: 15px; }

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: background .2s;
}

.social-links a:hover { background: var(--red); color: white; }

/* ============================================================
   SEARCH
   ============================================================ */
.search-form {
    display: flex;
    gap: 0;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid rgba(255,255,255,.2);
    border-right: none;
    background: rgba(255,255,255,.1);
    color: white;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 14px;
}

.search-form input::placeholder { color: rgba(255,255,255,.5); }
.search-form input:focus { outline: none; border-color: var(--red); background: rgba(255,255,255,.15); }

.search-form button {
    padding: 10px 16px;
    background: var(--red);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 16px;
}

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

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .content-area { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-sidebar { display: none; }
}

@media (max-width: 640px) {
    .site-logo { font-size: 24px; }
    .news-grid { grid-template-columns: 1fr; }
    .article-title { font-size: 24px; }
    .footer-top { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; }
    .breaking-text { font-size: 11px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .site-header, .sidebar, .site-footer, .comments-section, .cookie-banner { display: none; }
    .content-area { display: block; }
    .article-body { font-size: 12pt; }
}
/* ============================================================
   ТЕХНОЛОГИЧЕН ФОН — добавете в assets/css/style.css
   (заменя body background)
   ============================================================ */

body {
    background: #0a0e1a;
    color: #e8e8e8;
}

/* Canvas фон — фиксиран зад всичко */
#tech-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Адаптирайте картите за тъмен фон */
.news-card {
    background: rgba(20, 25, 45, 0.85);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #e8e8e8;
}

.news-card:hover {
    background: rgba(25, 32, 58, 0.95);
    border-color: rgba(230,57,70,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(230,57,70,0.08);
}

.card-body h3 a { color: #f0f0f0; }
.card-body h3 a:hover { color: #e63946; }
.card-excerpt { color: rgba(255,255,255,0.55); }
.card-meta { color: rgba(255,255,255,0.4); border-top-color: rgba(255,255,255,0.07); }

/* Sidebar widgets */
.sidebar-widget {
    background: rgba(20, 25, 45, 0.85);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Hero */
.hero-section {
    background: rgba(20, 25, 45, 0.7);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(4px);
}

.hero-side-item { border-color: rgba(255,255,255,0.06); }
.hero-side-item:hover { background: rgba(255,255,255,0.03); }
.hero-side-item h3 a { color: #f0f0f0; }
.hero-side-item h3 a:hover { color: #e63946; }

/* Content area */
.article-body, .comments-section {
    background: rgba(20, 25, 45, 0.85);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
}

/* Forms */
.form-control {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: #f0f0f0;
}
.form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: #e63946;
}
.form-control::placeholder { color: rgba(255,255,255,0.3); }

/* Trending */
.trending-item { border-color: rgba(255,255,255,0.06); }
.trending-item h4 a { color: #e8e8e8; }

/* Cat list */
.cat-list a { color: #e0e0e0; }
.cat-count { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

/* Pagination */
.pagination a {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: #ccc;
}
.pagination a:hover, .pagination a.active {
    background: #e63946;
    border-color: #e63946;
    color: white;
}

/* Alert */
.source-credit {
    background: rgba(230,57,70,0.08);
    border-color: rgba(230,57,70,0.3);
    color: #ddd;
}
.source-credit strong { color: #fff; }

/* Section title */
.section-title { color: #f0f0f0; }

/* Comments */
.comment { border-color: rgba(255,255,255,0.07); }
.comment-author { color: #f0f0f0; }
.comment-date { color: rgba(255,255,255,0.35); }
.comment-content { color: #ddd; }

/* Footer */
.site-footer { background: rgba(5, 7, 15, 0.95); }
.footer-bottom { background: rgba(0,0,0,0.3); }
/* ============================================================
         
       assets/css/style.css
   (  dark-theme.css)
   ============================================================ */

/* ----   ---- */
body {
    background: #0a0e1a;
    color: #e8e8e8;
}

/* ----  ---- */
.site-header { background: rgba(8, 10, 22, 0.97); }
.site-tagline { color: rgba(255,255,255,0.55); }
.nav-list a { color: rgba(255,255,255,0.8); }
.nav-list a:hover,
.nav-list a.active { color: #ffffff; }

/* ----  ---- */
.news-card {
    background: rgba(16, 20, 40, 0.88);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.news-card:hover {
    background: rgba(22, 28, 55, 0.96);
    border-color: rgba(230,57,70,0.35);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 20px rgba(230,57,70,0.07);
    transform: translateY(-4px);
}

/*    */
.card-body h3 a {
    color: #f0f0f0 !important;
}
.card-body h3 a:hover { color: #e63946 !important; }

/* Excerpt  */
.card-excerpt { color: rgba(220,220,220,0.65) !important; }

/*   */
.card-meta {
    color: rgba(200,200,200,0.45) !important;
    border-top-color: rgba(255,255,255,0.07) !important;
}
.card-meta a { color: rgba(200,200,200,0.45) !important; }

/* Category badge */
.cat-badge { color: #ffffff !important; }

/* ---- HERO  ---- */
.hero-section {
    background: rgba(14, 18, 38, 0.75);
    border: 1px solid rgba(255,255,255,0.07);
}
.hero-side-item {
    border-color: rgba(255,255,255,0.07) !important;
}
.hero-side-item:hover { background: rgba(255,255,255,0.03) !important; }
.hero-side-item h3 a { color: #f0f0f0 !important; }
.hero-side-item h3 a:hover { color: #e63946 !important; }
.hero-overlay h2 a { color: #ffffff !important; }

/* ---- SECTION TITLES ---- */
.section-title { color: #f5f5f5 !important; }

/* ---- SIDEBAR ---- */
.sidebar-widget {
    background: rgba(16, 20, 40, 0.88);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.widget-title {
    background: rgba(5, 8, 20, 0.8) !important;
    color: #ffffff !important;
}

/* Trending */
.trending-item { border-color: rgba(255,255,255,0.07) !important; }
.trending-item h4 a { color: #e8e8e8 !important; }
.trending-item h4 a:hover { color: #e63946 !important; }
.trending-num { color: #e63946 !important; }
.trending-item div { color: rgba(200,200,200,0.45) !important; }

/*  */
.cat-list a { color: #e0e0e0 !important; }
.cat-list a:hover { color: #e63946 !important; }
.cat-count {
    background: rgba(255,255,255,0.08) !important;
    color: rgba(200,200,200,0.55) !important;
}

/* ----   ---- */
.article-title { color: #f5f5f5 !important; }
.article-meta { color: rgba(200,200,200,0.55) !important; }
.article-meta a { color: #e63946 !important; }
.article-body {
    color: #dde0ea !important;
}
.article-body h2, .article-body h3,
.article-body h4, .article-body h5 {
    color: #f0f0f0 !important;
}
.article-body p { color: #dde0ea !important; }
.article-body a { color: #e63946 !important; }
.article-body blockquote {
    background: rgba(255,255,255,0.04) !important;
    border-left-color: #e63946 !important;
    color: #ccc !important;
}

/* Source credit */
.source-credit {
    background: rgba(230,57,70,0.07) !important;
    border-color: rgba(230,57,70,0.3) !important;
    color: #ddd !important;
}
.source-credit strong { color: #fff !important; }
.source-credit a { color: #e63946 !important; }

/* ----  ---- */
.comments-section {
    background: rgba(16, 20, 40, 0.88) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
}
.comments-section h2,
.comments-section h3 { color: #f0f0f0 !important; }
.comment { border-color: rgba(255,255,255,0.07) !important; }
.comment-author { color: #f0f0f0 !important; }
.comment-date { color: rgba(255,255,255,0.35) !important; }
.comment-content { color: #d8d8d8 !important; }
.comment-avatar { background: linear-gradient(135deg,#1a1a2e,#e63946) !important; }
/* " "  */
.comments-section p { color: rgba(200,200,200,0.5) !important; }

/* ----  ---- */
.form-group label { color: #c8c8d0 !important; }
.form-control {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.14) !important;
    color: #f0f0f0 !important;
}
.form-control:focus {
    background: rgba(255,255,255,0.1) !important;
    border-color: #e63946 !important;
    color: #ffffff !important;
}
.form-control::placeholder { color: rgba(255,255,255,0.28) !important; }

/* ---- ALERTS ---- */
.alert-success { background: rgba(21,87,36,0.35) !important; border-color: rgba(21,87,36,0.5) !important; color: #a3d9b1 !important; }
.alert-error   { background: rgba(114,28,36,0.35) !important; border-color: rgba(114,28,36,0.5) !important; color: #f5a0a8 !important; }
.alert-info    { background: rgba(12,84,96,0.35)  !important; border-color: rgba(12,84,96,0.5)  !important; color: #89d0db !important; }

/* ----  ---- */
.pagination a {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: #c8c8d0 !important;
}
.pagination a:hover,
.pagination a.active {
    background: #e63946 !important;
    border-color: #e63946 !important;
    color: #ffffff !important;
}
.pagination .dots { color: rgba(255,255,255,0.3) !important; }

/* ---- BREADCRUMB ---- */
nav[style*="font-size:13px"] a,
nav[style*="font-size:13px"] span { color: rgba(200,200,200,0.55) !important; }

/* ----   ---- */
div[style*="border-left"] h1 { color: #f0f0f0 !important; }
div[style*="border-left"] p  { color: rgba(200,200,200,0.55) !important; }

/* ----   /   ---- */
.container h1 { color: #f5f5f5 !important; }
.container h2 { color: #f0f0f0 !important; }
.container h3 { color: #ebebeb !important; }
.container p  { color: #d0d0d8 !important; }
.container li { color: #d0d0d8 !important; }

div[style*="background:white"],
div[style*="background: white"] {
    background: rgba(16, 20, 40, 0.88) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    color: #e0e0e8 !important;
}

/* ----   ---- */
div[style*="background:linear-gradient"] h3 { color: #ffffff !important; }
div[style*="background:linear-gradient"] p  { color: rgba(255,255,255,0.8) !important; }

/* ----  ---- */
.search-form input { color: #f0f0f0 !important; }

/* ---- FOOTER ---- */
.site-footer {
    background: rgba(4, 6, 16, 0.97) !important;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-col p    { color: rgba(220,220,220,0.6) !important; }
.footer-links a  { color: rgba(220,220,220,0.6) !important; }
.footer-links a:hover { color: #e63946 !important; }
.footer-col h4   { color: #ffffff !important; }
.footer-bottom   {
    background: rgba(0,0,0,0.3) !important;
    color: rgba(200,200,200,0.45) !important;
}
.footer-bottom a { color: rgba(200,200,200,0.6) !important; }
.footer-bottom a:hover { color: #e63946 !important; }

/* ---- COOKIE BANNER ---- */
.cookie-banner { background: rgba(4, 6, 18, 0.97) !important; }
.cookie-banner p { color: rgba(220,220,220,0.8) !important; }

/* ----  ( .) ---- */
table th { background: rgba(255,255,255,0.05) !important; color: #c8c8d0 !important; }
table td { color: #d0d0d8 !important; border-color: rgba(255,255,255,0.06) !important; }
table tr:hover td { background: rgba(255,255,255,0.03) !important; }

/* ---- SHARE  ---- */
a[href*="facebook"] { color: #ffffff !important; }
a[href*="twitter"]  { color: #ffffff !important; }
a[href*="whatsapp"] { color: #ffffff !important; }

/* ---- LINKS () ---- */
a { color: #e63946; }
a:hover { color: #ff6b6b; }
