/* News Section Styles */

/* Professional News Sources Section */
.professional-sources {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(123, 47, 247, 0.05));
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.source-card {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.source-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 247, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.source-card:hover::before {
    opacity: 1;
}

.source-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.source-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.source-card h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.source-meta {
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item i {
    color: var(--primary-color);
    width: 12px;
}

.details-btn {
    background: rgba(123, 47, 247, 0.2);
    border: 1px solid rgba(123, 47, 247, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.details-btn:hover {
    background: rgba(123, 47, 247, 0.3);
    border-color: rgba(123, 47, 247, 0.5);
}

.source-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.visit-source-btn, .filter-source-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.visit-source-btn:hover, .filter-source-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.filter-source-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.realtime-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.pulse {
    animation: pulse 2s infinite;
}

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

.update-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

#news-update-counter {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1em;
}

.last-updated {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff4757;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 1rem;
}

.live-indicator i {
    animation: pulse 1.5s infinite;
}

/* Make sure all news items are always visible */
.news-item, .featured-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #7b2ff7;
    --background-dark: #0a0a0a;
    --surface-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --border-radius: 12px;
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, #00d4ff, #7b2ff7);
    --news-card-bg: rgba(255, 255, 255, 0.05);
    --news-card-border: rgba(0, 212, 255, 0.2);
}

/* News Hero Section */
.news-hero {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 247, 0.1));
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 47, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.news-hero .hero-content {
    position: relative;
    z-index: 2;
}

.news-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.news-hero .hero-title i {
    color: var(--primary-color);
    animation: twinkle 2s infinite alternate;
}

.news-hero .hero-title i:last-child {
    animation-delay: 0.5s;
}

.news-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.news-hero .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-hero .stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.news-hero .stat i {
    font-size: 2rem;
    color: var(--primary-color);
}

.news-hero .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.news-hero .stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* News Categories */
.news-categories {
    padding: 2rem 0;
    background: var(--surface-dark);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    color: var(--text-gray);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-tab:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.category-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* Featured News */
.featured-news {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.news-source {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date {
    color: var(--primary-color);
    font-weight: 500;
}

.read-more-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* Latest News */
.latest-news {
    padding: 4rem 0;
    background: var(--surface-dark);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-item {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.news-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category-tag {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-time {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.news-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.news-source {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--text-light);
}

/* Technology Timeline */
.tech-timeline {
    padding: 4rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 4rem 0;
    opacity: 1 !important; /* Always visible - no disappearing */
    transform: none !important; /* No animations */
    transition: none !important; /* No transitions */
}

.timeline-item.animate {
    opacity: 1 !important;
    transform: none !important;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.timeline-content {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 2rem;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: var(--news-card-border);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: var(--news-card-border);
}

.timeline-year {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* News Sources */
.news-sources {
    padding: 4rem 0;
    background: var(--surface-dark);
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.source-card {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.source-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.source-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.source-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.source-card p {
    color: var(--text-gray);
    line-height: 1.5;
}

/* Animations */
@keyframes twinkle {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* Removed fadeInUp animation to prevent disappearing content */
/* All content is now static and always visible */

.fade-in {
    opacity: 1 !important; /* Always visible */
    transform: none !important; /* No animations */
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-hero .hero-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .news-hero .hero-stats {
        gap: 1.5rem;
    }
    
    .news-hero .stat {
        padding: 1.5rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .category-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: var(--news-card-border) !important;
        border-left-color: transparent !important;
    }
    
    .sources-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .news-hero {
        padding: 4rem 0 3rem;
    }
    
    .news-hero .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .news-content,
    .news-item,
    .timeline-content {
        padding: 1.5rem;
    }
    
    .sources-grid {
        grid-template-columns: 1fr;
    }
}

/* Live News Section */
.realtime-news {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

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

.live-indicator i {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.clickable-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: normal;
}

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.news-category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.realtime-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.realtime-indicator i {
    animation: pulse 1.5s infinite;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-summary {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-source {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.news-date {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.news-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.read-more-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    transform: translateY(-2px);
}

.source-link {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.source-link:hover {
    color: var(--primary-color);
}

/* Enhanced Source Cards */
.source-card {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.source-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.source-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.source-card:hover i {
    transform: scale(1.1);
}

.source-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.source-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.source-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.visit-source-btn,
.filter-source-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.visit-source-btn {
    background: var(--gradient-primary);
    color: white;
}

.filter-source-btn {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.visit-source-btn:hover,
.filter-source-btn:hover {
    transform: translateY(-2px);
}

.visit-source-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.filter-source-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Remove all fade animations */
.news-card,
.source-card,
.gallery-card,
.image-overlay {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

.news-card:hover,
.source-card:hover,
.gallery-card:hover {
    transform: translateY(-5px) !important;
    transition: transform 0.3s ease !important;
}

.image-overlay {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.3) !important;
}

.image-overlay:hover {
    background: rgba(0, 0, 0, 0.5) !important;
}

/* Ensure no animation delays */
* {
    transition-delay: 0s !important;
    animation-delay: 0s !important;
}

/* Responsive adjustments for live news */
@media (max-width: 768px) {
    .latest-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        justify-content: center;
    }
    
    .live-indicator {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .source-links {
        flex-direction: column;
        align-items: center;
    }
    
    .visit-source-btn,
    .filter-source-btn {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .news-content {
        padding: 1rem;
    }
    
    .source-card {
        padding: 1.5rem;
    }
    
    .news-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .read-more-btn {
        justify-content: center;
    }
    
    .source-link {
        align-self: center;
        margin-top: 0.5rem;
    }
}

/* Clickable News Source Styling */
.news-source.clickable {
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.news-source.clickable:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    transform: translateY(-1px);
}

.news-source.clickable:active {
    transform: translateY(0);
}

/* AI Research Section */
.ai-research-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(123, 47, 247, 0.05));
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.research-item {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.research-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 247, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.research-item:hover::before {
    opacity: 1;
}

.research-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.research-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.research-category {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.research-date {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.research-item h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.research-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.research-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 1.5rem;
    padding: 0.75rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.research-institution {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.research-status {
    color: #27ae60;
    font-size: 0.85rem;
    font-weight: 500;
}

.research-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

/* AI Development Areas Section */
.ai-development-areas {
    background: var(--dark-bg);
    padding: 4rem 0;
}

.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.development-card {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.development-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.development-card:hover::before {
    opacity: 1;
}

.development-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.dev-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 2;
}

.development-card h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.development-card > p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 2;
}

.dev-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    position: relative;
    z-index: 2;
}

.dev-features li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.dev-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.development-badge {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

/* Read More Button Styling for New Sections */
.read-more-btn {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #7b2ff7, #00d4ff);
}

.read-more-btn i {
    font-size: 0.9rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .research-grid,
    .development-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .research-item,
    .development-card {
        padding: 1.5rem;
    }
    
    .research-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .research-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
        justify-content: center;
    }
    
    .research-badge,
    .development-badge {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        width: fit-content;
    }
}

/* News Platform Tabs */
.news-platform-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 0 1rem;
    overflow-x: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: fit-content;
}

.tab-button:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.tab-button.active {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.tab-button i {
    font-size: 1rem;
}

/* Tab Content Container */
.tab-content-container {
    margin: 2rem 0;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* AI Coverage Grid */
.ai-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.coverage-item {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coverage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coverage-item:hover::before {
    opacity: 1;
}

.coverage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.coverage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.coverage-category {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.coverage-updates {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.coverage-item h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.coverage-item > p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 2;
}

.coverage-links {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.coverage-links a {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.coverage-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Latest Stories Grid */
.latest-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.story-item {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-item:hover::before {
    opacity: 1;
}

.story-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.story-category {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-time {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.story-item h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.story-item > p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 2;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 1.5rem;
    padding: 0.75rem;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(39, 174, 96, 0.1);
    position: relative;
    z-index: 2;
}

.story-source {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.story-impact {
    color: #27ae60;
    font-size: 0.85rem;
    font-weight: 500;
}

.story-actions {
    position: relative;
    z-index: 2;
}

.story-actions a {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.story-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

/* Research Tabs */
.research-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 0 1rem;
    overflow-x: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.research-subtab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.9rem;
}

.research-subtab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.research-subtab.active {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

.research-content {
    margin: 2rem 0;
}

.research-subcontent {
    display: none;
}

.research-subcontent.active {
    display: block;
}

.research-paper {
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.research-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(142, 68, 173, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.research-paper:hover::before {
    opacity: 1;
}

.research-paper:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.research-paper h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.research-paper p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 1rem;
    position: relative;
    z-index: 2;
}

.research-paper p strong {
    color: var(--text-light);
}

.research-paper a {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    z-index: 2;
}

.research-paper a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

/* Animation for tab content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Tabs */
@media (max-width: 768px) {
    .news-platform-tabs,
    .research-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .tab-button,
    .research-subtab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .ai-coverage-grid,
    .latest-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coverage-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .coverage-links a {
        justify-content: center;
    }
    
    .story-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}