* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #222;
    line-height: 1.5;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.top-bar {
    background-color: #111;
    padding: 15px 0;
}
.logo img {
    height: 40px;
}
.nav-bar {
    background-color: #fabf2c;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-nav {
    display: flex;
}
.main-nav li a {
    display: block;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    color: #111;
    text-transform: uppercase;
}
.main-nav li a:hover {
    background-color: rgba(255,255,255,0.2);
}
.search-icon {
    font-size: 18px;
    cursor: pointer;
}
.hero-section {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.hero-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
}
.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hero-card:hover img {
    transform: scale(1.05);
}
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px;
}
.hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}
.hero-meta {
    font-size: 12px;
    color: #fabf2c;
    font-weight: bold;
}
.sidebar-tabs {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    overflow-y: auto;
}
.tab-header {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}
.tab-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}
.tab-btn.active {
    border-bottom: 2px solid #fabf2c;
    color: #000;
}
.side-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.side-list h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.side-meta {
    font-size: 11px;
    color: #888;
}
.section-header {
    margin: 30px 0 15px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.press-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.press-card {
    min-width: 280px;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.press-card img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}
.press-card h4 {
    font-size: 13px;
    line-height: 1.3;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-5px);
}
.card-img {
    position: relative;
    height: 200px;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fabf2c;
    color: #111;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    text-transform: uppercase;
}
.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}
.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}
.page-header {
    background: #fff;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.page-title {
    font-size: 32px;
    font-weight: 800;
}
.list-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
}
.list-thumb {
    width: 240px;
    height: 160px;
    flex-shrink: 0;
}
.list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.list-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
.list-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #fabf2c;
    top: 0;
    bottom: 0;
    left: 20px;
}
.live-item {
    padding: 20px 20px 20px 50px;
    position: relative;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.live-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 25px;
    width: 20px;
    height: 20px;
    background: #fabf2c;
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 1;
}
.live-time {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    font-weight: bold;
}
.article-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
}
.article-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.article-info {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}
.article-body p {
    margin-bottom: 20px;
}
.article-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}
.pagination {
    margin: 40px 0;
    text-align: center;
}
.pagination li {
    display: inline-block;
    margin: 0 5px;
}
.pagination a {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.pagination .thisclass {
    padding: 8px 16px;
    background: #fabf2c;
    color: #000;
    border: 1px solid #fabf2c;
    border-radius: 4px;
}
.footer {
    background-color: #1a1b1d;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.subscribe-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
}
.subscribe-box button {
    background: #fabf2c;
    border: none;
    color: #111;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
}
.copy {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 12px;
    color: #666;
}
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a2b2d;
    border-radius: 50%;
    color: #999;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: #fabf2c;
    color: #000;
    transform: translateY(-3px);
}
.social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.lives-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.lives-main {
    flex: 3;
}
.lives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.live-card {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.live-card:hover {
    transform: translateY(-5px);
}
.live-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.live-status {
    width: 8px;
    height: 8px;
    background: #fabf2c;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 2px rgba(250, 191, 44, 0.3);
}
.live-card-time {
    color: #888;
    font-size: 12px;
    font-weight: 700;
}
.live-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #111;
}
.live-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lives-sidebar {
    flex: 1;
}
.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.sidebar-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fabf2c;
}
.rec-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.rec-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.rec-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}
.rec-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rec-time {
    font-size: 11px;
    color: #999;
    display: flex;
    align-items: center;
}
.rec-time svg {
    margin-right: 4px;
}
@media (max-width: 992px) {
    .lives-grid { grid-template-columns: repeat(2, 1fr); }
    .lives-container { flex-direction: column; }
}
@media (max-width: 600px) {
    .lives-grid { grid-template-columns: 1fr; }
}
.crumb {
    font-size: 13px;
    color: #666;
    margin: 33px 0;
    text-transform: uppercase;
    font-weight: 600;
}
.crumb a {
    color: #111;
}
.crumb a:hover {
    color: #fabf2c;
}
.article-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}
.article-main {
    flex: 1;
    min-width: 0; 
}
.article-sidebar {
    width: 350px;
    flex-shrink: 0;
}
.article-header {
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.article-h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}
.article-lead {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    background: #fdf8e4;
    padding: 6px;
    border-left: 4px solid #fabf2c;
    border-radius: 0 4px 4px 0;
}
.author-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fabf2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 18px;
}
.author-name {
    font-weight: 700;
    color: #111;
    display: block;
}
.article-meta span {
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
}
.article-content p {
    margin-bottom: 25px;
}
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 30px 0;
}
.article-content h2, .article-content h3 {
    font-weight: 800;
    margin: 40px 0 20px;
    line-height: 1.3;
}
.article-content blockquote {
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    color: #111;
    margin: 30px 0;
    padding-left: 0;
    text-align: center;
}
.tag-cloud {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-item {
    background: #f0f0f0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    transition: all 0.2s;
}
.tag-item:hover {
    background: #fabf2c;
    color: #000;
}
.share-bar {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.share-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}
.share-x { background: #000; color: #fff; }
.share-fb { background: #3b5998; color: #fff; }
.share-tg { background: #0088cc; color: #fff; }
.pn-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.pn-item {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 4px;
}
.pn-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
    font-weight: 700;
}
.pn-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}
.sidebar-widget {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 30px;
}
.widget-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.widget-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}
.widget-list li:last-child {
    border: none;
    margin: 0;
    padding: 0;
}
.widget-num {
    color: #fabf2c;
    font-weight: 800;
    margin-right: 5px;
}
.widget-link {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
}
.widget-link:hover {
    color: #fabf2c;
}
@media (max-width: 900px) {
    .article-wrapper { flex-direction: column; }
    .article-sidebar { width: 100%; }
    .article-h1 { font-size: 32px; }
}