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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.logo h1 {
    font-size: 32px;
    font-weight: 900;
    color: #ff6f00;
    letter-spacing: -1px;
}

.tagline {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.date {
    font-size: 14px;
    color: #666;
}

.search {
    display: flex;
    gap: 5px;
}

.search input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
    font-size: 14px;
}

.search button {
    padding: 8px 15px;
    border: none;
    background: #ff6f00;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.search button:hover {
    background: #e65100;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 0;
    padding: 0;
}

.main-nav a {
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ff6f00;
    border-bottom-color: #ff6f00;
}

/* Breaking News */
.breaking-news {
    background: linear-gradient(135deg, #ff6f00 0%, #f57c00 100%);
    color: white;
    padding: 12px 20px;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(255, 111, 0, 0); }
}

.breaking-label {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
}

.breaking-text {
    flex: 1;
    font-weight: 500;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin: 30px 0;
}

/* Extended Content Grid with Left Feed */
.content-grid-extended {
    display: grid;
    grid-template-columns: 280px 1fr 350px;
    gap: 20px;
    margin: 30px 0;
}

/* Left Feed Column */
.left-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.compact-feed {
    display: flex;
    flex-direction: column;
    max-height: 800px;
    overflow-y: auto;
    gap: 0;
}

.compact-feed-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.2s;
}

.compact-feed-item:last-child {
    border-bottom: none;
}

.compact-feed-item:hover {
    background: #f9f9f9;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
    border-radius: 6px;
}

.compact-time {
    font-size: 12px;
    font-weight: 700;
    color: #ff6f00;
}

.compact-title {
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.compact-title:hover {
    color: #ff6f00;
}

.feed-all-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 6px;
    color: #ff6f00;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.feed-all-link:hover {
    background: #ff6f00;
    color: white;
}

/* Important News */
.important-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.important-item {
    padding: 12px;
    background: #fff9e6;
    border-left: 4px solid #ffa000;
    border-radius: 6px;
    transition: all 0.2s;
}

.important-item:hover {
    background: #fff3cd;
    transform: translateX(5px);
}

.important-item h4 {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 8px;
}

.important-item .time {
    font-size: 12px;
    color: #999;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-news {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

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

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

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff6f00;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #1a1a1a;
}

.news-excerpt {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.news-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.news-item img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #ff6f00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-item h3 {
    font-size: 18px;
    line-height: 1.4;
    color: #1a1a1a;
}

.news-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.news-item .time {
    font-size: 13px;
    color: #999;
    margin-top: auto;
}

/* Section */
.section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.section-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.compact-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.compact-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 6px;
    transition: background 0.2s;
}

.compact-item:hover {
    background: #f9f9f9;
}

.compact-item .time {
    font-weight: 700;
    color: #ff6f00;
    min-width: 50px;
}

.compact-item h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

/* Popular News */
.popular-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.2s;
}

.popular-item:hover {
    background: #f9f9f9;
}

.popular-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6f00 0%, #f57c00 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.popular-item h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #333;
}

.popular-item .views {
    font-size: 12px;
    color: #999;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 8px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    color: #666;
    transition: all 0.2s;
}

.tag:hover {
    background: #ff6f00;
    color: white;
}

/* Poll */
.poll {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.poll-question {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.poll-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.poll-option:hover {
    background: #f9f9f9;
    border-color: #ff6f00;
}

.poll-option input {
    cursor: pointer;
}

.poll-button {
    padding: 12px;
    background: #ff6f00;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.poll-button:hover {
    background: #e65100;
}

/* Weather */
.weather-info {
    text-align: center;
}

.weather-temp {
    font-size: 48px;
    font-weight: 700;
    color: #ff6f00;
    margin-bottom: 10px;
}

.weather-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.weather-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ff6f00;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

.footer-legal {
    margin-top: 10px;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
}

.footer-legal a:hover {
    color: #ff6f00;
}

/* Advertising Blocks */
.ad-banner {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0;
    transition: all 0.3s;
}

.ad-banner:hover {
    border-color: #ff6f00;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
}

.ad-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.ad-content {
    color: #999;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.ad-horizontal {
    min-height: 90px;
    width: 100%;
}

.ad-content-banner {
    min-height: 60px;
}

.ad-sidebar {
    min-height: 250px;
    margin: 0;
}

/* News Feed */
.news-feed {
    margin-top: 30px;
}

.feed-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.feed-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s;
}

.feed-item:last-child {
    border-bottom: none;
}

.feed-item:hover {
    background: #f9f9f9;
}

.feed-time {
    font-weight: 700;
    color: #ff6f00;
    font-size: 14px;
    min-width: 50px;
    flex-shrink: 0;
}

.feed-content {
    flex: 1;
}

.feed-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.feed-item h4 {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    font-weight: 600;
}

.load-more {
    width: 100%;
    padding: 15px;
    margin-top: 15px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more:hover {
    background: #ff6f00;
    color: white;
    border-color: #ff6f00;
}

/* Category News */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-section {
    margin: 0;
}

.category-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Two Column Block after banner */
.two-column-block {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    margin-top: 30px;
}

.left-column-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.right-column-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Currency Widget */
.currency-widget {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.currency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 6px;
}

.currency-name {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.currency-value {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.currency-change {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.currency-change.up {
    color: #2e7d32;
    background: #e8f5e9;
}

.currency-change.down {
    color: #c62828;
    background: #ffebee;
}

/* Stock Widget */
.stock-widget {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stock-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
}

.stock-name {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.stock-value {
    font-weight: 700;
    font-size: 14px;
}

.stock-value.up {
    color: #2e7d32;
}

.stock-value.down {
    color: #c62828;
}

/* Useful Links */
.useful-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.useful-links li {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}

.useful-links li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.useful-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.2s;
    display: block;
}

.useful-links a:hover {
    color: #ff6f00;
}

/* Category Pages */
.category-page {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    border-bottom: 3px solid #ff6f00;
    padding-bottom: 15px;
}

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

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
    cursor: pointer;
}

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

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content .time {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.news-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.category-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.category-item:hover {
    background: #f9f9f9;
}

.category-item img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.category-item h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
}

.category-item .time {
    font-size: 13px;
    color: #999;
}

.section-link {
    display: inline-block;
    margin-top: 15px;
    color: #ff6f00;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.section-link:hover {
    color: #e65100;
    transform: translateX(5px);
}

/* Video Widget */
.video-widget {
    margin-top: 10px;
}

.video-placeholder {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    border-radius: 8px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder span {
    font-size: 48px;
    margin-bottom: 10px;
}

.video-placeholder p {
    font-size: 14px;
    font-weight: 600;
}

/* Full Width Sections */
.full-width-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

.video-section .section-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.video-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-player {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    border-radius: 12px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.video-player:hover {
    transform: scale(1.01);
}

.video-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,111,0,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-player:hover::before {
    opacity: 1;
}

.play-button {
    font-size: 72px;
    margin-bottom: 15px;
    z-index: 1;
}

.video-player p {
    font-size: 18px;
    font-weight: 600;
    z-index: 1;
}

.video-info h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.video-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #ccc;
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.video-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.video-thumb {
    position: relative;
    background: #333;
    border-radius: 8px;
    height: 120px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.thumb-placeholder {
    font-size: 36px;
    opacity: 0.6;
}

.video-card h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: white;
}

.video-views {
    font-size: 12px;
    color: #999;
}

/* News Tape Section */
.news-tape-section {
    background: #f9f9f9;
}

.news-tape-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    margin-top: 25px;
}

.news-tape-main {
    background: white;
    border-radius: 10px;
    padding: 20px;
}

.tape-item {
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.2s;
}

.tape-item:last-of-type {
    border-bottom: none;
}

.tape-item:hover {
    background: #f9f9f9;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 8px;
}

.tape-time {
    display: inline-block;
    font-weight: 700;
    color: #ff6f00;
    font-size: 14px;
    margin-right: 15px;
}

.tape-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.tape-item h3 {
    font-size: 20px;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 10px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.tape-item h3:hover {
    color: #ff6f00;
}

.tape-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-top: 8px;
}

.news-tape-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reading-now {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reading-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.2s;
    cursor: pointer;
}

.reading-item:hover {
    background: #f9f9f9;
}

.reading-number {
    width: 28px;
    height: 28px;
    background: #ff6f00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.reading-item h4 {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

/* Responsive */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-grid-extended {
        grid-template-columns: 1fr;
    }

    .left-feed {
        order: 2;
    }

    .main-content {
        order: 1;
    }

    .sidebar {
        order: 3;
    }

    .two-column-block {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .video-container {
        grid-template-columns: 1fr;
    }

    .video-player {
        height: 300px;
    }

    .news-tape-grid {
        grid-template-columns: 1fr;
    }

    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        overflow-x: auto;
        white-space: nowrap;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item img {
        width: 100%;
    }

    .category-item {
        flex-direction: column;
    }

    .category-item img {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .search input {
        width: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feed-item {
        flex-direction: column;
    }

    .feed-time {
        min-width: auto;
    }

    .video-player {
        height: 250px;
    }

    .play-button {
        font-size: 48px;
    }

    .tape-item h3 {
        font-size: 18px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 28px;
    }
}