@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700;900&family=ZCOOL+XiaoWei&display=swap');

:root {
    --bg-black: #0d0d0d;
    --bg-dark: #1a1a1a;
    --bg-card: #121212;
    --gold: #ffd700;
    --gold-light: #ffe44d;
    --gold-dark: #b8860b;
    --red: #b71c1c;
    --red-dark: #7f0000;
    --white: #ffffff;
    --gray: #999999;
    --border-gold: 1px solid #ffd700;
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Serif SC', serif;
    background-color: var(--bg-black);
    color: var(--white);
    line-height: 1.8;
    min-height: 100vh;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
}

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

.site-header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo span {
    color: var(--red);
}

.header-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--gray);
}

.header-meta .live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.main-nav {
    padding: 10px 0;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.nav-list a {
    display: block;
    padding: 12px 28px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 60%;
}

.banner {
    position: relative;
    background: linear-gradient(135deg, #1a0a0a 0%, #0d0d0d 50%, #1a1a0a 100%);
    padding: 60px 0;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" font-size="20" fill="%23ffd700" opacity="0.05">718</text></svg>') center center/300px repeat;
    opacity: 0.3;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner h1 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.banner .subtitle {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.banner .entry-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 15px 50px;
    border: 2px solid var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

.banner .entry-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.banner .status-bar {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--gray);
}

.banner .status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner .status-item strong {
    color: var(--gold);
}

.section {
    padding: 60px 0;
}

.section-title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 32px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 15px;
}

.timeline-section {
    background: linear-gradient(180deg, #0d0d0d 0%, #121212 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border: 3px solid var(--bg-black);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd)::before {
    right: -7px;
}

.timeline-item:nth-child(even)::before {
    left: -7px;
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 20px;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.timeline-date {
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.news-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.news-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a1a1a, #2a1a1a);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card.featured .news-image {
    height: 100%;
    min-height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image .placeholder-icon {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.5;
}

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

.news-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 4px 12px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.news-title {
    font-size: 19px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.news-excerpt {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    flex: 1;
    line-height: 1.7;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 12px;
}

.news-time {
    color: var(--gold);
}

.news-source {
    color: var(--red);
}

.category-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.category-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, #1a1a1a 0%, #1a0a0a 100%);
    transform: translateY(-3px);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.category-name {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

.status-panel {
    background: linear-gradient(135deg, #1a0a0a 0%, #0d0d0d 100%);
    border: 2px solid var(--gold);
    padding: 40px;
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.status-item-panel {
    text-align: center;
}

.status-number {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.status-label {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
    letter-spacing: 1px;
}

.article-hero {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.article-hero .category-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 6px 20px;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.article-hero h1 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.4;
}

.article-hero .meta-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--gray);
    font-size: 14px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-body p {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 2;
    text-align: justify;
    text-indent: 2em;
}

.article-body h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 26px;
    color: var(--gold);
    margin: 40px 0 20px;
    padding-left: 15px;
    border-left: 4px solid var(--gold);
}

.article-blockquote {
    background: linear-gradient(135deg, rgba(183, 28, 28, 0.1) 0%, transparent 100%);
    border-left: 4px solid var(--red);
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.magazine-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.magazine-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.magazine-item .news-image {
    height: 250px;
}

.magazine-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.magazine-content h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.magazine-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white) !important;
    padding: 10px 30px;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.read-more:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-black) !important;
    transform: translateX(5px);
}

.insider-list {
    max-width: 900px;
    margin: 0 auto;
}

.insider-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.insider-item::before {
    content: '独家';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 4px 12px;
    font-size: 12px;
    letter-spacing: 1px;
}

.insider-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.insider-source {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--red);
    font-size: 14px;
}

.insider-source .source-icon {
    width: 30px;
    height: 30px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.insider-title {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.insider-content {
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 15px;
}

.insider-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 12px;
}

.about-section {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    padding: 40px 0 60px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.about-intro h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 17px;
    color: var(--gray);
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.principle-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.principle-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.principle-card h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
}

.principle-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.team-section {
    margin: 60px 0;
}

.team-section h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 28px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.team-member h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.team-member .role {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 12px;
}

.team-member .bio {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
}

.contact-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-intro p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 40px;
    margin-bottom: 30px;
}

.contact-card h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-black);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--white);
    padding: 12px 15px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    border: 2px solid var(--gold);
    padding: 15px 40px;
    font-size: 16px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    align-self: flex-start;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-black);
    transform: scale(1.02);
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bg-black);
}

.contact-info-text {
    color: var(--white);
}

.contact-info-text strong {
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.disclaimer {
    background: linear-gradient(135deg, rgba(183, 28, 28, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(183, 28, 28, 0.3);
    padding: 30px;
    margin-top: 40px;
}

.disclaimer h3 {
    color: var(--red);
    font-size: 20px;
    margin-bottom: 15px;
}

.disclaimer p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.breaking-news-list {
    max-width: 900px;
    margin: 0 auto;
}

.breaking-item {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--red);
}

.breaking-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.breaking-time {
    flex-shrink: 0;
    text-align: center;
    min-width: 80px;
}

.breaking-time .date {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

.breaking-time .time {
    color: var(--gray);
    font-size: 12px;
}

.breaking-content {
    flex: 1;
}

.breaking-content h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.breaking-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

.site-footer {
    background: linear-gradient(180deg, #121212 0%, #000000 100%);
    border-top: 3px solid var(--gold);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'ZCOOL XiaoWei', serif;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: var(--gray);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-col .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-col .social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-col .social-icons a:hover {
    background: var(--gold);
    color: var(--bg-black);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    padding-top: 25px;
    text-align: center;
    color: var(--gray);
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-black);
    box-shadow: var(--shadow-gold);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--white);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .active {
    background: var(--gold);
    color: var(--bg-black);
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
    }

    .nav-list a {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .banner {
        padding: 40px 0;
    }

    .banner h1 {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .banner .subtitle {
        font-size: 15px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding: 15px 15px 15px 50px;
        text-align: left;
    }

    .timeline-item::before,
    .timeline-item:nth-child(odd)::before,
    .timeline-item:nth-child(even)::before {
        left: 13px;
        right: auto;
    }

    .news-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-image {
        min-height: 220px;
    }

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

    .article-hero h1 {
        font-size: 26px;
    }

    .article-hero .meta-row {
        flex-direction: column;
        gap: 10px;
    }

    .status-panel {
        flex-direction: column;
        gap: 25px;
    }

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

    .footer-col .social-icons {
        justify-content: center;
    }

    .contact-card {
        padding: 25px;
    }

    .breaking-item {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .banner h1 {
        font-size: 26px;
    }

    .banner .entry-badge {
        padding: 12px 30px;
        font-size: 16px;
    }

    .logo {
        font-size: 22px;
    }

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

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

    .status-number {
        font-size: 36px;
    }
}