:root {
    --aajtak-red: #c00;
    --aajtak-dark-red: #900;
    --aajtak-orange: #ff6b00;
    --aajtak-black: #000;
    --aajtak-dark: #333;
    --aajtak-gray: #666;
    --aajtak-light-gray: #e5e5e5;
    --aajtak-bg-gray: #f5f5f5;
    --aajtak-white: #fff;
}

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

body {
    font-family: 'Hind', 'Noto Sans Devanagari', sans-serif;
    line-height: 1.6;
    color: var(--aajtak-black);
    background-color: var(--aajtak-white);
    font-size: 16px;
}

/* Live TV Bar */
.live-tv-bar {
    background: linear-gradient(135deg, var(--aajtak-red), var(--aajtak-orange));
    color: var(--aajtak-white);
    padding: 8px 0;
    font-weight: 700;
    border-bottom: 2px solid var(--aajtak-dark-red);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--aajtak-white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.ticker-item {
    color: var(--aajtak-white);
    text-decoration: none;
    margin: 0 15px;
    transition: opacity 0.3s ease;
}

.ticker-item:hover {
    opacity: 0.8;
}

.watch-live-btn {
    background: var(--aajtak-white);
    color: var(--aajtak-red);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.watch-live-btn:hover {
    background: var(--aajtak-light-gray);
    color: var(--aajtak-dark-red);
}

/* Top Header */
.top-header-aajtak {
    background: var(--aajtak-white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--aajtak-light-gray);
}

.aajtak-logo a {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--aajtak-red);
    text-decoration: none;
    letter-spacing: -1px;
}

.date-weather-section {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.current-date, .weather-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--aajtak-dark);
}

.weather-info {
    color: var(--aajtak-gray);
}

.header-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.btn {
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-epaper {
    background: var(--aajtak-light-gray);
    color: var(--aajtak-dark);
}

.btn-epaper:hover {
    background: var(--aajtak-gray);
    color: var(--aajtak-white);
}

.btn-login {
    background: var(--aajtak-red);
    color: var(--aajtak-white);
}

.btn-login:hover {
    background: var(--aajtak-dark-red);
}

.btn-menu {
    background: transparent;
    color: var(--aajtak-dark);
    width: 40px;
    height: 40px;
    border: 2px solid var(--aajtak-light-gray);
}

.btn-menu:hover {
    border-color: var(--aajtak-red);
    color: var(--aajtak-red);
}

/* Main Navigation */
.main-navigation-aajtak {
    background: var(--aajtak-white);
    border-bottom: 3px solid var(--aajtak-red);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-list-aajtak {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    overflow-x: auto;
}

.nav-link-aajtak {
    color: var(--aajtak-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 1.2rem;
    display: block;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link-aajtak.active,
.nav-link-aajtak:hover {
    color: var(--aajtak-red);
    border-bottom-color: var(--aajtak-red);
    background: var(--aajtak-bg-gray);
}

/* Breaking News Strip */
.breaking-news-strip {
    background: var(--aajtak-black);
    color: var(--aajtak-white);
    padding: 12px 0;
}

.breaking-news-strip .container-fluid {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breaking-label {
    background: var(--aajtak-red);
    color: var(--aajtak-white);
    padding: 6px 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    white-space: nowrap;
}

.breaking-headline {
    color: var(--aajtak-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.breaking-headline:hover {
    color: var(--aajtak-light-gray);
}

/* Main Content */
.main-content-aajtak {
    padding: 2rem 0;
    background: var(--aajtak-white);
}

/* Hero Section */
.hero-section-aajtak {
    margin-bottom: 3rem;
}

.main-featured-story {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.story-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--aajtak-red);
    color: var(--aajtak-white);
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    border-radius: 4px;
}

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

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--aajtak-white);
    z-index: 2;
}

.story-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.story-title a {
    color: var(--aajtak-white);
    text-decoration: none;
}

.story-title a:hover {
    color: var(--aajtak-light-gray);
}

.story-excerpt {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.story-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Side Stories */
.side-stories {
    background: var(--aajtak-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.side-stories-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aajtak-red);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--aajtak-red);
}

.side-story {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--aajtak-light-gray);
}

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

.story-number {
    background: var(--aajtak-red);
    color: var(--aajtak-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.side-story .story-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.side-story .story-title a {
    color: var(--aajtak-black);
    text-decoration: none;
}

.side-story .story-title a:hover {
    color: var(--aajtak-red);
}

.side-story .story-meta {
    font-size: 0.8rem;
    color: var(--aajtak-gray);
}

/* Section Titles */
.section-title-aajtak {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--aajtak-red);
}

.title-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--aajtak-black);
}

.view-all-link {
    color: var(--aajtak-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--aajtak-dark-red);
}

/* News Cards */
.news-card-aajtak {
    background: var(--aajtak-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.news-card-aajtak.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

.image-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--aajtak-red);
    color: var(--aajtak-white);
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.card-title a {
    color: var(--aajtak-black);
    text-decoration: none;
}

.card-title a:hover {
    color: var(--aajtak-red);
}

.card-excerpt {
    color: var(--aajtak-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--aajtak-gray);
}

/* India News Section */
.featured-story-india .story-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.featured-story-india .story-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-story-india .story-title a {
    color: var(--aajtak-black);
}

.featured-story-india .story-title a:hover {
    color: var(--aajtak-red);
}

.india-news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.india-news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--aajtak-bg-gray);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.india-news-item:hover {
    background: var(--aajtak-light-gray);
}

.news-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.news-title a {
    color: var(--aajtak-black);
    text-decoration: none;
}

.news-title a:hover {
    color: var(--aajtak-red);
}

.news-meta {
    font-size: 0.8rem;
    color: var(--aajtak-gray);
}

/* Video Section */
.video-card-aajtak {
    background: var(--aajtak-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.video-card-aajtak:hover {
    transform: translateY(-3px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card-aajtak:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--aajtak-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aajtak-white);
    font-size: 1.2rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-card-aajtak:hover .play-button {
    opacity: 1;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: var(--aajtak-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.video-content {
    padding: 1rem;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.video-title a {
    color: var(--aajtak-black);
    text-decoration: none;
}

.video-title a:hover {
    color: var(--aajtak-red);
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--aajtak-gray);
}

/* Sidebar */
.trending-sidebar, .live-tv-widget, .photo-gallery-sidebar, .newsletter-sidebar {
    background: var(--aajtak-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aajtak-red);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--aajtak-red);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Trending List */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trending-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--aajtak-bg-gray);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.trending-item:hover {
    background: var(--aajtak-light-gray);
}

.trending-number {
    background: var(--aajtak-red);
    color: var(--aajtak-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.trending-item:hover .trending-number {
    transform: scale(1.1);
}

.trending-content {
    flex: 1;
}

.trending-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.trending-title a {
    color: var(--aajtak-black);
    text-decoration: none;
}

.trending-title a:hover {
    color: var(--aajtak-red);
}

.trending-meta {
    font-size: 0.8rem;
    color: var(--aajtak-gray);
}

/* Live TV Widget */
.live-tv-container {
    border: 2px solid var(--aajtak-red);
    border-radius: 8px;
    overflow: hidden;
}

.live-tv-player {
    position: relative;
    overflow: hidden;
}

.live-tv-player img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.live-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.play-live-btn {
    background: var(--aajtak-red);
    color: var(--aajtak-white);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-live-btn:hover {
    background: var(--aajtak-dark-red);
}

.tv-schedule {
    padding: 1rem;
    background: var(--aajtak-bg-gray);
}

.tv-schedule h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--aajtak-red);
}

.schedule-list {
    list-style: none;
    padding: 0;
}

.schedule-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--aajtak-light-gray);
    font-size: 0.9rem;
}

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

/* Photo Gallery */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
}

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

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 0.5rem;
    color: var(--aajtak-white);
    font-size: 0.75rem;
}

.view-gallery-btn {
    display: block;
    text-align: center;
    background: var(--aajtak-red);
    color: var(--aajtak-white);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.view-gallery-btn:hover {
    background: var(--aajtak-dark-red);
    color: var(--aajtak-white);
}

/* Newsletter */
.newsletter-card {
    background: linear-gradient(135deg, var(--aajtak-red), var(--aajtak-orange));
    color: var(--aajtak-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.newsletter-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-desc {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--aajtak-white);
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 0.75rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.btn-subscribe-newsletter {
    background: var(--aajtak-white);
    color: var(--aajtak-red);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    width: 100%;
    transition: background 0.3s ease;
}

.btn-subscribe-newsletter:hover {
    background: var(--aajtak-light-gray);
}

/* Entertainment Section */
.entertainment-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--aajtak-light-gray);
}

.entertainment-card {
    background: var(--aajtak-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.entertainment-card:hover {
    transform: translateY(-3px);
}

.entertainment-card .card-image {
    position: relative;
}

.entertainment-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--aajtak-orange);
    color: var(--aajtak-white);
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}

.entertainment-card .card-image img {
    height: 180px;
}

.entertainment-card .card-content {
    padding: 1rem;
}

.entertainment-card .card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.main-footer-aajtak {
    background: var(--aajtak-black);
    color: var(--aajtak-white);
    border-top: 4px solid var(--aajtak-red);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--aajtak-red);
    margin-bottom: 1rem;
}

.footer-desc {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aajtak-white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--aajtak-red);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--aajtak-white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--aajtak-white);
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-link img {
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.app-link:hover img {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #333;
    background: #1a1a1a;
}

.footer-tagline {
    color: var(--aajtak-red);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .aajtak-logo a {
        font-size: 2rem;
    }
    
    .date-weather-section {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .nav-list-aajtak {
        gap: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .nav-link-aajtak {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .story-title {
        font-size: 1.5rem;
    }
    
    .title-text {
        font-size: 1.5rem;
    }
    
    .header-actions {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .aajtak-logo a {
        font-size: 1.75rem;
    }
    
    .story-title {
        font-size: 1.25rem;
    }
    
    .nav-list-aajtak {
        flex-direction: column;
    }
    
    .nav-link-aajtak {
        border-bottom: 1px solid var(--aajtak-light-gray);
        border-left: 3px solid transparent;
    }
    
    .nav-link-aajtak.active,
    .nav-link-aajtak:hover {
        border-left-color: var(--aajtak-red);
        border-bottom-color: var(--aajtak-light-gray);
    }
    
    .breaking-news-strip .container-fluid {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
}