/* =========================================
   News & Media Hub Styles
   Premium Dark Theme (Billboard/MTV Style)
   ========================================= */

:root {
    --news-bg: #090B17;
    --news-card: #121526;
    --news-primary: #23287C;
    --news-accent: #5A5899;
    --news-light: #86DAF4;
    --news-text: #E0E0E0;
    --news-muted: #8A8D9E;
    --news-border: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(18, 21, 38, 0.7);
    --glass-border: rgba(134, 218, 244, 0.1);
}

body {
    background-color: var(--news-bg);
    color: var(--news-text);
    font-family: 'Inter', 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Typography Enhancements */
.news-hub h1, .news-hub h2, .news-hub h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

/* Breaking News Ticker */
.breaking-ticker {
    background: linear-gradient(90deg, var(--news-primary), var(--news-accent));
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--news-border);
    z-index: 10;
}

.ticker-label {
    background: #ff0044;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 15px;
    font-size: 12px;
    letter-spacing: 1px;
    position: absolute;
    left: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-wrap {
    width: 100%;
    padding-left: 140px;
    overflow: hidden;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.ticker-item {
    display: inline-block;
    margin-right: 50px;
    font-size: 14px;
    font-weight: 500;
    will-change: transform;
}
.ticker-item a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.5);
}

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

/* Hero Section (Featured or Countdown) */
.news-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--news-border);
    will-change: transform;
    transform: translateZ(0);
}

.news-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--news-bg) 0%, rgba(9, 11, 23, 0.4) 60%, rgba(9, 11, 23, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    background: var(--news-light);
    color: #000;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-excerpt {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Main Grid Layout */
.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--news-border);
    padding-bottom: 15px;
}

.section-title {
    font-size: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -17px;
    width: 60px;
    height: 4px;
    background: var(--news-light);
    border-radius: 2px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--news-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(134, 218, 244, 0.3);
}

.news-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.news-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: var(--news-light);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    font-size: 12px;
    color: var(--news-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
}

.news-card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-card:hover .news-card-title {
    color: var(--news-light);
}

.news-excerpt {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.news-footer {
    border-top: 1px solid var(--news-border);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: var(--news-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Vlogs / Video Section */
.vlogs-section {
    background: linear-gradient(135deg, #0f1221 0%, #090B17 100%);
    padding: 80px 20px;
    border-top: 1px solid var(--news-border);
}

.vlog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vlog-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: var(--news-light);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding-left: 5px;
    transition: 0.3s;
}

.vlog-card:hover .play-overlay {
    background: rgba(0,0,0,0.2);
}

.vlog-card:hover .play-icon {
    transform: scale(1.1);
}

.vlog-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.vlog-title {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Award Countdown specific */
.countdown-timer {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.time-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 15px 25px;
    text-align: center;
    min-width: 100px;
}

.time-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--news-light);
    line-height: 1;
}

.time-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .vlog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-content { padding: 30px 20px; }
    .hero-title { font-size: 2.2rem; }
    .news-grid { grid-template-columns: 1fr; }
    .vlog-grid { grid-template-columns: 1fr; }
    .countdown-timer { flex-wrap: wrap; gap: 10px; }
    .time-box { min-width: 80px; padding: 10px; }
    .time-val { font-size: 1.8rem; }
}
