a {
text-decoration: none;
	color: #ffffff;
}
/* Disclaimer Modal */
.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.disclaimer-content {
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.disclaimer-content h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-text {
    color: var(--text-primary);
    margin-bottom: 30px;
}

.disclaimer-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.disclaimer-text ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.disclaimer-text li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.disclaimer-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.accept-button, .decline-button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.accept-button {
    background-color: var(--accent-color);
    color: white;
}

.accept-button:hover {
    background-color: var(--accent-hover);
}

.decline-button {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

.decline-button:hover {
    background-color: #444;
}

.hidden {
    display: none;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --bg-tertiary: #333333;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-color: #ff0000;
    --accent-hover: #cc0000;
    --border-color: #333333;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --content-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 60px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.articles-container {
    display: block;
    margin-top: 30px;
}

.main-content {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
}

/* Header styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

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

.main-header.scrolled .header-container {
    height: var(--header-height-scrolled);
}

.logo {
    height: 40px;
    transition: var(--transition);
}

.main-header.scrolled .logo {
    height: 30px;
}

.logo img {
    height: 100%;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    transition: var(--transition);
    opacity: 1;
    visibility: visible;
}

.main-header.scrolled .main-nav {
    opacity: 0;
    visibility: hidden;
    width: 0;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    transition: var(--transition);
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.search-toggle,
.menu-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
    opacity: 1;
    visibility: visible;
}

.main-header.scrolled .search-toggle,
.main-header.scrolled .menu-toggle {
    font-size: 1.1rem;
}

.search-toggle:hover,
.menu-toggle:hover {
    color: var(--accent-color);
}

/* Search overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 1.2rem;
    background: none;
    border: none;
    border-bottom: 2px solid var(--text-primary);
    color: var(--text-primary);
    transition: var(--transition);
}

.search-container input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.close-search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-search:hover {
    color: var(--accent-color);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    z-index: 1002;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header img {
    height: 30px;
    width: auto;
}

.close-menu {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--accent-color);
}

.mobile-nav {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent-color);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--accent-color);
}

/* Hero section */
.hero-section {
    background-color: var(--bg-secondary);
    padding: 40px 0;
    margin-bottom: 40px;
    width: 100%;
}

.hero-article {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    max-width: var(--content-width);
    margin: 0 auto;
}

.hero-article img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-primary);
}

.hero-content .category {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

/* Content wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Main grid */
.main-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.view-all {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--accent-hover);
}

/* News masonry */
.news-masonry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.news-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.news-card.large {
    grid-column: span 1;
}

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

.card-content {
    padding: 20px;
}

.card-content .category {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.timestamp {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Category section */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.category-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 300px;
    z-index: 100;
}

.sidebar-section {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.sidebar-section h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
}

/* Most Viewed Styles */
.most-viewed .popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.most-viewed .popular-list li {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.most-viewed .popular-list li:last-child {
    border-bottom: none;
}

.most-viewed .number {
    background: var(--accent-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

.most-viewed .popular-content {
    flex: 1;
}

.most-viewed .popular-content a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    line-height: 1.4;
}

.most-viewed .popular-content a:hover {
    color: var(--accent-color);
}

.most-viewed .views {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Weather Widget Styles */
.weather-widget {
    position: fixed;
    bottom: -35px;
    right: -10px;
    width: 300px;
    background: linear-gradient(135deg, var(--accent-color), #2c5282);
    color: white;
    z-index: 100;
}

.weather-widget h2 {
    color: white;
}

.current-weather {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.current-weather i {
    font-size: 3rem;
    margin-right: 15px;
}

.weather-info {
    display: flex;
    flex-direction: column;
}

.temperature {
    font-size: 2rem;
    font-weight: 600;
}

.location {
    font-size: 0.9rem;
    opacity: 0.9;
}

.forecast {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.forecast-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.forecast-day i {
    font-size: 1.5rem;
    margin: 8px 0;
}

/* Newsletter form */
.newsletter-form {
    text-align: center;
}

.newsletter-form p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.newsletter-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

.newsletter-form button {
    padding: 12px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Footer */
footer {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 60px 0 20px;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.footer-content {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 1400px) {
    .sidebar {
        right: 20px;
    }
}

@media (max-width: 1200px) {
    .sidebar {
        position: static;
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .news-masonry {
        grid-template-columns: 1fr;
    }

    .news-card.large {
        grid-column: span 1;
    }

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

    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 30px;
    }

    .main-header.scrolled .logo {
        height: 25px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .search-bar input {
        width: 150px;
    }

    .articles-container {
        gap: 20px;
    }

    .sidebar-section {
        padding: 15px;
    }

    .forecast {
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 30px;
    }

    .search-bar {
        display: none;
    }

    .top-links {
        display: none;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

.category-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.category-tab:hover {
    color: var(--text-primary);
}

.category-tab:hover::after {
    width: 100%;
}

.category-tab.active {
    color: var(--text-primary);
}

.category-tab.active::after {
    width: 100%;
}

/* Articles Container */
.articles-container {
    padding: 0 20px;
}

/* Top Article */
.top-article {
    margin-bottom: 40px;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.top-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.top-article .article-image {
    position: relative;
    width: 100%;
    height: 500px;
}

.top-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-article .category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.top-article .article-content {
    padding: 30px;
}

.top-article h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.top-article .article-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.article-card .article-image {
    position: relative;
    width: 100%;
    height: 250px;
}

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

.article-card .category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.article-card .article-content {
    padding: 20px;
}

.article-card h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-card .article-excerpt {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Article Transitions */
.article-card,
.top-article {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.article-card.hidden,
.top-article.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

    .top-article .article-image {
        height: 400px;
    }

    .top-article h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .category-tabs {
        margin: 20px 0;
    }

    .category-tab {
        font-size: 1rem;
    }

    .top-article .article-image {
        height: 300px;
    }

    .top-article h1 {
        font-size: 1.8rem;
    }

    .top-article .article-content {
        padding: 20px;
    }
}

/* Quick Links Section */
.quick-links {
    margin-bottom: 30px;
}

.service-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-link:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.service-link i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.service-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    margin: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 500;
    transition: var(--transition);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
} 