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

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

:root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #242424;
    --bg-card: #1e1e1e;
    --bg-dark: #111111;
    --gold: #d4af37;
    --gold-light: #f0d77c;
    --gold-dark: #b8941f;
    --white: #ffffff;
    --gray: #4a4a4a;
    --gray-light: #888888;
    --gray-text: #b0b0b0;
    --border: #333333;
    --shadow: rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

.top-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar .date {
    color: var(--gray-text);
}

.top-bar .top-links a {
    color: var(--gray-text);
    margin-left: 20px;
}

.top-bar .top-links a:hover {
    color: var(--gold);
}

.site-header {
    background: var(--bg-primary);
    border-bottom: 2px solid var(--gold);
    padding: 30px 0 0;
    position: relative;
}

.site-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo h1 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 42px;
    color: var(--gold);
    letter-spacing: 8px;
    margin-bottom: 5px;
    font-weight: 400;
}

.logo .tagline {
    color: var(--gray-text);
    font-size: 14px;
    letter-spacing: 4px;
}

.logo .issue-info {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 8px;
}

.main-nav {
    width: 100%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 16px 28px;
    color: var(--white);
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.breadcrumb {
    background: var(--bg-secondary);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--gray-text);
}

.breadcrumb a {
    color: var(--gray-text);
}

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

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--gray);
}

.breadcrumb .current {
    color: var(--gold);
}

.hero-section {
    position: relative;
    margin-bottom: 50px;
}

.hero-featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.hero-main {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.hero-main .hero-image {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.hero-main .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-main:hover .hero-image img {
    transform: scale(1.03);
}

.hero-main .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}

.hero-main .category-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 4px 14px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-main h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 32px;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

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

.hero-main .hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-side-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-side-card:hover {
    border-color: var(--gold);
    transform: translateX(-4px);
}

.hero-side-card .side-image {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

.hero-side-card .side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-side-card .side-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-side-card h3 {
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 10px;
}

.hero-side-card:hover h3 {
    color: var(--gold);
}

.hero-side-card .side-meta {
    font-size: 12px;
    color: var(--gray-text);
}

.section {
    padding: 50px 0;
}

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

.section-header h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--gold);
}

.section-header .more-link {
    color: var(--gray-text);
    font-size: 14px;
    letter-spacing: 1px;
}

.section-header .more-link:hover {
    color: var(--gold);
}

.grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

.news-item {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: var(--gold);
    background: var(--bg-secondary);
}

.news-item .news-image {
    width: 220px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

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

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

.news-item .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item .news-category {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.news-item h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 10px;
}

.news-item:hover h3 {
    color: var(--gold);
}

.news-item .news-excerpt {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item .news-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--gray);
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

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

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.sidebar-widget .widget-title {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'ZCOOL XiaoWei', serif;
}

.sidebar-widget .widget-content {
    padding: 20px;
}

.hot-list {
    list-style: none;
}

.hot-list li {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.hot-list li:hover {
    padding-left: 5px;
}

.hot-list .rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gray);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.hot-list li:nth-child(1) .rank {
    background: #e74c3c;
}

.hot-list li:nth-child(2) .rank {
    background: #e67e22;
}

.hot-list li:nth-child(3) .rank {
    background: #f1c40f;
    color: var(--bg-dark);
}

.hot-list .hot-title {
    flex: 1;
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
}

.hot-list li:hover .hot-title {
    color: var(--gold);
}

.hot-list .hot-count {
    color: var(--gray-text);
    font-size: 12px;
    margin-left: 8px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.category-card:hover {
    background: var(--bg-secondary);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.category-card .cat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 24px;
}

.category-card h3 {
    color: var(--white);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.category-card:hover h3 {
    color: var(--gold);
}

.category-card p {
    color: var(--gray-text);
    font-size: 13px;
}

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

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.article-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.08);
}

.article-card .card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 3px 10px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
}

.article-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 18px;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 10px;
}

.article-card:hover h3 {
    color: var(--gold);
}

.article-card .card-excerpt {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray);
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.article-card .card-source {
    color: var(--gold);
}

.timeline-section {
    position: relative;
    padding: 30px 0;
}

.timeline-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.timeline-filter button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gray-text);
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 1px;
}

.timeline-filter button:hover,
.timeline-filter button.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-dark) 50%, var(--gray) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-item .timeline-date {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timeline-item h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.5;
}

.timeline-item .timeline-summary {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.timeline-item .timeline-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.timeline-item .timeline-tags span {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--gray-text);
    padding: 3px 10px;
    font-size: 12px;
}

.exclusive-article {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    margin-bottom: 30px;
}

.exclusive-article .article-head {
    border-bottom: 1px solid var(--border);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.exclusive-article .article-category {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 12px;
}

.exclusive-article h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 30px;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 15px;
}

.exclusive-article .article-meta {
    display: flex;
    gap: 25px;
    font-size: 13px;
    color: var(--gray-text);
}

.exclusive-article .article-content {
    font-size: 16px;
    line-height: 2;
    color: var(--gray-text);
}

.exclusive-article .article-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.exclusive-article .article-content p:first-of-type::first-letter {
    float: left;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 4em;
    line-height: 0.8;
    color: var(--gold);
    padding: 8px 10px 0 0;
    text-indent: 0;
}

.exclusive-article .article-highlight {
    border-left: 3px solid var(--gold);
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.05);
    margin: 25px 0;
    font-style: italic;
    color: var(--white);
}

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

.people-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
    padding: 25px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.people-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid var(--gold);
    padding: 3px;
}

.people-card .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.people-card h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.people-card .people-role {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 12px;
}

.people-card .people-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.people-card .people-stats span strong {
    display: block;
    color: var(--gold);
    font-size: 16px;
}

.people-card .people-event {
    background: var(--bg-secondary);
    padding: 10px;
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.5;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.about-content h2 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.about-content p {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
}

.about-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.about-visual::before {
    content: '黑金';
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 120px;
    color: var(--gold);
    opacity: 0.15;
    letter-spacing: 20px;
}

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

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--gold);
}

.team-card .team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--bg-dark);
    font-weight: 700;
}

.team-card h3 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 5px;
}

.team-card .team-role {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 10px;
}

.team-card .team-desc {
    color: var(--gray-text);
    font-size: 13px;
    line-height: 1.6;
}

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

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px 25px;
    text-align: center;
}

.value-card .value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 28px;
}

.value-card h3 {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.8;
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.contact-card .contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 30px;
}

.contact-card h3 {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-card .contact-label {
    color: var(--gray-text);
    font-size: 13px;
    margin-bottom: 8px;
}

.contact-card .contact-value {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.social-matrix {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
}

.social-matrix h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.social-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.social-item .social-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 12px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.social-item h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 5px;
}

.social-item .social-handle {
    color: var(--gray-text);
    font-size: 11px;
}

.site-footer {
    background: var(--bg-dark);
    border-top: 3px solid var(--gold);
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

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

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

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

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

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

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

.footer-brand {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 1px;
}

.footer-bottom .icp {
    color: var(--gray-text);
}

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

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--gray-text);
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero-featured {
        grid-template-columns: 1fr;
    }

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

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

    .people-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav a {
        text-align: center;
        padding: 12px 20px;
        border-bottom: 1px solid var(--border);
    }

    .hero-main .hero-image {
        height: 280px;
    }

    .hero-main h2 {
        font-size: 22px;
    }

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

    .news-item .news-image {
        width: 100%;
        height: 200px;
    }

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

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

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

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

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

    .values-list {
        grid-template-columns: 1fr;
    }

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

    .section-header h2 {
        font-size: 22px;
    }

    .exclusive-article {
        padding: 25px 20px;
    }

    .exclusive-article h2 {
        font-size: 22px;
    }

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

    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
}

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

    .logo h1 {
        font-size: 22px;
    }

    .hero-main .hero-image {
        height: 220px;
    }

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

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

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