/* ============================================
   NEWS 24 - Premium Hindi News Platform
   Modern TV News Style Design
   ============================================ */

/* CSS Variables - Dark Navy Theme */
:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.85);
    --bg-glass: rgba(17, 24, 39, 0.6);
    --accent-red: #dc2626;
    --accent-red-glow: rgba(220, 38, 38, 0.4);
    --accent-orange: #f97316;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(220, 38, 38, 0.3);
    --gradient-hero: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(10, 14, 26, 0.95) 100%);
    --gradient-card: linear-gradient(145deg, rgba(17, 24, 39, 0.9) 0%, rgba(31, 41, 55, 0.8) 100%);
    --shadow-glow: 0 0 30px rgba(220, 38, 38, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-hindi);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #ef4444;
}

/* ============================================
   BREAKING NEWS TICKER
   ============================================ */
.breaking-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(90deg, var(--accent-red) 0%, #991b1b 100%);
    display: flex;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(220, 38, 38, 0.5);
}

.ticker-label {
    background: #000;
    color: #fff;
    padding: 0 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 2;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.ticker-marquee span {
    font-size: 14px;
    font-weight: 600;
    padding-right: 50px;
    color: #fff;
}

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

/* ============================================
   STICKY HEADER
   ============================================ */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.logo-icon {
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
}

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

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-text span {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(220, 38, 38, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 2px;
}

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

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-btn:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: var(--accent-red);
}

.live-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #991b1b 100%);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.live-btn:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    margin-top: 104px;
    padding: 40px 24px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-red) 0%, #991b1b 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(220, 38, 38, 0.5); }
    to { box-shadow: 0 0 25px rgba(220, 38, 38, 0.8); }
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.time {
    color: var(--text-muted);
    font-size: 14px;
}

.play-audio-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid var(--accent-red);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.play-audio-btn:hover {
    background: var(--accent-red);
    box-shadow: var(--shadow-glow);
}

.audio-icon {
    font-size: 16px;
}

.hero-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.image-placeholder::before {
    content: '🏛️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.3;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(220, 38, 38, 0.1) 100%);
}

/* ============================================
   SUPERFAST NEWS SECTION
   ============================================ */
.superfast-section {
    padding: 60px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 40px;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}

.title-icon {
    font-size: 28px;
    animation: flash 1.5s ease-in-out infinite;
}

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

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red) 0%, transparent 100%);
    margin-top: 12px;
    border-radius: 2px;
}

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

/* News Card - Glassmorphism */
.news-card {
    position: relative;
    background: var(--gradient-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-card);
    border-color: var(--border-glow);
}

/* Superfast Badge */
.superfast-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #fff 0%, #f3f4f6 100%);
    color: var(--accent-red);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.superfast-badge::before {
    content: '⚡ ';
}

/* Card Thumbnail */
.card-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    position: relative;
    overflow: hidden;
}

.card-thumbnail::before {
    content: attr(data-emoji);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.4;
}

.card-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(17, 24, 39, 0.8) 100%);
}

/* Category Badge */
.category-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

/* Card Audio Button */
.card-audio-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-audio-btn:hover {
    transform: scale(1.1);
    background: var(--accent-red);
}

.card-audio-btn:hover::before {
    content: '🔊';
}

.card-audio-btn::before {
    content: '🔈';
}

.card-audio-btn.playing {
    background: var(--accent-red);
    animation: pulse-audio 1s ease-in-out infinite;
}

.card-audio-btn.playing::before {
    content: '🔊';
}

@keyframes pulse-audio {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
}

/* Card Content */
.card-content {
    padding: 20px;
}

.card-headline {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
    padding: 0 24px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-tab {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.category-tab:hover {
    border-color: var(--accent-red);
    color: var(--text-primary);
}

.category-tab.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
}

/* ============================================
   MORE NEWS SECTION
   ============================================ */
.more-news-section {
    padding: 40px 24px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.news-list-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.news-list-item:hover {
    border-color: var(--border-glow);
    background: rgba(220, 38, 38, 0.05);
}

.list-item-thumb {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.list-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.list-item-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.list-audio-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-left: auto;
}

.list-audio-btn:hover {
    background: var(--accent-red);
}

/* ============================================
   FLOATING TOP 10 BUTTON
   ============================================ */
.floating-top10-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red) 0%, #991b1b 100%);
    border: none;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.floating-top10-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.7);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate-glow 3s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.btn-icon {
    font-size: 24px;
    margin-bottom: 2px;
}

.btn-text {
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.btn-wave {
    position: absolute;
    bottom: 8px;
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: scaleX(0.5); opacity: 0.5; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* ============================================
   TOP 10 SIDE PANEL
   ============================================ */
.side-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.top10-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.top10-panel.active {
    right: 0;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, transparent 100%);
}

.panel-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-icon {
    font-size: 24px;
    animation: fire 1s ease-in-out infinite alternate;
}

@keyframes fire {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

.panel-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-close:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.panel-actions {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.autoplay-btn {
    width: 100%;
    padding: 12px 20px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid var(--accent-red);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.autoplay-btn:hover {
    background: var(--accent-red);
}

.autoplay-btn.active {
    background: var(--accent-red);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(220, 38, 38, 0.5); }
    50% { box-shadow: 0 0 25px rgba(220, 38, 38, 0.8); }
}

.autoplay-icon {
    font-size: 12px;
}

.top10-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.top10-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.top10-item:hover {
    border-color: var(--border-glow);
    transform: translateX(-4px);
}

.top10-item.playing {
    border-color: var(--accent-red);
    background: rgba(220, 38, 38, 0.1);
}

.top10-rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red) 0%, #991b1b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.top10-content {
    flex: 1;
}

.top10-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top10-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.top10-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.top10-play-btn:hover {
    background: var(--accent-red);
}

/* ============================================
   AUDIO PLAYER BAR
   ============================================ */
.audio-player-bar {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(17, 24, 39, 0.98);
    border-top: 1px solid var(--border-color);
    z-index: 997;
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 20px;
    transition: bottom 0.3s ease;
}

.audio-player-bar.active {
    bottom: 0;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.player-wave {
    width: 30px;
    height: 20px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.player-wave::before,
.player-wave::after {
    content: '';
    width: 4px;
    background: var(--accent-red);
    border-radius: 2px;
    animation: sound-wave 0.5s ease-in-out infinite alternate;
}

.player-wave::before {
    height: 60%;
    animation-delay: 0.1s;
}

.player-wave::after {
    height: 100%;
}

@keyframes sound-wave {
    0% { height: 30%; }
    100% { height: 100%; }
}

.player-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.player-controls {
    display: flex;
    gap: 12px;
}

.player-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid var(--accent-red);
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    background: var(--accent-red);
}

.stop-btn {
    background: rgba(107, 114, 128, 0.2);
    border-color: var(--text-muted);
}

.stop-btn:hover {
    background: var(--text-muted);
}

.player-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    transition: width 0.1s linear;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 24px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 16px;
    }
    
    .logo-text h1 {
        font-size: 22px;
    }
    
    .hero-section {
        padding: 30px 16px;
        margin-top: 96px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .superfast-section,
    .categories-section,
    .more-news-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .floating-top10-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .btn-icon {
        font-size: 20px;
    }
    
    .btn-text {
        font-size: 7px;
    }
    
    .top10-panel {
        width: 100%;
        right: -100%;
    }
    
    .news-list-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .list-item-thumb {
        width: 100%;
        height: 150px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ticker-label {
        padding: 0 12px;
        font-size: 10px;
    }
    
    .ticker-marquee span {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .card-headline {
        font-size: 16px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Glassmorphism Effect */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glowing Text */
.glow-text {
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

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