*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #8B0000;
    --secondary-color: #003366;
    --accent-color: #D4AF37;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #ffffff;
    --gray-light: #e9ecef;
    --border-radius: 8px;
}

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

/* Header Section */
.header {
    min-height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(news_en_1920x1080.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Clean Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    position: relative;
    z-index: 1000;
}

nav img {
    width: 120px;
    height: auto;
    background: transparent;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-links ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-links ul li a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.nav-btn {
    background: var(--accent-color) !important;
    color: var(--text-dark) !important;
    border: 2px solid var(--accent-color);
}

.nav-btn:hover {
    background: transparent !important;
    color: var(--accent-color) !important;
}

/* Mobile Menu */
nav .fa {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Hero Section */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 50vh;
    color: var(--text-light);
    padding: 0 5%;
}

.text-box h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* News Section */
.news {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.news h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.news h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-content {
    padding: 2rem;
}

.news-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.news-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.news-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    text-align: center;
    width: 100%;
}

.news-btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.loading-message {
    text-align: center;
    padding: 2rem;
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.loading-message h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(139, 0, 0, 0.9), rgba(0, 51, 102, 0.9));
    color: var(--text-light);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 5%;
}

.cta h1 {
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
}

.cta h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    margin-bottom: 1rem;
}

.cta-btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.cta p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 5% 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.email {
    color: var(--accent-color);
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links ul li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links ul li a {
        display: block;
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        background: transparent;
    }
    
    nav .fa {
        display: block;
    }
    
    .text-box h1 {
        font-size: 2.2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-content h2 {
        font-size: 1.5rem;
    }
    
    .loading-message h4 {
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 5%;
    }
}

@media (max-width: 480px) {
    .text-box h1 {
        font-size: 1.8rem;
    }
    
    .news h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .news-image {
        height: 250px;
    }
}

/* Hide ad scripts */
script {
    display: none !important;
}





/* Add these new styles to your existing news.css file */

/* Post meta information */
.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.post-meta i {
    margin-right: 0.3rem;
    color: var(--accent-color);
}

.post-excerpt {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.post-details {
    margin-bottom: 2rem;
}

.post-details p {
    margin-bottom: 1rem;
    text-align: left;
}

.post-details ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.post-details li {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Social Interaction Styles */
.social-interaction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    flex-wrap: wrap;
    gap: 1rem;
}

.like-section, .share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.like-btn, .share-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.like-btn {
    background: var(--light-bg);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.like-btn:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.like-btn.liked {
    background: var(--secondary-color);
    color: var(--text-light);
}

.like-btn i {
    font-size: 1.1rem;
}

.like-text {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.share-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.share-btn:hover, .share-btn.active {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.share-options {
    display: none;
    position: absolute;
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 0.8rem;
    gap: 0.8rem;
    z-index: 100;
    margin-top: 0.5rem;
}

.share-options.show {
    display: flex;
}

.share-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.share-option[data-platform="facebook"] {
    background: #3b5998;
}

.share-option[data-platform="twitter"] {
    background: #1da1f2;
}

.share-option[data-platform="whatsapp"] {
    background: #25d366;
}

.share-option[data-platform="telegram"] {
    background: #0088cc;
}

.share-option:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Secondary button style */
.news-btn.secondary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-light);
}

.news-btn.secondary:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* Placeholder card */
.news-card.placeholder .placeholder-image {
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.subscribe-news {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--gray-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-interaction {
        flex-direction: column;
        align-items: stretch;
    }
    
    .like-section, .share-section {
        justify-content: space-between;
    }
    
    .share-options {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .like-btn, .share-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}