:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --accent-color: #f43f5e;
    --dark-color: #0f172a;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --font-kh: 'Battambang', cursive;
    --font-en: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

[data-theme="dark"] {
    --bg-light: #0f172a;
    --bg-white: #1e293b;
    --text-main: #f8fafc;
    --text-light: #cbd5e1;
    --border-color: #334155;
    --dark-color: #f8fafc;
}

[data-theme="dark"] .logo h1,
[data-theme="dark"] .nav-links a,
[data-theme="dark"] .section-header h2,
[data-theme="dark"] .card-content h3 {
    color: var(--text-main);
}
[data-theme="dark"] .top-bar {
    background: #020617;
    color: #cbd5e1;
}
[data-theme="dark"] .footer {
    background: #020617;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--border-color) 25%, var(--bg-light) 50%, var(--border-color) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}
@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
    position: relative;
}
.search-input {
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    background: transparent;
    color: var(--text-main);
    padding: 5px;
    font-family: var(--font-kh);
    position: absolute;
    right: 30px;
    outline: none;
}
.search-input.active {
    width: 200px;
    opacity: 1;
    visibility: visible;
}

/* Share Buttons */
.share-btn {
    color: var(--text-light);
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.2s;
}
.share-btn:hover { color: var(--primary-color); }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--dark-color);
    transform: translateY(-5px);
}

/* Utility Widget (Weather & Currency) */
.utility-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: #fff;
    border: none;
}
.weather-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.weather-icon {
    font-size: 40px;
    color: #fbbf24;
}
.weather-info h4 {
    font-family: var(--font-kh);
    margin: 0;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}
.weather-info .temp {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin: 5px 0;
}
.weather-info .status {
    font-size: 12px;
    font-family: var(--font-kh);
    color: rgba(255,255,255,0.8);
}
.utility-widget .divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 15px 0;
}
.currency-section {
    font-family: var(--font-kh);
    font-size: 15px;
}
.currency-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.currency-item i {
    color: #10b981;
}

/* Article Page Specifics */
.single-article {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}
.article-title {
    font-size: 28px;
    line-height: 1.4;
    margin: 15px 0;
    color: var(--dark-color);
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.tts-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-family: var(--font-kh);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--primary-color);
    margin-left: auto;
}
.tts-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.article-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}
.article-image img {
    width: 100%;
    height: auto;
    display: block;
}
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    font-family: var(--font-kh);
}
.article-body p {
    margin-bottom: 15px;
}
.article-share {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.article-share h3 {
    margin-bottom: 15px;
    font-size: 16px;
}
.share-buttons a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-en);
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
}
.share-fb { background: #1877f2; }
.share-tg { background: #0088cc; }

/* Comment Section */
.comment-section {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
.comment-form textarea {
    width: 100%;
    height: 100px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-kh);
    margin-bottom: 15px;
    resize: vertical;
    outline: none;
}
.comment-form textarea:focus {
    border-color: var(--primary-color);
}
.comment-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-family: var(--font-kh);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}
.comment-form button:hover { background: var(--dark-color); }
.comments-list {
    margin-top: 30px;
}
.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.comment-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    flex-shrink: 0;
}
.comment-content h4 {
    font-size: 15px;
    margin-bottom: 5px;
}
.comment-content span {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 10px;
    font-weight: 400;
}
.comment-content p {
    font-family: var(--font-kh);
    font-size: 14px;
    color: var(--text-main);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #f43f5e;
    width: 0%;
    z-index: 9999;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px #f43f5e;
}

/* Mobile Menu & Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: var(--bg-white);
    z-index: 1002;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    transition: left 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.open {
    left: 0;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.mobile-menu-header h2 {
    font-family: var(--font-en);
    font-size: 22px;
    color: var(--dark-color);
}
.mobile-menu-header h2 span { color: var(--primary-color); }
.mobile-menu-header i {
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
}
.mobile-nav-links {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
.mobile-nav-links a {
    display: block;
    padding: 12px 20px;
    font-family: var(--font-kh);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    border-left: 3px solid transparent;
}
.mobile-nav-links a.active, .mobile-nav-links a:hover {
    color: var(--primary-color);
    background: var(--bg-light);
    border-left-color: var(--primary-color);
}
.mobile-saved-articles {
    padding: 20px;
}
.mobile-saved-articles h3 {
    font-family: var(--font-kh);
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary-color);
}
#mobile-saved-list {
    font-family: var(--font-kh);
    font-size: 14px;
}
#mobile-saved-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}
.no-saved { color: var(--text-light); font-style: italic; border: none !important; }

/* Save Button */
.save-btn {
    cursor: pointer;
    font-size: 18px;
    color: var(--text-light);
    transition: all 0.2s;
    margin-right: 15px;
}
.save-btn:hover, .save-btn.saved {
    color: var(--accent-color);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: var(--dark-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: var(--font-kh);
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toast.show {
    transform: translateX(0);
    opacity: 1;
}
.toast.success { border-left: 4px solid #10b981; }
.toast.error { border-left: 4px solid #ef4444; }
.toast i { font-size: 18px; }
.toast.success i { color: #10b981; }
.toast.error i { color: #ef4444; }

/* Modal specific to frontend */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.show {
    display: flex;
    opacity: 1;
}
.modal-content {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.modal.show .modal-content {
    transform: translateY(0);
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}
.close-modal:hover { color: #ef4444; }
.request-modal-content h2 { color: var(--primary-color); margin-bottom: 5px; font-size: 22px; }
.form-group { margin-bottom: 15px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-color);
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-kh);
    outline: none;
    background: var(--bg-white);
    color: var(--text-main);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary-color);
}
.submit-req-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-kh);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}
.submit-req-btn:hover {
    background: var(--dark-color);
}

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

body {
    font-family: var(--font-en);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .kh-text {
    font-family: var(--font-kh);
}

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

ul {
    list-style: none;
}

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

/* Header & Navigation */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--dark-color);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

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

.social-links a {
    color: #fff;
    margin-left: 15px;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.main-nav-container {
    padding: 15px 0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav > div:last-child, .main-nav > .search-container {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-color);
    letter-spacing: -1px;
}

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

.nav-links ul {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-family: var(--font-kh);
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.search-btn, .mobile-menu-btn {
    font-size: 20px;
    cursor: pointer;
    color: var(--dark-color);
}

.mobile-menu-btn {
    display: block;
    margin-left: 20px;
}

/* Breaking News Ticker */
.ticker-wrapper {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.ticker-container {
    display: flex;
    align-items: center;
}

.ticker-title {
    background: var(--accent-color);
    color: #fff;
    padding: 4px 12px;
    font-family: var(--font-kh);
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    margin-right: 15px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.ticker-content {
    overflow: hidden;
    position: relative;
    flex-grow: 1;
}

#ticker-list {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
    font-family: var(--font-kh);
    font-size: 14px;
}

#ticker-list:hover {
    animation-play-state: paused;
}

#ticker-list li {
    padding: 0 30px;
    list-style-type: disc;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main Content Area */
.main-content {
    margin-top: 30px;
    margin-bottom: 50px;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-main, .side-article {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.hero-main img, .side-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-main:hover img, .side-article:hover img {
    transform: scale(1.05);
}

.hero-main {
    height: 450px;
}

.hero-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    z-index: 2;
}

.hero-overlay.small {
    padding: 20px;
}

.category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-kh);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.hero-overlay h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.hero-overlay.small h3 {
    font-family: var(--font-kh);
    font-size: 16px;
    line-height: 1.4;
}

.meta {
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    gap: 15px;
}

/* Layout Wrapper */
.layout-wrapper {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
}

/* Section Header */
.section-header {
    margin-bottom: 25px;
    position: relative;
}

.section-header h2 {
    font-size: 20px;
    color: var(--dark-color);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    z-index: 2;
    border-bottom: 3px solid var(--primary-color);
}

.header-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

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

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

.card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.card-img .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-color);
    line-height: 1.5;
}

.card-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: var(--font-kh);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
}

.load-more {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-kh);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.load-more:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Sidebar */
.widget {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.trending-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.trending-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--border-color);
    line-height: 1;
}

.trending-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
    cursor: pointer;
    transition: color 0.2s;
}

.trending-content h4:hover {
    color: var(--primary-color);
}

.newsletter-widget {
    background: var(--dark-color);
    color: #fff;
}

.newsletter-widget h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.newsletter-widget p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 20px;
    font-family: var(--font-kh);
}

.newsletter-widget input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    margin-bottom: 10px;
    font-family: var(--font-kh);
}

.newsletter-widget button {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--font-kh);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h2 {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-about h2 span {
    color: var(--primary-color);
}

.footer-about p {
    font-family: var(--font-kh);
    opacity: 0.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social a {
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 0;
    margin-right: 10px;
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-links h3, .footer-contact h3 {
    font-family: var(--font-kh);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links a {
    font-family: var(--font-kh);
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    font-family: var(--font-kh);
    opacity: 0.7;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    text-align: center;
    padding: 20px 0;
    font-family: var(--font-kh);
    font-size: 14px;
    opacity: 0.7;
}

/* --- Article Page Specific Styles --- */
.article-page .left-column {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 30px;
    margin-bottom: 30px;
}

.article-title {
    font-size: 28px;
    line-height: 1.5;
    margin: 15px 0;
    color: var(--dark-color);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.article-image {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    .hero-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .layout-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .search-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-side {
        grid-template-columns: 1fr;
    }
}
