/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.d-none {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #d70000 0%, #8b0000 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(215, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 0, 0, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* ===== BREAKING NEWS ===== */
.breaking-news {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 15px 0;
    border-bottom: 3px solid #d70000;
    position: relative;
    overflow: hidden;
}

.breaking-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.breaking-news .container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.breaking-label {
    background: linear-gradient(135deg, #d70000 0%, #8b0000 100%);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(215, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breaking-label::before {
    content: '🔴';
    font-size: 10px;
}

.news-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 24px;
}

.ticker-content {
    position: absolute;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    display: flex;
    gap: 30px;
}

.ticker-content a {
    color: #fff;
    padding: 0 10px;
    transition: color 0.3s ease;
}

.ticker-content a:hover {
    color: #ff6b6b;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ===== MAIN CONTENT LAYOUT ===== */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d70000;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d70000, #ff6b6b);
    border-radius: 3px;
}

.section-title i {
    color: #d70000;
    font-size: 24px;
}

/* ===== FEATURED NEWS ===== */
.featured-container {
    margin-bottom: 20px;
}

.featured-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Main Featured Card */
.main-featured-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.main-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.main-featured-card .large-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.main-featured-card .large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-featured-card:hover .large-image img {
    transform: scale(1.08);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.main-featured-card .featured-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-featured-card h3 {
    font-size: 26px;
    line-height: 1.3;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.main-featured-card h3 a {
    color: inherit;
    background: linear-gradient(135deg, #2c3e50 0%, #d70000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-featured-card h3 a:hover {
    background: linear-gradient(135deg, #d70000 0%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-excerpt {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Side Featured Cards */
.side-featured-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.side-featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.side-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.side-featured-card .small-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.side-featured-card .small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.side-featured-card:hover .small-image img {
    transform: scale(1.08);
}

.side-featured-card .featured-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.side-featured-card h4 {
    font-size: 18px;
    line-height: 1.4;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-featured-card h4 a {
    color: inherit;
}

.side-featured-card h4 a:hover {
    color: #d70000;
}

/* ===== CATEGORY BADGE ===== */
.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, rgba(215, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.95) 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ===== NEWS META ===== */
.news-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
    flex-wrap: wrap;
    align-items: center;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-meta i {
    font-size: 12px;
    color: #d70000;
}

.featured-indicator {
    background: linear-gradient(135deg, #ffd93d 0%, #ff6b6b 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

/* ===== LATEST NEWS ===== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #d70000;
}

.news-thumb {
    width: 140px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-thumb img {
    transform: scale(1.05);
}

.news-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-category {
    margin-bottom: 10px;
}

.news-category a {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #495057;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.news-category a:hover {
    background: linear-gradient(135deg, #d70000 0%, #8b0000 100%);
    color: #fff;
    transform: translateY(-2px);
}

.news-details h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.news-details h3 a {
    color: inherit;
}

.news-details h3 a:hover {
    color: #d70000;
}

.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.btn-load-more {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

/* ===== SIDEBAR WIDGETS ===== */
.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 8px 35px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d70000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: #d70000;
    font-size: 18px;
}

/* Popular News Widget */
.popular-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-news-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.popular-news-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.popular-number {
    background: linear-gradient(135deg, #d70000 0%, #8b0000 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.popular-content {
    flex: 1;
}

.popular-content h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.popular-content h4 a {
    color: inherit;
}

.popular-content h4 a:hover {
    color: #d70000;
}

.no-popular, .no-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    color: #6c757d;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #dee2e6;
}

/* Category List Widget */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    transition: all 0.3s ease;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid transparent;
}

.category-link:hover {
    background: linear-gradient(135deg, #d70000 0%, #8b0000 100%);
    color: white;
    transform: translateX(10px);
    border-color: #d70000;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-link:hover .category-icon {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.category-icon i {
    color: #6c757d;
    transition: all 0.3s ease;
}

.category-link:hover .category-icon i {
    color: white;
}

.category-name {
    flex: 1;
    font-weight: 600;
}

.category-count {
    background: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    min-width: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-link:hover .category-count {
    background: rgba(255,255,255,0.3);
    color: white;
}

/* Advertisement Widget */
.ad-space {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px dashed #dee2e6;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    color: #6c757d;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ad-space:hover {
    border-color: #d70000;
    color: #d70000;
    transform: scale(1.02);
}

.ad-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ad-placeholder i {
    font-size: 3rem;
    color: #adb5bd;
}

.ad-placeholder h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.ad-placeholder p {
    font-size: 14px;
    margin: 0;
}

.ad-placeholder small {
    font-size: 12px;
    opacity: 0.7;
}

/* Tags Cloud Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #495057;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag:hover {
    background: linear-gradient(135deg, #d70000 0%, #8b0000 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(215, 0, 0, 0.3);
    border-color: #d70000;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: #d70000;
}

.newsletter-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-control:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 2px #d70000;
}

.btn-newsletter {
    background: linear-gradient(135deg, #d70000 0%, #8b0000 100%);
    color: white;
    width: 100%;
    justify-content: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 0, 0, 0.4);
}

/* ===== STATISTICS SECTION ===== */
.statistics-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0;
    margin-top: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d70000;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== NO CONTENT MESSAGES ===== */
.no-content-message {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    border: 2px dashed #dee2e6;
}

.no-content-icon {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 20px;
}

.no-content-message h3 {
    font-size: 24px;
    color: #495057;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-content-message p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #bdc3c7;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: #d70000;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 35px;
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
    opacity: 0.9;
}

.footer-links h3, .footer-contact h3 {
    color: #ecf0f1;
    font-size: 20px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d70000;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bdc3c7;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-links a:hover {
    color: #d70000;
    transform: translateX(10px);
}

.footer-contact p {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
}

.footer-contact i {
    color: #d70000;
    margin-top: 3px;
    min-width: 18px;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
    }
    
    .featured-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .side-featured-cards {
        flex-direction: row;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    .breaking-news .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .side-featured-cards {
        flex-direction: column;
    }
    
    .news-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-thumb {
        width: 100%;
        aspect-ratio: 16/9;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-news-item {
        flex-direction: column;
        text-align: center;
    }
    
    .popular-number {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .featured-content, .sidebar-widget {
        padding: 20px;
    }
    
    .main-featured-card h3 {
        font-size: 22px;
    }
    
    .side-featured-card h4 {
        font-size: 16px;
    }
    
    .news-details h3 {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .widget-title {
        font-size: 18px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .sidebar, .breaking-news, .header-ads, .social-icons {
        display: none !important;
    }
    
    .main-content {
        grid-template-columns: 1fr;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}