/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e91e63;
    --primary-600: #d81b60;
    --primary-700: #c2185b;
    --primary-dark: #ad1457;
    --primary-50: #fce4ec;
    --primary-100: #f8bbd9;
    --gradient-primary: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    --gradient-secondary: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-header: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #f3e5f5 100%);
    --shadow-soft: 0 4px 20px rgba(233, 30, 99, 0.1);
    --shadow-medium: 0 8px 30px rgba(233, 30, 99, 0.15);
    --shadow-strong: 0 12px 40px rgba(233, 30, 99, 0.2);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-light: #999;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-premium: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --bg-glass: rgba(255, 255, 255, 0.25);
    --bg-header: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #f3e5f5 100%);
    --border-color: #e9ecef;
    --border-premium: rgba(255, 255, 255, 0.2);
    --border-glass: rgba(255, 255, 255, 0.18);
    --logo-size: 80px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container para o header que ocupa toda a largura */
.header-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Animações */
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.animate-scroll {
    animation: scroll 20s linear infinite;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Banner Topo */
.banner-top {
    background: var(--bg-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.banner-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
}

/* Banner Proportions */
.banner-top .banner-image {
    max-height: 90px;
    object-fit: cover;
    width: 100%;
}

.sidebar-banner .banner-image {
    max-height: 250px;
    object-fit: cover;
    width: 100%;
}

.banner-bottom .banner-image {
    max-height: 90px;
    object-fit: cover;
    width: 100%;
}

/* YouTube Banner Support */
.banner-youtube {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
    max-width: 100%;
}

.banner-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.banner-carousel .carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.banner-carousel .carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-carousel .carousel-slide.active {
    opacity: 1;
}

.banner-carousel .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.banner-carousel .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-carousel .indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.banner-carousel .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Banner Heights */
@media (max-width: 768px) {
    .banner-top .banner-image,
    .banner-bottom .banner-image {
        max-height: 60px;
    }
    
    .sidebar-banner .banner-image {
        max-height: 200px;
    }
    
    .banner-carousel .carousel-indicators {
        bottom: 5px;
    }
    
    .banner-carousel .indicator {
        width: 6px;
        height: 6px;
    }
}

/* Breaking News Bar */
.breaking-news {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.breaking-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breaking-label {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.breaking-text {
    flex: 1;
    overflow: hidden;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    animation: scroll 20s linear infinite;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0;
    padding: 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
    font-size: 12px;
    color: #8e24aa;
    background: var(--bg-header);
    border-radius: 0;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
    font-weight: 500;
}

.header-top .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-info, .header-quotes {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-link {
    color: #dc3545;
    font-weight: 700;
    text-decoration: none;
}

.live-link:hover {
    color: #c82333;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--bg-header);
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.header-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo {
    width: var(--logo-size);
    height: var(--logo-size);
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

.site-name {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ad1457 0%, #8e24aa 50%, #7b1fa2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-tagline {
    font-size: 14px;
    color: #8e24aa;
    margin: 0;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Login Button */
.btn-login {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-login:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #be185d 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4);
    color: white;
}

.btn-login:hover::before {
    left: 100%;
}

/* Live Button (mantido para compatibilidade) */
.btn-live {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-live:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

.btn-live:hover::before {
    left: 100%;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Navigation */
.main-nav {
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: var(--primary-600);
    transform: translateY(-1px);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

/* Featured Carousel Section */
.featured-carousel-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.featured-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.featured-card-large {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.featured-image-large {
    position: relative;
    overflow: hidden;
}

.featured-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card-large:hover .featured-image-large img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}

.featured-category {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge {
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.featured-content-large {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content-large h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.featured-content-large h2 a {
    color: #1a1a1a !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-content-large h2 a:hover {
    color: var(--primary);
}

.featured-card-large {
    cursor: pointer;
}

.featured-content-large p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.featured-meta .author {
    font-weight: 600;
    color: var(--primary);
}

.featured-meta .read-time {
    background: var(--bg-secondary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .featured-card-large {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .featured-content-large {
        padding: 20px;
    }
    
    .featured-content-large h2 {
        font-size: 24px;
    }
    
    .featured-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .carousel-controls {
        display: none;
    }
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.featured-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 12px;
    color: var(--text-secondary);
}

.category {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.article-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--primary-600);
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-author {
    color: var(--text-light);
    font-size: 14px;
}

/* Latest Section */
.latest-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.article-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--border-glass);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.35);
}

.article-card:hover::before {
    opacity: 1;
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    pointer-events: none; /* evita bloqueio do clique no card */
}

.article-content {
    padding: 20px;
}

.article-content .article-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.article-content .article-excerpt {
    font-size: 14px;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-banner {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.sidebar-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-widget {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-600);
}

.count {
    background: var(--primary-50);
    color: var(--primary-700);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.popular-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-item {
    display: flex;
    gap: 12px;
}

.popular-image {
    flex-shrink: 0;
}

.popular-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.popular-content a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-content a:hover {
    color: var(--primary-600);
}

.popular-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: calc(var(--logo-size) * 0.5);
    height: calc(var(--logo-size) * 0.5);
}

.footer-name {
    font-size: 20px;
    font-weight: 700;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 8px;
    color: #bdc3c7;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.social-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #95a5a6;
    font-size: 14px;
}

.footer-admin {
    display: flex;
    gap: 16px;
}

.footer-admin a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-admin a:hover {
    color: white;
}

/* Article Page Styles */
.article-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.article-header {
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.subcategory {
    background: var(--primary-100);
    color: var(--primary-700);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.article-excerpt {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.article-author {
    color: var(--text-light);
    font-size: 14px;
}

.article-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.article-tags {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.article-tags h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--primary-50);
    color: var(--primary-700);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-item {
    display: flex;
    gap: 12px;
}

.related-image {
    flex-shrink: 0;
}

.related-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.related-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.related-content a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content a:hover {
    color: var(--primary-600);
}

.related-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Search Page Styles */
.search-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
    text-align: center;
}

.search-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.search-header p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-input-group input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-input-group button {
    padding: 16px 24px;
    border-radius: 25px;
    white-space: nowrap;
}

.search-results-header {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.search-results-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.search-results-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.no-results {
    background: white;
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.no-results-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.no-results-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
}

.search-suggestions {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestions h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.search-suggestions li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Live Page Styles */
.live-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.live-header {
    text-align: center;
    margin-bottom: 40px;
}

.live-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.live-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.live-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.youtube-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 100%;
}

.youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Article Video Styles */
.article-video {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-video .youtube-container {
    margin: 0;
}

/* Social Sharing */
.social-sharing {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--border-premium);
    box-shadow: var(--shadow-soft);
}

.social-sharing h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bb8 100%);
    color: white;
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
    color: white;
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
}

.share-btn.copy {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.share-icon {
    font-size: 16px;
}

.share-text {
    font-weight: 600;
}

/* Responsive Social Sharing */
@media (max-width: 768px) {
    .share-buttons {
        justify-content: center;
    }
    
    .share-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}

.live-stream {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.stream-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 40px;
}

.stream-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.stream-placeholder h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.stream-placeholder p {
    color: #ccc;
    margin-bottom: 20px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #dc3545;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.live-updates {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 24px;
}

.live-updates h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.update-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.update-time {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    min-width: 60px;
}

.update-text {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.4;
}

.live-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.stat-value {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

/* Category Page Styles */
.category-header {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
    text-align: center;
}

.category-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.category-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.articles-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.nav-list li.active a {
    color: var(--primary-600);
    position: relative;
}

.nav-list li.active a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .header-main {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px 15px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 8px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile Logo Adjustments */
    .logo {
        width: calc(var(--logo-size) * 1.25);
        height: calc(var(--logo-size) * 1.25);
    }
    
    .site-name {
        font-size: 28px;
    }
    
    /* Mobile Video Responsiveness */
    .youtube-container,
    .banner-youtube {
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .youtube-iframe,
    .banner-youtube iframe {
        border-radius: 12px;
    }
    
    /* Mobile Container Padding */
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Article Content */
    .article-content {
        padding: 0 10px;
    }
    
    .article-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .article-content h2 {
        font-size: 20px;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    /* Mobile Featured Cards */
    .featured-card {
        margin: 0 10px;
    }
    
    .featured-card-large {
        margin: 0 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
