/* ===== CSS Variables ===== */
:root {
    /* Light Mode Colors - Light Orange */
    --bg-primary: #ffecd2;
    --bg-secondary: #ffe0c2;
    --bg-tertiary: #ffd4b0;
    --text-primary: #4a2810;
    --text-secondary: #5a3820;
    --text-muted: #6a4a30;
    --accent-primary: #d46030;
    --accent-secondary: #c45020;
    --accent-tertiary: #e87040;
    --secondary-primary: #2080b0;
    --secondary-secondary: #1870a0;
    --card-bg: #fff8f0;
    --card-shadow: rgba(212, 96, 48, 0.2);
    --header-bg: #fffcf8;
    --footer-bg: #cc6633;
    --border-color: #d4a880;
    --overlay-bg: rgba(74, 40, 16, 0.7);
    --ticker-bg: #d46030;
    --success: #2a8040;
    --warning: #b08020;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #d46030 0%, #e87040 100%);
    --gradient-secondary: linear-gradient(135deg, #2080b0 0%, #30a0d0 100%);
    --gradient-dark: linear-gradient(135deg, #cc6633 0%, #d46030 100%);
}

[data-theme="dark"] {
    /* Dark Mode Colors - Dark Orange tones with high contrast */
    --bg-primary: #2a1808;
    --bg-secondary: #3a2510;
    --bg-tertiary: #4a3218;
    --text-primary: #fff5eb;
    --text-secondary: #f5e0d0;
    --text-muted: #d0c0a8;
    --accent-primary: #ff9060;
    --accent-secondary: #ff7840;
    --accent-tertiary: #ffaa80;
    --secondary-primary: #70c0e8;
    --secondary-secondary: #58b0d8;
    --card-bg: #3a2510;
    --card-shadow: rgba(255, 144, 96, 0.3);
    --header-bg: #302008;
    --footer-bg: #1a0c04;
    --border-color: #5a4030;
    --overlay-bg: rgba(42, 24, 8, 0.95);
    --ticker-bg: #ff9060;
    --success: #70c090;
    --warning: #f0b860;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #ff9060 0%, #ff7840 100%);
    --gradient-secondary: linear-gradient(135deg, #70c0e8 0%, #58b0d8 100%);
    --gradient-dark: linear-gradient(135deg, #2a1808 0%, #3a2510 100%);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Noto Sans Devanagari', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure all text elements inherit proper colors */
h1, h2, h3, h4, h5, h6, p, span, a, li, td, th, label, input, textarea, select, button {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--accent-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-secondary);
}

ul {
    list-style: none;
}

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

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

/* Selection color */
::selection {
    background: var(--accent-primary);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    color: white !important;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(212, 96, 48, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 96, 48, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: var(--gradient-primary) !important;
    border: none;
    color: white !important;
}

.btn-outline:hover {
    background: var(--accent-secondary) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 80, 32, 0.5);
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    box-shadow: 0 2px 20px var(--card-shadow);
    transition: all 0.3s ease;
}

.top-bar {
    background: var(--gradient-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

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

.top-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ff6b6b;
    animation: pulse 2s infinite;
}

.live-indicator i {
    font-size: 0.6rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    padding: 5px;
}

.social-links a:hover {
    color: var(--accent-primary);
    transform: translateY(-3px) rotate(5deg);
}

.theme-lang-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle,
.lang-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.theme-toggle::after,
.lang-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.theme-toggle:hover::after,
.lang-toggle:hover::after {
    width: 150px;
    height: 150px;
}

.theme-toggle:hover,
.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.theme-toggle:active,
.lang-toggle:active {
    transform: scale(0.9);
}

.lang-toggle {
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.main-header {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 140, 90, 0.4);
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 90, 0.5);
}

.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.logo:hover .logo-text h1 {
    color: var(--accent-primary);
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.main-nav ul {
    display: flex;
    gap: 5px;
}

.main-nav a {
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 60%;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 90, 0.4);
}

.main-nav a:active {
    transform: translateY(0);
}

.main-nav .dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 15px 40px var(--card-shadow);
    min-width: 220px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    border-radius: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
    opacity: 0;
}

.dropdown:hover .dropdown-menu a {
    transform: translateX(0);
    opacity: 1;
}

.dropdown:hover .dropdown-menu a:nth-child(1) { transition-delay: 0.05s; }
.dropdown:hover .dropdown-menu a:nth-child(2) { transition-delay: 0.1s; }
.dropdown:hover .dropdown-menu a:nth-child(3) { transition-delay: 0.15s; }
.dropdown:hover .dropdown-menu a:nth-child(4) { transition-delay: 0.2s; }

.dropdown-menu a:hover {
    background: var(--gradient-primary);
    color: white;
    padding-left: 25px;
    color: var(--accent-primary);
}

.mobile-menu-toggle {
    display: none;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* ===== Hero Section - Half Slider + Live TV ===== */
.hero-section {
    padding: 20px 0;
    background: var(--bg-secondary);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 450px;
}

/* Slider Half */
.hero-slider-half {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--card-shadow);
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 40, 16, 0.9) 0%, rgba(255, 140, 90, 0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.slide.active .slide-content {
    animation: slideContent 0.8s ease forwards;
}

@keyframes slideContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 140, 90, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-btn {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 140, 90, 0.5);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-primary);
    width: 30px;
    border-radius: 6px;
}

/* ===== Live TV Half ===== */
.live-tv-half {
    display: flex;
    flex-direction: column;
}

.live-tv-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border-color);
}

.live-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--gradient-primary);
    color: white;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(255, 68, 68, 0);
    }
}

.live-header h3 {
    font-size: 1rem;
    font-weight: 500;
}

.live-video-container {
    flex: 1;
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.live-video-placeholder {
    text-align: center;
    color: white;
}

.play-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-circle:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.play-circle i {
    margin-left: 5px;
}

.live-video-placeholder p {
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.live-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.live-viewers {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.live-viewers i {
    color: var(--accent-primary);
}

.btn-live {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-live:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 140, 90, 0.4);
}

.live-program-info {
    padding: 12px 20px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

.program-now,
.program-next {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.program-label {
    background: var(--accent-primary);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.program-label.next {
    background: var(--secondary-primary);
}

.program-name {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Breaking News ===== */
.breaking-news {
    background: var(--ticker-bg);
    color: white;
    padding: 12px 0;
}

.breaking-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breaking-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    white-space: nowrap;
    padding-right: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.ticker-wrapper {
    overflow: hidden;
    flex: 1;
}

.ticker {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker span {
    white-space: nowrap;
    padding-right: 50px;
}

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

/* ===== Section Styles ===== */
.section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ===== Featured Programs ===== */
.featured-section {
    background: var(--bg-secondary);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.featured-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.featured-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px var(--card-shadow);
    border-color: var(--accent-primary);
}

.featured-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.card-image {
    position: relative;
    overflow: hidden;
}

.featured-card.large .card-image {
    height: 300px;
}

.featured-card:not(.large) .card-image {
    height: 150px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover .card-image img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.card-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
}

.card-time {
    background: rgba(74, 40, 16, 0.85);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.featured-card:hover .card-time {
    background: var(--accent-primary);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 140, 90, 0.5);
}

.featured-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 140, 90, 0.6);
}

.card-content {
    padding: 20px;
}

.card-category {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.featured-card.large .card-content h3 {
    font-size: 1.5rem;
}

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

/* ===== News Section ===== */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-featured {
    margin-bottom: 30px;
}

.news-card.large {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--card-shadow);
}

.news-card.large .card-image {
    height: 350px;
}

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

.card-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--accent-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.news-card.large .card-content {
    padding: 25px;
}

.news-card.large h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.news-card.large p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    gap: 10px;
}

.read-more::after {
    content: '→';
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card-horizontal {
    display: flex;
    gap: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px var(--card-shadow);
    transition: transform 0.3s ease;
}

.news-card-horizontal:hover {
    transform: translateX(5px);
}

.news-card-horizontal .card-image {
    width: 120px;
    min-height: 100px;
    flex-shrink: 0;
}

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

.news-card-horizontal .card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-horizontal h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card-horizontal .card-date {
    position: static;
    background: transparent;
    color: var(--text-muted);
    padding: 0;
    font-size: 0.8rem;
}

/* ===== Sidebar ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px var(--card-shadow);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-news-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

.news-number {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.news-info h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    line-height: 1.4;
}

.news-info .views {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: var(--bg-tertiary);
}

.schedule-time {
    background: var(--accent-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.schedule-info h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.schedule-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.about-content .section-line {
    margin: 0 0 20px 0;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px var(--card-shadow);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(201, 85, 61, 0.4);
}

.about-badge i {
    font-size: 2rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--gradient-dark);
    color: #fff5eb;
}

.footer h3, .footer h4, .footer p, .footer a, .footer span, .footer li {
    color: #fff5eb;
}

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

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: var(--gradient-primary);
}

.footer-logo h3 {
    font-size: 1.4rem;
    line-height: 1.2;
}

.footer-logo p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 2px;
}

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-list i {
    color: var(--accent-primary);
    margin-top: 4px;
}

.footer-bottom {
    background: rgba(255, 140, 90, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== Enhanced Footer Social ===== */
.footer-social {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.footer-social a:hover::before {
    left: 100%;
}

.footer-social a:hover {
    background: var(--accent-primary);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 140, 90, 0.5);
}

/* ===== Section Header Animation ===== */
.section-header h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header .section-line {
    animation: expandLine 0.8s ease 0.3s forwards;
    width: 0;
}

@keyframes expandLine {
    to {
        width: 60px;
    }
}

/* ===== Live TV Enhanced Effects ===== */
.live-tv-card {
    transition: all 0.4s ease;
}

.live-tv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--card-shadow);
    border-color: var(--accent-primary);
}

.live-video-container {
    transition: all 0.5s ease;
}

.live-tv-card:hover .live-video-container {
    filter: brightness(1.1);
}

/* ===== Scroll Indicator ===== */
.hero-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--accent-primary);
    border-bottom: 3px solid var(--accent-primary);
    transform: translateX(-50%) rotate(45deg);
    animation: scrollBounce 2s infinite;
    display: none;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) rotate(45deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(45deg) translateY(10px); }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 140, 90, 0.5);
    z-index: 999;
    animation: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 140, 90, 0.5); }
    50% { box-shadow: 0 8px 35px rgba(255, 140, 90, 0.8); }
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 140, 90, 0.6);
}

.back-to-top:active {
    transform: translateY(-3px) scale(0.95);
}

/* ===== AI Chatbot ===== */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 520px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 140, 90, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
}

.chatbot-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: var(--gradient-primary);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.chatbot-title {
    flex: 1;
}

.chatbot-title h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 3px;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--bg-secondary);
}

.message {
    display: flex;
    gap: 10px;
    animation: messageSlide 0.3s ease;
}

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

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: var(--gradient-secondary);
}

.message-content {
    max-width: 75%;
    background: var(--card-bg);
    padding: 12px 16px;
    border-radius: 16px;
    border-top-left-radius: 4px;
    box-shadow: 0 3px 10px var(--card-shadow);
}

.user-message .message-content {
    background: var(--gradient-primary);
    color: white;
    border-top-left-radius: 16px;
    border-top-right-radius: 4px;
}

.message-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 5px;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.7);
}

.chatbot-suggestions {
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.suggestion-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.suggestion-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.chatbot-input {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

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

.send-btn {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 140, 90, 0.5);
}

.send-btn:active {
    transform: scale(0.95);
}

.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 8px 30px rgba(255, 140, 90, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: chatbotPulse 2s infinite;
}

@keyframes chatbotPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 140, 90, 0.5);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 140, 90, 0.8);
    }
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(10deg);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--card-bg);
    animation: badgeBounce 1s infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px 15px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

/* Chatbot Responsive */
@media (max-width: 480px) {
    .chatbot-container {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 90px;
        height: 70vh;
        max-height: 500px;
    }
    
    .chatbot-toggle {
        width: 55px;
        height: 55px;
        right: 20px;
        bottom: 20px;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 85px;
    }
}

/* ===== Responsive Design ===== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-container {
        max-width: 100%;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        height: 400px;
    }
    
    .slide-content {
        padding: 30px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .featured-card.large .card-image {
        height: 250px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-main {
        order: 1;
    }
    
    .news-sidebar {
        order: 2;
    }
    
    .about-intro {
        gap: 40px;
    }
    
    .about-stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision-section {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col {
        padding: 10px 0;
    }
}

/* Mobile tablets and large phones */
@media (max-width: 768px) {
    /* Header */
    .top-bar {
        padding: 6px 0;
    }
    
    .top-left {
        display: none;
    }
    
    .top-right {
        gap: 15px;
    }
    
    .social-links {
        display: none;
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
    
    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--card-bg);
        padding: 90px 25px 30px;
        z-index: 1001;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 5px 0 30px var(--card-shadow);
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 8px;
    }
    
    .main-nav a {
        display: block;
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 1rem;
    }
    
    .main-nav a::before {
        display: none;
    }
    
    .main-nav a:hover {
        transform: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--bg-secondary);
        margin-top: 8px;
        margin-left: 15px;
        box-shadow: none;
        border-radius: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 12px 18px;
        transform: none;
        opacity: 1;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
        width: 45px;
        height: 45px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 15px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        height: auto;
        gap: 15px;
        padding: 0 15px;
    }
    
    .hero-slider-half {
        height: 380px;
        border-radius: 16px;
    }
    
    .slide-content {
        padding: 25px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .slide-tag {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .slider-controls {
        left: 15px;
        bottom: 15px;
    }
    
    .slider-dots {
        right: 15px;
        bottom: 20px;
    }
    
    .live-tv-card {
        border-radius: 16px;
    }
    
    .live-header {
        padding: 14px 18px;
    }
    
    .live-badge {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
    
    .live-header h3 {
        font-size: 0.9rem;
    }
    
    .live-video-container {
        min-height: 200px;
    }
    
    .play-circle {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .live-info {
        padding: 12px 18px;
    }
    
    .live-program-info {
        padding: 12px 18px;
    }
    
    /* Breaking News */
    .breaking-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .breaking-label {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .ticker-wrapper {
        width: 100%;
        text-align: center;
    }
    
    /* Sections */
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    /* Featured Grid */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .featured-card {
        border-radius: 14px;
    }
    
    .featured-card.large {
        grid-column: span 1;
    }
    
    .featured-card.large .card-image {
        height: 220px;
    }
    
    .card-content {
        padding: 18px;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    /* News Section */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-card-horizontal {
        flex-direction: column;
    }
    
    .news-card-horizontal .card-image {
        width: 100%;
        height: 160px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    /* About Stats */
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .stat {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-top {
        padding: 50px 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col h4 {
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col ul {
        text-align: center;
    }
    
    .footer-col ul a:hover {
        padding-left: 0;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        text-align: center;
        font-size: 0.85rem;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Back to Top */
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 100px;
        right: 20px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .theme-toggle,
    .lang-toggle {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 10px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    /* Hero */
    .hero-slider-half {
        height: 320px;
        border-radius: 14px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.25rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .slide-tag {
        padding: 5px 12px;
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .play-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .live-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    .live-badge .pulse-dot {
        width: 8px;
        height: 8px;
    }
    
    .live-header h3 {
        font-size: 0.8rem;
    }
    
    .program-name {
        font-size: 0.8rem;
    }
    
    .program-label {
        padding: 2px 8px;
        font-size: 0.7rem;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-line {
        width: 50px;
    }
    
    /* Cards */
    .featured-card .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-content h3 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
    
    .card-category {
        padding: 3px 10px;
        font-size: 0.7rem;
    }
    
    /* About */
    .about-intro h2 {
        font-size: 1.5rem;
    }
    
    .about-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .mv-card {
        padding: 25px;
    }
    
    .mv-card h3 {
        font-size: 1.2rem;
    }
    
    .team-card {
        border-radius: 12px;
    }
    
    .team-image {
        height: 200px;
    }
    
    .team-info h3 {
        font-size: 1rem;
    }
    
    .team-info span {
        font-size: 0.8rem;
    }
    
    /* Timeline */
    .timeline::before {
        left: 25px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        padding-left: 70px;
    }
    
    .timeline-year {
        left: 25px;
        width: 50px;
        height: 50px;
        font-size: 0.85rem;
    }
    
    .timeline-content {
        padding: 18px;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
    }
    
    /* News */
    .news-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .featured-news-article .article-image {
        height: 200px;
    }
    
    .featured-news-article h2 {
        font-size: 1.3rem;
    }
    
    .featured-news-article .article-content {
        padding: 20px;
    }
    
    .news-grid-section {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        gap: 6px;
    }
    
    .page-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Contact */
    .contact-form-container {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 1.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    /* Chatbot */
    .chatbot-container {
        width: calc(100% - 20px);
        right: 10px;
        left: 10px;
        bottom: 90px;
        height: 65vh;
        max-height: 500px;
    }
    
    .chatbot-header {
        padding: 14px 16px;
    }
    
    .chatbot-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .chatbot-title h4 {
        font-size: 0.9rem;
    }
    
    .chatbot-messages {
        padding: 15px;
    }
    
    .message-content {
        max-width: 85%;
        padding: 10px 14px;
    }
    
    .message-content p {
        font-size: 0.85rem;
    }
    
    .chatbot-suggestions {
        padding: 8px 12px;
    }
    
    .suggestion-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .chatbot-input {
        padding: 12px;
    }
    
    .chatbot-input input {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .send-btn {
        width: 42px;
        height: 42px;
    }
    
    .chatbot-toggle {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 80px;
        right: 15px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .slide-content h2 {
        font-size: 1.15rem;
    }
    
    .live-badge span:not(.pulse-dot) {
        font-size: 0.7rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-container {
        height: 300px;
    }
    
    .hero-slider-half {
        height: 280px;
    }
    
    .chatbot-container {
        height: 80vh;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .chatbot-container,
    .chatbot-toggle,
    .back-to-top,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero-section {
        page-break-after: always;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        justify-content: center;
    }
}

/* ===== Mobile Menu Overlay ===== */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 40, 16, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Mobile Menu Close Button ===== */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: var(--accent-secondary);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .mobile-nav-close {
        display: flex;
    }
}

/* ===== Accessibility & Focus States ===== */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .ticker,
    .slide {
        animation: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #1a1a1a;
        --accent-primary: #d46030;
        --border-color: #000000;
    }
    
    [data-theme="dark"] {
        --text-primary: #ffffff;
        --text-secondary: #f0f0f0;
        --border-color: #ffffff;
    }
}

/* Smooth theme transition */
html[data-theme] * {
    transition: background-color 0.3s ease, 
                color 0.3s ease, 
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* Screen reader only - for accessibility announcements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Ensure proper stacking */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.chatbot-container {
    z-index: 1001;
}

.chatbot-toggle {
    z-index: 1001;
}

.back-to-top {
    z-index: 999;
}

/* ===== Placeholder Images with Icons ===== */
img[src*="hero"],
img[src*="program"],
img[src*="news"],
img[src*="about"],
img[src*="team"] {
    object-fit: cover;
    display: block;
}

/* Hero images with icon overlay */
.hero-slider-half .slide {
    position: relative;
}

.hero-slider-half .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: -1;
}

/* Live TV placeholder */
.live-video-placeholder {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--secondary-primary) 100%);
    position: relative;
}

.live-video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* ===================================================================
   COMPREHENSIVE VISIBILITY FIX - ALL TEXTS AND BUTTONS
   =================================================================== */

/* ALL TEXT ELEMENTS - Ensure visibility in both modes */
h1, h2, h3, h4, h5, h6, p, span, a, li, td, th, label, div {
    color: var(--text-primary);
}

/* HEADER TEXT */
.logo-text h1 { color: var(--text-primary) !important; }
.logo-text p { color: var(--text-secondary) !important; }
.top-bar { color: white !important; }
.top-bar span, .top-bar a { color: white !important; }
.live-indicator { color: #ff4444 !important; }
.date { color: white !important; }
.separator { color: white !important; }

/* NAVIGATION TEXT */
.main-nav a {
    color: var(--text-primary) !important;
    font-weight: 500;
}
.main-nav a:hover,
.main-nav a.active {
    color: white !important;
    background: var(--gradient-primary);
}
.dropdown-menu {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color);
}
.dropdown-menu a {
    color: var(--text-primary) !important;
}
.dropdown-menu a:hover {
    color: white !important;
    background: var(--gradient-primary) !important;
}

/* BUTTONS - ALL MUST HAVE WHITE TEXT */
.btn, .btn-primary, .btn-outline, .btn-live,
.program-tab, .filter-btn, .suggestion-btn, .send-btn,
.chatbot-toggle, .back-to-top, .play-btn, .play-circle,
.slider-btn, .control-btn, .mobile-menu-toggle,
.theme-toggle, .lang-toggle, .chatbot-close,
.read-more, .page-btn,
button, [type="button"], [type="submit"], [type="reset"] {
    color: white !important;
}

/* ALL buttons should have gradient background */
.btn, .btn-primary, .btn-outline, .btn-live,
.program-tab, .filter-btn, .page-btn,
.suggestion-btn, .send-btn,
.chatbot-toggle, .back-to-top,
.slider-btn, .play-btn, .play-circle,
.control-btn, .mobile-menu-toggle,
.theme-toggle, .lang-toggle, .chatbot-close {
    background: var(--gradient-primary) !important;
    border: none !important;
}

/* Button hover states */
.btn:hover, .btn-primary:hover, .btn-outline:hover,
.program-tab:hover, .filter-btn:hover, .page-btn:hover,
.suggestion-btn:hover, .send-btn:hover {
    background: var(--accent-secondary) !important;
    box-shadow: 0 6px 20px rgba(196, 80, 32, 0.5) !important;
    transform: translateY(-3px);
}

/* Specifically ensure btn-outline is visible */
a.btn.btn-outline,
.btn.btn-outline {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
    padding: 14px 30px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* CARDS TEXT */
.featured-card,
.program-card,
.news-card-horizontal,
.news-article {
    background: var(--card-bg) !important;
}

.card-content h3,
.card-content h4,
.card-content p,
.card-content span,
.program-card h3,
.program-card p,
.news-card-horizontal h4,
.news-article h3,
.news-article h4,
.news-article p {
    color: var(--text-primary) !important;
}

.card-category {
    background: var(--accent-primary) !important;
    color: white !important;
}

.card-date {
    color: var(--text-muted) !important;
}

.card-time {
    background: rgba(74, 40, 16, 0.9) !important;
    color: white !important;
}

/* NEWS SECTION */
.news-section .section-header h2,
.main-news .section-header h2 {
    color: var(--text-primary) !important;
}

.news-featured {
    background: var(--card-bg) !important;
}

.news-featured h2,
.news-featured h3,
.news-featured p {
    color: var(--text-primary) !important;
}

.read-more {
    color: var(--accent-primary) !important;
}

/* SIDEBAR WIDGETS */
.sidebar-widget {
    background: var(--card-bg) !important;
}

.sidebar-widget h3 {
    color: var(--text-primary) !important;
}

.sidebar-news-item h4,
.news-info h4,
.schedule-info h4 {
    color: var(--text-primary) !important;
}

.news-number {
    background: var(--accent-primary) !important;
    color: white !important;
}

.views, .card-meta span, .article-date, .card-date {
    color: var(--text-muted) !important;
}

/* SCHEDULE */
.schedule-item {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

.schedule-time {
    background: var(--accent-primary) !important;
    color: white !important;
}

.schedule-info h4 {
    color: var(--text-primary) !important;
}

.schedule-info span {
    color: var(--text-secondary) !important;
}

/* ABOUT SECTION */
.about-section,
.about-content-section {
    background: var(--bg-secondary) !important;
}

.about-content h2,
.about-intro-content h2,
.about-content p,
.about-intro p {
    color: var(--text-primary) !important;
}

.stat-number {
    color: var(--accent-primary) !important;
}

.stat-label {
    color: var(--text-secondary) !important;
}

/* MISSION & VISION */
.mv-card {
    background: var(--card-bg) !important;
}

.mv-card h3 {
    color: var(--text-primary) !important;
}

.mv-card p {
    color: var(--text-secondary) !important;
}

/* TEAM */
.team-card {
    background: var(--card-bg) !important;
}

.team-info h3 {
    color: var(--text-primary) !important;
}

.team-info span {
    color: var(--text-secondary) !important;
}

/* TIMELINE */
.timeline-content {
    background: var(--card-bg) !important;
}

.timeline-content h3 {
    color: var(--text-primary) !important;
}

.timeline-content p {
    color: var(--text-secondary) !important;
}

.timeline-year {
    color: white !important;
}

/* CONTACT SECTION */
.contact-form-container {
    background: var(--card-bg) !important;
}

.form-header h2,
.form-header p {
    color: var(--text-primary) !important;
}

.contact-info h2,
.contact-desc {
    color: var(--text-primary) !important;
}

.form-group label {
    color: var(--text-primary) !important;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 2px solid var(--border-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted) !important;
}

.info-card {
    background: var(--card-bg) !important;
}

.info-content h3 {
    color: var(--text-primary) !important;
}

.info-content p {
    color: var(--text-secondary) !important;
}

.social-card {
    color: white !important;
}

.social-card span {
    color: white !important;
}

/* FAQ */
.faq-item {
    background: var(--card-bg) !important;
}

.faq-question h3 {
    color: var(--text-primary) !important;
}

.faq-answer p {
    color: var(--text-secondary) !important;
}

.faq-question i {
    color: var(--accent-primary) !important;
}

/* CTA SECTION */
.cta-section {
    background: var(--gradient-primary) !important;
}

.cta-section h2,
.cta-section p {
    color: white !important;
}

/* CHATBOT */
.chatbot-container {
    background: var(--card-bg) !important;
}

.chatbot-header {
    background: var(--gradient-primary) !important;
}

.chatbot-title h4,
.online-status {
    color: white !important;
}

.chatbot-messages {
    background: var(--bg-secondary) !important;
}

.bot-message .message-content {
    background: var(--card-bg) !important;
}

.bot-message .message-content p {
    color: var(--text-primary) !important;
}

.user-message .message-content {
    background: var(--gradient-primary) !important;
}

.user-message .message-content p {
    color: white !important;
}

.message-time {
    color: var(--text-muted) !important;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.8) !important;
}

.chatbot-input {
    background: var(--card-bg) !important;
}

.chatbot-input input {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 2px solid var(--border-color);
}

.chatbot-input input::placeholder {
    color: var(--text-muted) !important;
}

.suggestion-btn {
    background: var(--card-bg) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color);
}

.suggestion-btn:hover {
    background: var(--accent-primary) !important;
    color: white !important;
}

.chat-link {
    background: var(--secondary-primary) !important;
    color: white !important;
}

/* LIVE TV CARD */
.live-tv-card {
    background: var(--card-bg) !important;
}

.live-header {
    background: var(--gradient-primary) !important;
}

.live-header h3 {
    color: white !important;
}

.live-badge {
    color: white !important;
}

.live-video-placeholder p {
    color: white !important;
}

.live-info {
    background: var(--bg-secondary) !important;
}

.live-viewers {
    color: var(--text-primary) !important;
}

.live-program-info {
    background: var(--card-bg) !important;
}

.program-now, .program-next {
    background: var(--bg-secondary) !important;
}

.program-label {
    color: white !important;
}

.program-label.next {
    background: var(--secondary-primary) !important;
    color: white !important;
}

.program-name {
    color: var(--text-primary) !important;
}

/* PAGE BANNERS */
.page-banner h1,
.page-banner p {
    color: white !important;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.9) !important;
}

.breadcrumb a {
    color: white !important;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* BREAKING NEWS */
.breaking-news {
    background: var(--gradient-primary) !important;
}

.breaking-content,
.breaking-label,
.ticker span {
    color: white !important;
}

/* NEWS FILTER */
.news-filter {
    background: transparent !important;
}

.filter-btn {
    background: var(--card-bg) !important;
    color: var(--text-primary) !important;
    border: 2px solid var(--border-color);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-primary) !important;
    color: white !important;
    border-color: var(--accent-primary);
}

/* PROGRAM TABS - VISIBLE IN BOTH MODES */
.program-tab {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
    font-weight: 600;
}

.program-tab:hover,
.program-tab.active {
    background: var(--accent-secondary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 96, 48, 0.5);
}

/* PAGINATION - VISIBLE IN BOTH MODES */
.page-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: 2px solid var(--border-color);
}

.page-btn:hover,
.page-btn.active {
    background: var(--accent-primary) !important;
    color: white !important;
}

/* SEARCH BOX */
.search-box input {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 2px solid var(--border-color);
}

.search-box input::placeholder {
    color: var(--text-muted) !important;
}

.search-box button {
    background: var(--accent-primary) !important;
    color: white !important;
}

/* CATEGORY LIST */
.category-list a {
    color: var(--text-primary) !important;
}

.category-list i {
    color: var(--accent-primary) !important;
}

.category-list .count {
    color: var(--text-muted) !important;
}

/* SHARE BUTTONS */
.share-btn {
    color: white !important;
}

/* CHANNEL LIST */
.channel-item {
    background: var(--bg-secondary) !important;
}

.channel-item:hover,
.channel-item.active {
    background: var(--accent-primary) !important;
}

.channel-info h4 {
    color: var(--text-primary) !important;
}

.channel-item:hover .channel-info h4,
.channel-item.active .channel-info h4 {
    color: white !important;
}

.channel-info span {
    color: var(--text-muted) !important;
}

.channel-item:hover .channel-info span,
.channel-item.active .channel-info span {
    color: white !important;
}

/* FEATURED SECTION */
.featured-section {
    background: var(--bg-secondary) !important;
}

.section-header h2 {
    color: var(--text-primary) !important;
}

/* NEWS SECTION BG */
.news-section {
    background: var(--bg-primary) !important;
}

/* ABOUT SECTION BG */
.about-section {
    background: var(--bg-secondary) !important;
}

/* FOOTER */
.footer {
    background: var(--gradient-dark) !important;
    color: white !important;
}

.footer-col h4 {
    color: white !important;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer-col ul li a:hover {
    color: var(--accent-primary) !important;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.contact-list i {
    color: var(--accent-primary) !important;
}

.contact-list span {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* PROMO WIDGET */
.promo-widget {
    background: var(--gradient-secondary) !important;
}

.promo-widget h3,
.promo-widget p,
.promo-widget span {
    color: white !important;
}

/* DARK MODE SPECIFIC FIXES */
[data-theme="dark"] .footer-social a {
    background: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .featured-card,
[data-theme="dark"] .program-card,
[data-theme="dark"] .news-card-horizontal,
[data-theme="dark"] .news-article,
[data-theme="dark"] .sidebar-widget,
[data-theme="dark"] .mv-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .info-card,
[data-theme="dark"] .contact-form-container,
[data-theme="dark"] .live-tv-card,
[data-theme="dark"] .schedule-item,
[data-theme="dark"] .channel-item {
    background: var(--card-bg) !important;
    box-shadow: 0 5px 20px var(--card-shadow);
}

[data-theme="dark"] .program-tab,
[data-theme="dark"] .filter-btn,
[data-theme="dark"] .suggestion-btn,
[data-theme="dark"] .page-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
}

[data-theme="dark"] .program-tab:hover,
[data-theme="dark"] .program-tab.active,
[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active,
[data-theme="dark"] .page-btn:hover,
[data-theme="dark"] .page-btn.active {
    background: var(--accent-secondary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 144, 96, 0.5);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color);
}

[data-theme="dark"] .search-box input {
    background: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
}

/* ===================================================================
   FINAL ULTIMATE BUTTON FIX - NOTHING CAN OVERRIDE THIS
   =================================================================== */

/* ALL PROGRAM TABS - ABSOLUTELY VISIBLE */
.program-tab,
.program-tabs .program-tab,
.programs-section .program-tab,
#all .program-tab,
button.program-tab {
    background: var(--gradient-primary) !important;
    background-image: linear-gradient(135deg, #d46030 0%, #e87040 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

.program-tab:hover,
.program-tab.active,
.program-tab:focus {
    background: #c45020 !important;
    background-image: none !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(196, 80, 32, 0.6) !important;
}

/* ALL FILTER BUTTONS - ABSOLUTELY VISIBLE */
.filter-btn,
.news-filter .filter-btn,
.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary) !important;
    background-image: linear-gradient(135deg, #d46030 0%, #e87040 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ALL PAGE BUTTONS - ABSOLUTELY VISIBLE */
.page-btn,
.pagination .page-btn,
.page-btn:hover,
.page-btn.active {
    background: var(--gradient-primary) !important;
    background-image: linear-gradient(135deg, #d46030 0%, #e87040 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* DARK MODE BUTTONS - BRIGHTER ORANGE */
[data-theme="dark"] .program-tab,
[data-theme="dark"] .filter-btn,
[data-theme="dark"] .page-btn,
[data-theme="dark"] .program-tab:hover,
[data-theme="dark"] .program-tab.active,
[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active,
[data-theme="dark"] .page-btn:hover,
[data-theme="dark"] .page-btn.active {
    background-image: linear-gradient(135deg, #ff9060 0%, #ff7840 100%) !important;
    background-color: #ff9060 !important;
    color: white !important;
    border: none !important;
}

/* SUGGESTION BUTTONS IN CHATBOT */
.suggestion-btn,
.chatbot-suggestions .suggestion-btn,
.suggestion-btn:hover {
    background: var(--gradient-primary) !important;
    background-image: linear-gradient(135deg, #d46030 0%, #e87040 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

[data-theme="dark"] .suggestion-btn {
    background-image: linear-gradient(135deg, #ff9060 0%, #ff7840 100%) !important;
    background-color: #ff9060 !important;
}