/* Modern Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e74c3c;
    --primary-green: #27ae60;
    --dark-bg: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    background-attachment: fixed;
}

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

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

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

/* Modern Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-top {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5px 0;
    border-bottom: 2px solid var(--border-color);
}

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

.logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

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

.logo-green {
    color: var(--primary-green);
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.social-icon.facebook:hover { background: linear-gradient(135deg, #1877f2 0%, #0e5aa7 100%); color: white; }
.social-icon.twitter:hover { background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%); color: white; }
.social-icon.youtube:hover { background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%); color: white; }
.social-icon.instagram:hover { background: linear-gradient(135deg, #e4405f 0%, #c13584 100%); color: white; }
.social-icon.pinterest:hover { background: linear-gradient(135deg, #bd081c 0%, #9b0717 100%); color: white; }
.social-icon.rss:hover { background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%); color: white; }

.search-box {
    display: flex;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-box:focus-within {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.search-input {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
    width: 220px;
    transition: var(--transition);
}

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

.search-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #229954 100%);
    color: var(--white);
    border: 2px solid var(--primary-green);
    border-left: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.search-btn:hover {
    background: linear-gradient(135deg, #229954 0%, var(--primary-green) 100%);
    transform: scale(1.05);
}

/* Modern Navigation */
.main-nav {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c0392b 100%);
    padding: 0;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.nav-menu li {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    display: block;
    padding: 10px 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.nav-menu a:hover::before {
    left: 0;
}

.nav-menu > li > a {
    background: transparent;
}

.nav-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Green button for সারাদেশ */
.nav-menu > li.has-dropdown > a {
    background: linear-gradient(135deg, var(--primary-green) 0%, #229954 100%);
}

.nav-menu > li.has-dropdown:hover > a {
    background: linear-gradient(135deg, #229954 0%, var(--primary-green) 100%);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

/* Modern Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    display: none;
    z-index: 1000;
    border: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.dropdown-menu a::after {
    content: '→';
    position: absolute;
    right: 15px;
    opacity: 0;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--primary-red);
    padding-left: 25px;
    transform: translateX(5px);
}

.dropdown-menu a:hover::after {
    opacity: 1;
    right: 10px;
}

/* Modern Headline Ticker */
.headline-ticker {
    background: var(--white);
    padding: 4px;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.headline-ticker .container {
    padding: 0;
}

.ticker-wrapper {
    display: flex;
    align-items: stretch;
    height: 30px;
}

.ticker-label {
    background: linear-gradient(135deg, var(--primary-green) 0%, #229954 100%);
    color: var(--white);
    font-weight: 700;
    white-space: nowrap;
    font-size: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 2px 0 4px rgba(0,0,0,0.1);
}

.ticker-category {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c0392b 100%);
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
    font-size: 15px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
    box-shadow: 2px 0 4px rgba(0,0,0,0.1);
    transition: background 0.5s ease;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 0px;
    position: relative;
    cursor: pointer;
}

.ticker-content::before {
    content: '▶';
    color: var(--primary-red);
    font-size: 12px;
    margin-right: 10px;
    flex-shrink: 0;
    z-index: 1;
}

.ticker-inner {
    display: flex;
    white-space: nowrap;
    transition: transform 0.1s linear;
}

.ticker-item {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
    padding-right: 50px;
    display: inline-block;
    flex-shrink: 0;
}

/* Ensure smooth scrolling */
.ticker-content {
    will-change: transform;
}

/* Modern Trending Bar */
.trending-bar {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 2px solid var(--border-color);
}

.trending-bar .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trending-label {
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    font-size: 15px;
}

.trending-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trending-tags a {
    padding: 8px 16px;
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: var(--white);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.trending-tags a:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c0392b 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Modern Main Content */
.main-content {
    padding: 30px 0;
}

/* Grid News Section */
.grid-news-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
    padding: 0 20px;
}

.grid-news-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.grid-news-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.grid-news-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #229954 100%);
    color: var(--white);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
}

.grid-news-icon {
    font-size: 18px;
}

.grid-news-title {
    flex: 1;
}

.grid-news-content {
    padding: 15px;
}

.grid-news-images {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.grid-author-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    flex-shrink: 0;
}

.grid-main-img {
    flex: 1;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.grid-news-images-side {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.grid-news-images-side img {
    flex: 1;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.grid-news-item:hover .grid-news-images-side img {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.grid-news-image-wrapper {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.grid-news-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: var(--transition);
}

.grid-news-item:hover .grid-news-image-wrapper::after {
    opacity: 1;
}

.grid-news-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.grid-news-item:hover .grid-news-image-wrapper img {
    transform: scale(1.05);
}

.grid-news-headline {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    padding: 0 15px 15px 15px;
}

.grid-news-headline a {
    color: inherit;
    transition: var(--transition);
}

.grid-news-headline a:hover {
    color: var(--primary-red);
}

.grid-news-author {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    padding: 0 15px 15px 15px;
}

.opinion-section {
    grid-column: span 1;
}

.sports-grid-item .grid-news-headline,
.entertainment-grid-item .grid-news-headline,
.cricket-grid-item .grid-news-headline,
.general-grid-item .grid-news-headline {
    padding: 0 15px 15px 15px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

/* Modern Left Column */
.left-column {
    background: transparent;
    padding: 0;
}

.featured-story {
    margin-bottom: 25px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
}

.featured-story:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.featured-image {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: var(--transition);
}

.featured-story:hover .featured-image::after {
    opacity: 1;
}

.featured-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.featured-story:hover .featured-image img {
    transform: scale(1.05);
}

.featured-headline {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: var(--transition);
}

.featured-headline a {
    color: inherit;
}

.featured-headline a:hover {
    color: #c0392b;
}

.featured-description {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

/* Modern Middle Column */
.middle-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Modern Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-stories, .online-poll, .latest-news, .prayer-times, .facebook-section {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.top-stories:hover, .online-poll:hover, .latest-news:hover, .prayer-times:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.top-stories h3, .online-poll h3, .latest-news h3, .prayer-times h3, .facebook-section h3 {
    font-size: 20px;
    color: var(--primary-red);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-red);
    font-weight: 700;
}

.story-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.story-item:hover {
    background: #f8f9fa;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 8px;
}

.story-item img {
    width: 110px;
    height: 85px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.story-item:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.story-content h3, .story-content h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.story-content a {
    color: var(--text-dark);
    transition: var(--transition);
}

.story-content a:hover {
    color: var(--primary-red);
}

/* Modern Online Poll */
.online-poll h3 {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.poll-question {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-dark);
}

.poll-form label {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.poll-form label:hover {
    background: #f8f9fa;
}

.poll-form input[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
}

.poll-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-submit, .btn-results {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-submit {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: var(--white);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-results {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: var(--white);
}

.btn-results:hover {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Modern Latest News */
.latest-news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.latest-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.latest-news-item:hover {
    background: #f8f9fa;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: -5px;
    margin-right: -5px;
    border-radius: 8px;
}

.latest-news-image {
    flex-shrink: 0;
}

.latest-news-image img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.latest-news-item:hover .latest-news-image img {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.latest-news-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.latest-news-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.latest-news-content a {
    color: var(--text-dark);
    transition: var(--transition);
}

.latest-news-content a:hover {
    color: var(--primary-red);
}

.view-all {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.view-all:hover {
    transform: translateX(5px);
    color: #229954;
}

/* Modern Prayer Times */
.prayer-date {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.prayer-table {
    width: 100%;
    border-collapse: collapse;
}

.prayer-table tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.prayer-table tr:hover {
    background: #f8f9fa;
}

.prayer-table td {
    padding: 12px 0;
    font-size: 15px;
}

.prayer-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.prayer-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

/* Facebook Section */
.facebook-embed {
    min-height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Archive Calendar Section */
/* Archive Calendar Section - Updated */
.calendar-section {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-green);
    overflow: hidden;
    transition: var(--transition);
}

.calendar-section:hover {
    box-shadow: var(--shadow-lg);
}

.archive-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #229954 100%);
    color: var(--white);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
}

.archive-icon {
    font-size: 18px;
}

.archive-title {
    flex: 1;
}

.calendar-controls {
    padding: 12px 15px;
    display: flex;
    gap: 10px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.calendar-select {
    flex: 1;
    padding: 8px 30px 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: var(--transition);
}

.calendar-select:hover {
    border-color: var(--primary-green);
}

.calendar-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

.calendar {
    padding: 15px;
    background: var(--white);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 8px;
}

.calendar-weekday {
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 4px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.calendar-day.active {
    background: #f0f0f0;
    color: #3498db;
}

.calendar-day.active:hover {
    background: #e0e0e0;
    transform: scale(1.1);
}

.calendar-day.highlighted {
    background: var(--primary-red);
    color: var(--white);
    font-weight: 700;
}

.calendar-day.highlighted:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.calendar-day.inactive {
    color: #bdc3c7;
    background: #f8f9fa;
    cursor: not-allowed;
}

.calendar-day.empty {
    visibility: hidden;
}

/* Modern Election Section */
.election-section {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 35px;
    transition: var(--transition);
}

.election-section:hover {
    box-shadow: var(--shadow-lg);
}

.election-banner {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: var(--primary-red);
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.election-banner h2 {
    font-size: 26px;
    font-weight: 700;
}

.election-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.election-main-story img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.election-main-story:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.election-main-story h3 {
    font-size: 20px;
    font-weight: 700;
}

.election-main-story a {
    color: var(--text-dark);
    transition: var(--transition);
}

.election-main-story a:hover {
    color: var(--primary-red);
}

.election-stories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.election-story {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: var(--transition);
}

.election-story:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.election-story img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.election-story h4 {
    font-size: 15px;
    font-weight: 600;
}

.election-story a {
    color: var(--text-dark);
    transition: var(--transition);
}

.election-story a:hover {
    color: var(--primary-red);
}

/* Modern Advertisement Banner */
.ad-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    text-align: center;
    margin-bottom: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.ad-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.ad-logo {
    font-size: 28px;
    font-weight: 700;
}

.ad-text {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.ad-contact {
    font-size: 14px;
    color: var(--text-light);
}

/* Sports Section - New Design */
.sports-section {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 35px;
    overflow: hidden;
    transition: var(--transition);
}

.sports-section:hover {
    box-shadow: var(--shadow-lg);
}

.sports-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #229954 100%);
    color: var(--white);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

.sports-icon {
    font-size: 20px;
}

.sports-title {
    flex: 1;
}

.sports-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
    padding: 25px;
}

/* Sports Featured Article */
.sports-featured {
    display: flex;
    flex-direction: column;
}

.sports-featured-image {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.sports-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: var(--transition);
}

.sports-featured:hover .sports-featured-image::after {
    opacity: 1;
}

.sports-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.sports-featured:hover .sports-featured-image img {
    transform: scale(1.05);
}

.sports-featured-headline {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.sports-featured-headline a {
    color: inherit;
    transition: var(--transition);
}

.sports-featured-headline a:hover {
    color: var(--primary-red);
}

.sports-featured-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Sports Sidebar */
.sports-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Sports Thumbnails Column */
.sports-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sports-thumb-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.sports-thumb-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sports-thumb-item:hover {
    transform: translateX(5px);
}

.sports-thumb-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sports-thumb-item:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.sports-thumb-item h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.sports-thumb-item a {
    color: var(--text-dark);
    transition: var(--transition);
}

.sports-thumb-item a:hover {
    color: var(--primary-red);
}

/* Sports Bullets Column */
.sports-bullets {
    display: flex;
    flex-direction: column;
}

.sports-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sports-bullet-list li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.sports-bullet-list li::before {
    content: '●';
    color: var(--primary-green);
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 12px;
    transition: var(--transition);
}

.sports-bullet-list li:hover {
    padding-left: 25px;
    transform: translateX(5px);
}

.sports-bullet-list li:hover::before {
    transform: scale(1.3);
}

.sports-bullet-list a {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    transition: var(--transition);
}

.sports-bullet-list a:hover {
    color: var(--primary-red);
}

/* Modern Category Sections */
.category-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.category-section {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.category-section:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-red);
}

.category-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-main {
    margin-bottom: 15px;
}

.category-main img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-section:hover .category-main img {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.category-main h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.category-main a {
    color: var(--text-dark);
    transition: var(--transition);
}

.category-main a:hover {
    color: var(--primary-red);
}

.category-list {
    list-style: none;
}

.category-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    padding-left: 20px;
    position: relative;
    transition: var(--transition);
}

.category-list li::before {
    content: "▶";
    color: var(--primary-red);
    font-size: 10px;
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.category-list li:hover {
    padding-left: 25px;
}

.category-list li:hover::before {
    transform: translateX(5px);
}

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

.category-list a {
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

/* Article Detail Page */
.article-page {
    background: #f4f6f8;
    padding: 40px 0 60px;
}

.article-layout {
    display: grid;
    grid-template-columns: 80px 2.3fr 1fr;
    gap: 25px;
}

.article-share-sticky {
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 140px;
    height: fit-content;
}

.article-share-sticky span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.share-icon.facebook { background: #1877f2; }
.share-icon.twitter { background: #1d9bf0; }
.share-icon.whatsapp { background: #25d366; }
.share-icon.linkedin { background: #0a66c2; }
.share-icon.copy { background: #636e72; font-size: 16px; }

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

.article-main {
    background: var(--white);
    padding: 30px;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.article-breadcrumb a {
    color: var(--primary-green);
    font-weight: 600;
}

.article-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.article-category-badge {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c0392b 100%);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.article-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(39, 174, 96, 0.2);
}

.author-details .author-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-role {
    color: var(--text-light);
    font-size: 14px;
}

.article-actions {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.action-btn {
    background: var(--background);
    border: none;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

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

.bookmark {
    background: rgba(241, 196, 15, 0.2);
}

.article-hero {
    margin: 25px 0;
}

.article-hero-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-hero-main img {
    width: 100%;
    display: block;
}

.article-hero-thumbs {
    display: flex;
    gap: 15px;
    margin: 18px 0;
}

.article-hero-thumbs img {
    flex: 1;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.photo-caption {
    font-size: 14px;
    color: var(--text-light);
}

.article-highlight {
    background: rgba(231, 76, 60, 0.08);
    border-left: 4px solid var(--primary-red);
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.article-body p {
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 17px;
    color: #2f3542;
}

.article-body h2 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--primary-red);
}

.article-body blockquote {
    border-left: 5px solid var(--primary-green);
    padding: 15px 25px;
    background: #f0f9f4;
    font-size: 18px;
    font-weight: 600;
    color: #1d2b1f;
    margin: 25px 0;
}

.article-tags-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.article-tags,
.article-share-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.article-tags span,
.article-share-inline span {
    font-weight: 700;
    color: var(--text-dark);
}

.article-tags a {
    background: var(--background);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-dark);
    transition: var(--transition);
}

.article-tags a:hover {
    background: var(--primary-green);
    color: var(--white);
}

.article-related {
    margin-top: 45px;
}

.article-related-full {
    width: 100%;
    background: linear-gradient(180deg, #f7f9fb 0%, #eef2f7 100%);
    margin-top: 55px;
    padding: 50px 0 60px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.related-full-inner {
    width: min(1300px, 95vw);
    margin: 0 auto;
    padding: 0 20px;
}

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

.related-header h2 {
    font-size: 24px;
    color: var(--text-dark);
}

.related-link {
    color: var(--primary-red);
    font-weight: 700;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.related-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.related-card h3 {
    font-size: 15px;
    padding: 15px;
    line-height: 1.5;
}

.related-card a {
    color: var(--text-dark);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-featured-story {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sidebar-featured-story img {
    width: 100%;
    display: block;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.sidebar-featured-story:hover img {
    transform: scale(1.05);
}

.sidebar-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    color: var(--white);
}

.sidebar-featured-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(231, 76, 60, 0.9);
    margin-bottom: 10px;
}

.sidebar-featured-content h3 {
    font-size: 20px;
    line-height: 1.4;
}

.sidebar-featured-content a {
    color: inherit;
}

.sidebar-section {
    background: var(--white);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-md);
}

.sidebar-section h3 {
    font-size: 20px;
    color: var(--primary-red);
    margin-bottom: 18px;
    border-left: 4px solid var(--primary-green);
    padding-left: 12px;
}

.sidebar-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-red);
}

.sidebar-news-thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.sidebar-news-info {
    flex: 1;
}

.news-title a {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.news-time {
    font-size: 12px;
    color: var(--text-light);
}

.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.timeline-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-thumb img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.timeline-info {
    flex: 1;
}

.timeline-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
    margin-bottom: 4px;
}

.newsletter {
    text-align: center;
}

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

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: var(--background);
}

.newsletter-form button {
    border: none;
    border-radius: 30px;
    padding: 12px;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
}

/* Modern Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c0392b 100%);
    color: var(--white);
    padding: 40px 0 0 0;
    margin-top: 50px;
    box-shadow: 0 -4px 16px rgba(231, 76, 60, 0.3);
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-menu {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 5px;
}

.footer-menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-info {
    background: var(--white);
    color: var(--text-dark);
    padding: 40px;
    font-size: 15px;
    line-height: 1.8;
}

.footer-info p {
    margin-bottom: 12px;
}

.footer-info strong {
    color: var(--text-dark);
    font-weight: 600;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
    margin-top: 25px;
    color: var(--text-light);
    font-size: 14px;
}

/* Modern Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .right-column {
        grid-column: 1 / -1;
    }
    
    .article-layout {
        grid-template-columns: 60px 2fr 1fr;
    }
    
    .article-title {
        font-size: 30px;
    }
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .middle-column {
        order: 2;
    }
    
    .right-column {
        order: 3;
    }
    
    .category-sections {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .election-content {
        grid-template-columns: 1fr;
    }
    
    .sports-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sports-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sports-featured-headline {
        font-size: 20px;
    }
    
    .grid-news-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }
    
    .grid-news-image-wrapper img {
        height: 200px;
    }
    
    .grid-news-images-side img {
        height: 150px;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-right {
        align-items: center;
        width: 100%;
    }
    
    .search-input {
        width: 100%;
    }
    
    .featured-headline {
        font-size: 24px;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-share-sticky {
        position: static;
        flex-direction: row;
        padding: 15px;
        justify-content: center;
        gap: 15px;
    }
    
    .article-share-sticky span {
        writing-mode: horizontal-tb;
    }
    
    .article-main,
    .article-sidebar {
        order: unset;
    }
    
    .article-sidebar {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .category-sections {
        grid-template-columns: 1fr;
    }
    
    .grid-news-section {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .grid-news-headline {
        font-size: 16px;
    }
    
    .grid-news-image-wrapper img {
        height: 180px;
    }
    
    .grid-news-images-side img {
        height: 120px;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .trending-tags {
        flex-direction: column;
        gap: 8px;
    }
    
    .featured-headline {
        font-size: 20px;
    }
    
    .election-banner h2 {
        font-size: 18px;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .article-meta-top {
        flex-direction: column;
        gap: 8px;
    }
    
    .article-author-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-actions {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .article-share-sticky {
        flex-wrap: wrap;
    }
}

/* Scroll animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-story, .top-stories, .online-poll, .category-section {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
