/* 德州资讯页面专用样式 */
.page-header {
    background: var(--hero-gradient);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/poker-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.news-section {
    padding: 80px 0;
    background: var(--background-color);
}

.content-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.content-card h2 {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.content-card h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-gradient);
}

/* 资讯列表样式 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: 16px;
    box-shadow: 0 5px 15px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.news-item.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--card-bg), rgba(44, 122, 44, 0.05));
}

.news-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.news-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.news-tag.hot {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    animation: pulse 2s infinite;
}

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

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

.news-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.news-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-meta i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.news-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* 侧边栏样式 */
.sidebar-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px var(--shadow-color);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.sidebar-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
}

/* 分类导航 */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-item.active {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
}

.category-item i {
    margin-right: 0.8rem;
    width: 16px;
}

.category-item .count {
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-item.active .count {
    background: rgba(255,255,255,0.3);
}

/* 热门文章 */
.hot-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hot-article {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.hot-article:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.hot-rank {
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hot-content h5 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.hot-content h5 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hot-content h5 a:hover {
    color: var(--primary-color);
}

.hot-meta {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

.hot-meta i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

/* 订阅表单 */
.subscribe-form {
    margin-top: 1rem;
}

.subscribe-form .form-control {
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 10px;
    padding: 0.8rem;
}

.subscribe-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 122, 44, 0.25);
    background: var(--input-bg);
}

.subscribe-form .form-check-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.subscribe-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* 相关链接 */
.related-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.related-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.related-link i {
    color: var(--primary-color);
    width: 16px;
}

/* 分页样式 */
.news-pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.disabled .page-link {
    background: var(--disabled-bg);
    color: var(--text-light);
    border-color: var(--border-color);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .news-item {
        flex-direction: column;
        gap: 1rem;
    }

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

    .news-meta {
        gap: 0.5rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }

    .category-item {
        padding: 0.6rem 0.8rem;
    }

    .hot-article {
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .news-section {
        padding: 60px 0;
    }

    .content-card {
        padding: 1rem;
    }

    .sidebar-card {
        padding: 1rem;
    }
}