/* ============================================
   CSS变量定义
   ============================================ */
:root {
    --primary-color: #5d5457;
    --accent-color-1: #cabdc4;
    --accent-color-2: #a39eb0;
    --accent-color-3: #abacba;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(93, 84, 87, 0.1);
    --shadow-md: 0 4px 16px rgba(93, 84, 87, 0.15);
    --shadow-lg: 0 8px 24px rgba(93, 84, 87, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --header-height: 70px;
}

/* ============================================
   全局样式
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans SC', 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   容器和布局
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section__title i {
    margin-right: 10px;
    color: var(--accent-color-2);
}

.section__subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ============================================
   头部导航
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.nav__logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav__list {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav__link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 10px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav__link i {
    font-size: 0.85rem;
}

.nav__link:hover {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--text-white);
    transform: translateY(-2px);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ============================================
   英雄区
   ============================================ */
.hero {
    margin-top: var(--header-height);
    background: linear-gradient(135deg, var(--accent-color-1) 0%, var(--accent-color-3) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info__badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
}

.feature__item i {
    font-size: 2rem;
    opacity: 0.9;
}

.feature__item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================================
   按钮样式
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color-2));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn--large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ============================================
   新闻动态区
   ============================================ */
.news__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.news__card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news__date {
    color: var(--accent-color-2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.news__content {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news__link {
    color: var(--accent-color-2);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.news__link:hover {
    color: var(--primary-color);
    gap: 10px;
}

/* ============================================
   媒体画廊
   ============================================ */
.gallery__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery__item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-sm);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(93, 84, 87, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery__overlay i {
    font-size: 3rem;
    color: var(--text-white);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* ============================================
   用户评价区
   ============================================ */
.reviews__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat__item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat__value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat__stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stat__label {
    color: var(--text-light);
    font-size: 1rem;
}

.reviews__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tag__item {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-3));
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviews__slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review__card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.review__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
}

.review__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.review__stars {
    color: #FFB800;
    font-size: 0.9rem;
}

.review__text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review__date {
    color: var(--accent-color-2);
    font-size: 0.85rem;
}

/* ============================================
   游戏攻略
   ============================================ */
.guides__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide__card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.guide__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.guide__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.guide__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guide__description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.guide__meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-color-1);
}

.guide__difficulty,
.guide__recommend {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.guide__recommend {
    color: #FFB800;
}

/* ============================================
   章节介绍
   ============================================ */
.chapters__container {
    display: grid;
    gap: 2rem;
}

.chapter__card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-left: 4px solid var(--accent-color-2);
}

.chapter__card.main-chapter {
    border-left-color: var(--primary-color);
}

.chapter__card.character-chapter {
    border-left-color: var(--accent-color-3);
}

.chapter__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.chapter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.chapter__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.chapter__importance {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color-2);
    font-size: 0.9rem;
    font-weight: 500;
}

.chapter__description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.chapter__details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.chapter__characters,
.chapter__choices {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chapter__mood {
    color: var(--accent-color-2);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   版本历史
   ============================================ */
.versions__timeline {
    display: grid;
    gap: 2rem;
}

.version__card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.version__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.version__badge.current {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: var(--text-white);
}

.version__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.version__number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.version__date {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.version__content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.version__list {
    margin-bottom: 1.5rem;
}

.version__list li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.version__list li i {
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.version__info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.info__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   常见问题
   ============================================ */
.faq__container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq__item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq__question:hover {
    background: var(--bg-light);
}

.faq__question i {
    transition: var(--transition);
    color: var(--accent-color-2);
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 1000px;
}

.faq__answer p,
.faq__answer ul {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq__answer ul {
    padding-left: 3rem;
    padding-bottom: 0.5rem;
}

.faq__answer li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.faq__answer strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   页脚
   ============================================ */
/* ============================================
   页脚
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a4245 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(202, 189, 196, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(163, 158, 176, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer__main {
    position: relative;
    padding: 4rem 0 2rem;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* 关于游戏板块 */
.footer__block--about {
    padding-right: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer__logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.footer__about-text {
    line-height: 1.8;
    opacity: 0.95;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

/* 社交媒体 */
.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(202, 189, 196, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-white);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
    background: var(--accent-color-1);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(202, 189, 196, 0.3);
}

/* 页脚板块 */
.footer__block {
    /* 默认样式 */
}

.footer__title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__title i {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--accent-color-1);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__item {
    list-style: none;
}

.footer__link {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.footer__link i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
    color: var(--accent-color-2);
}

.footer__link:hover {
    color: var(--accent-color-1);
    padding-left: 8px;
}

.footer__link:hover i {
    opacity: 1;
    transform: translateX(3px);
    color: var(--accent-color-1);
}

/* 页脚底部 */
.footer__bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(202, 189, 196, 0.1);
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer__copyright p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer__credit {
    font-size: 0.85rem !important;
    opacity: 0.7 !important;
    color: var(--accent-color-2);
}

.footer__links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer__link-bottom {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__link-bottom:hover {
    color: var(--accent-color-1);
}

.footer__link-bottom i {
    transition: var(--transition);
}

.footer__link-bottom:hover i {
    transform: translateY(-3px);
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer__block:last-child {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    .footer__main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__block--about {
        padding-right: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(202, 189, 196, 0.15);
    }
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__copyright {
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .footer__logo-text {
        font-size: 1.3rem;
    }
    
    .footer__about-text {
        font-size: 0.9rem;
    }
    
    .footer__title {
        font-size: 1rem;
    }
    
    .footer__link {
        font-size: 0.9rem;
    }
}

/* ============================================
   返回顶部按钮
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color-2));
    transform: translateY(-5px);
}

/* ============================================
   页面头部样式（子页面用）
   ============================================ */
.page-header {
    margin-top: var(--header-height);
    background: linear-gradient(135deg, var(--accent-color-1) 0%, var(--accent-color-3) 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.page-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.page-header__title i {
    margin-right: 10px;
}

.page-header__description {
    font-size: 1.1rem;
    color: var(--text-white);
    opacity: 0.95;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-header__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-white);
    opacity: 0.9;
    font-size: 0.95rem;
}

.page-header__breadcrumb a {
    color: var(--text-white);
    transition: var(--transition);
}

.page-header__breadcrumb a:hover {
    opacity: 0.7;
}

/* ============================================
   内容区域样式
   ============================================ */
.content-section {
    background: var(--bg-light);
}

/* FAQ分类 */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category__title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color-2);
}

.faq-category__title i {
    margin-right: 10px;
    color: var(--accent-color-2);
}

/* 支持横幅 */
.support-banner {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    margin-top: 3rem;
}

.support-banner h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-banner h3 i {
    margin-right: 10px;
    color: var(--accent-color-2);
}

.support-banner p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.support-banner__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* ============================================
   用户手册样式
   ============================================ */
.manual-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.manual-toc {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.manual-toc__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color-1);
}

.manual-toc__title i {
    margin-right: 8px;
    color: var(--accent-color-2);
}

.manual-toc__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.manual-toc__list a {
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.manual-toc__list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1rem;
}

.manual-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.manual-section {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.manual-section__title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color-2);
}

.manual-section__title i {
    margin-right: 10px;
    color: var(--accent-color-2);
}

.manual-section__content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.manual-section__content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.manual-section__content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.manual-section__content ul li {
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.manual-section__content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color-2);
    font-weight: bold;
}

.manual-section__content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 步骤样式 */
.manual-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step__content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step__content p {
    margin-bottom: 0;
}

/* 控制按键样式 */
.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.control-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.control-key {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.control-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 提示样式 */
.tip {
    background: #FFF3CD;
    border-left: 4px solid #FFB800;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.tip i {
    color: #FFB800;
    margin-right: 8px;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.tip-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.tip-item i {
    color: #4CAF50;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.tip-item p {
    margin: 0;
}

/* ============================================
   技术支持页面样式
   ============================================ */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-option__card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.support-option__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.support-option__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2.5rem;
}

.support-option__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-option__desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-option__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.support-contact {
    margin-top: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.support-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.support-info__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-info__title i {
    margin-right: 10px;
    color: var(--accent-color-2);
}

.support-info__content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.support-info__content .note {
    color: var(--accent-color-2);
    font-style: italic;
    margin-top: 1rem;
}

.support-tips {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.support-tips__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.support-tips__title i {
    margin-right: 10px;
    color: var(--accent-color-2);
}

/* ============================================
   问题反馈页面样式
   ============================================ */
.feedback-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feedback-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 6px;
    color: var(--accent-color-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color-2);
    box-shadow: 0 0 0 3px rgba(163, 158, 176, 0.1);
}

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

.form-notice {
    background: #E8F4F8;
    border-left: 4px solid #2196F3;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.form-notice i {
    color: #2196F3;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.form-notice p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feedback-tips {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    align-self: start;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.feedback-tips h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feedback-tips h3 i {
    margin-right: 8px;
    color: var(--accent-color-2);
}

.feedback-tips ul {
    list-style: none;
}

.feedback-tips ul li {
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.feedback-tips ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color-2);
    font-weight: bold;
}

.feedback-stats {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.feedback-stats h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.feedback-stats h2 i {
    margin-right: 10px;
    color: var(--accent-color-2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   法律文档页面样式
   ============================================ */
.legal-document {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
}

.document-meta {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.document-meta p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.document-meta p:last-child {
    margin-bottom: 0;
}

.document-section {
    margin-bottom: 3rem;
}

.document-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color-2);
}

.document-section h2 i {
    margin-right: 10px;
    color: var(--accent-color-2);
}

.document-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.document-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.document-section ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.document-section ul li {
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.document-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color-2);
    font-weight: bold;
}

.document-section a {
    color: var(--accent-color-2);
    text-decoration: underline;
}

.document-section a:hover {
    color: var(--primary-color);
}

.document-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.document-section .highlight {
    background: #FFF3CD;
    border-left: 4px solid #FFB800;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.document-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-color-1);
}

.important-notice {
    background: #FFE5E5;
    border-left: 4px solid #F44336;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.important-notice i {
    color: #F44336;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.important-notice strong {
    color: #F44336;
}

.important-notice p {
    margin: 0;
}

.related-links {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.related-links h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.related-links h3 i {
    margin-right: 10px;
    color: var(--accent-color-2);
}

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

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
}

.link-card:hover {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.link-card i {
    font-size: 2rem;
}

.link-card span {
    font-weight: 600;
}

/* ============================================
   文章页面样式
   ============================================ */
.page-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.page-header__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-white);
    opacity: 0.9;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.article-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.article-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color-2);
}

.article-body h2 i {
    margin-right: 10px;
    color: var(--accent-color-2);
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.article-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.8rem;
}

.article-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.article-body blockquote {
    border-left: 4px solid var(--accent-color-2);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-light);
    border-radius: 8px;
    font-style: italic;
    color: var(--text-light);
}

.highlight-box, .info-box {
    background: #E8F4F8;
    border-left: 4px solid #2196F3;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-box h3, .info-box h3 {
    color: #2196F3;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.highlight-box h3 i, .info-box h3 i {
    margin-right: 8px;
}

.download-box {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 2.5rem 0;
}

.download-box h3 {
    color: var(--text-white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.download-box p {
    color: var(--text-white);
    margin-bottom: 2rem;
}

.article-footer-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-color-2);
    font-weight: 600;
    margin-top: 2.5rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 2rem 0;
}

.article-tags .tag {
    background: var(--bg-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.article-tags .tag:hover {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--text-white);
}

.article-share {
    text-align: center;
    margin: 2rem 0;
}

.article-share h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.article-share h4 i {
    margin-right: 8px;
    color: var(--accent-color-2);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    background: var(--bg-white);
    color: var(--primary-color);
    cursor: pointer;
}

.share-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* 侧边栏样式 */
.article-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.sidebar-widget {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--accent-color-1);
}

.widget-title i {
    margin-right: 8px;
    color: var(--accent-color-2);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-posts li {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.recent-posts a {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.recent-posts a:hover,
.recent-posts a.active {
    color: var(--primary-color);
}

.recent-posts span {
    font-size: 0.85rem;
    color: var(--accent-color-2);
}

.btn--block {
    display: block;
    width: 100%;
    text-align: center;
}

.useful-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.useful-links a {
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.useful-links a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1rem;
}

/* ============================================
   响应式设计
   ============================================ */
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-white);
        padding: 4rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

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

    .section {
        padding: 50px 0;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    /* 用户手册响应式 */
    .manual-content {
        grid-template-columns: 1fr;
    }

    .manual-toc {
        position: static;
        margin-bottom: 2rem;
    }

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

    .support-banner {
        padding: 2rem 1.5rem;
    }

    .support-banner h3 {
        font-size: 1.5rem;
    }

    .page-header__title {
        font-size: 2rem;
    }

    /* 技术支持响应式 */
    .support-options {
        grid-template-columns: 1fr;
    }

    /* 反馈表单响应式 */
    .feedback-form-wrapper {
        grid-template-columns: 1fr;
    }

    .feedback-tips {
        position: static;
    }

    .feedback-form {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    /* 法律文档响应式 */
    .legal-document {
        padding: 2rem 1.5rem;
    }

    .document-section h2 {
        font-size: 1.4rem;
    }

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

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

    /* 文章页面响应式 */
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-content {
        padding: 2rem 1.5rem;
    }

    .article-sidebar {
        position: static;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .page-header__meta {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

@media screen and (max-width: 480px) {
    .nav__logo span {
        font-size: 1rem;
    }

    .nav__logo img {
        width: 35px;
        height: 35px;
    }

    .hero__info {
        gap: 0.5rem;
    }

    .info__badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .news__container,
    .gallery__container,
    .reviews__slider,
    .guides__container {
        grid-template-columns: 1fr;
    }

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

    .feature__item i {
        font-size: 1.5rem;
    }

    .feature__item span {
        font-size: 0.85rem;
    }

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

