:root {
    --primary: #2c2224;
    --secondary1: #d8b0a8;
    --secondary2: #a08080;
    --secondary3: #c86878;
    --bg-light: #faf5f3;
    --bg-card: #ffffff;
    --text-primary: #2c2224;
    --text-secondary: #6b5a5e;
    --text-light: #f5eded;
    --gradient-hero: linear-gradient(135deg, #2c2224 0%, #4a2e35 50%, #3d2630 100%);
    --gradient-accent: linear-gradient(135deg, #c86878, #d8b0a8);
    --shadow-sm: 0 2px 8px rgba(44, 34, 36, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 34, 36, 0.12);
    --shadow-lg: 0 8px 40px rgba(44, 34, 36, 0.18);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: #b05060;
}

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

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

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(44, 34, 36, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(216, 176, 168, 0.15);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo:hover {
    color: var(--secondary1);
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.main-nav {
    display: flex;
    gap: 4px;
}

.main-nav a {
    color: var(--text-light);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover {
    background: rgba(216, 176, 168, 0.15);
    color: var(--secondary1);
}

.main-nav a i {
    margin-right: 4px;
    font-size: 0.85rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
}

/* ========== HERO ========== */
.hero {
    background: var(--gradient-hero);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 104, 120, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(216, 176, 168, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.hero-sub {
    display: block;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--secondary1);
    letter-spacing: 3px;
    margin-top: 4px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 16px auto 20px;
    line-height: 1.8;
}

.hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(216, 176, 168, 0.3);
    color: var(--secondary1);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero-meta i {
    margin-right: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(200, 104, 120, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 104, 120, 0.5);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: var(--radius-sm);
}

.btn-sm:hover {
    color: #fff;
    box-shadow: 0 2px 10px rgba(200, 104, 120, 0.3);
}

.btn-download {
    font-size: 1.1rem;
    padding: 14px 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-item i {
    font-size: 1.6rem;
    color: var(--secondary3);
    background: rgba(200, 104, 120, 0.15);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(200, 104, 120, 0.3);
}

/* ========== SECTIONS ========== */
.section {
    padding: 70px 0;
}

.section:nth-child(even) {
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-title i {
    margin-right: 8px;
    color: var(--secondary3);
}

/* ========== NEWS ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(160, 128, 128, 0.1);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-date {
    color: var(--secondary2);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.news-date i {
    margin-right: 4px;
}

.news-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.news-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.news-link {
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-link:hover i {
    transform: translateX(3px);
}

.news-link i {
    transition: transform var(--transition);
}

/* ========== GALLERY ========== */
.gallery {
    background: var(--primary) !important;
}

.gallery .section-title {
    color: #fff;
}

.gallery .section-title i {
    color: var(--secondary1);
}

.gallery .section-title::after {
    background: var(--secondary1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, 0.05);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 34, 36, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ========== REVIEWS ========== */
.reviews-summary {
    text-align: center;
    margin-bottom: 40px;
}

.rating-big {
    margin-bottom: 8px;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary3);
}

.rating-total {
    font-size: 1.2rem;
    color: var(--secondary2);
}

.rating-stars {
    color: #f5a623;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.rating-stars i {
    margin: 0 2px;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.review-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.review-tag {
    background: rgba(200, 104, 120, 0.1);
    color: var(--secondary3);
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    border: 1px solid rgba(200, 104, 120, 0.2);
}

.reviews-carousel {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(160, 128, 128, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    font-size: 2.4rem;
    color: var(--secondary2);
}

.review-name {
    font-weight: 600;
    font-size: 1rem;
}

.review-stars {
    color: #f5a623;
    font-size: 0.85rem;
}

.review-stars i {
    margin-right: 2px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    background: rgba(200, 104, 120, 0.1);
    border: 1px solid rgba(200, 104, 120, 0.2);
    color: var(--secondary3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-btn:hover {
    background: var(--secondary3);
    color: #fff;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(160, 128, 128, 0.3);
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dot.active {
    background: var(--secondary3);
    transform: scale(1.2);
}

/* ========== VERSIONS / TIMELINE ========== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(160, 128, 128, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondary2);
    border: 3px solid var(--bg-light);
}

.timeline-marker.current {
    background: var(--secondary3);
    box-shadow: 0 0 0 4px rgba(200, 104, 120, 0.2);
}

.timeline-content {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(160, 128, 128, 0.1);
}

.version-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.version-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
}

.version-badge {
    background: var(--secondary3);
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.version-date {
    color: var(--secondary2);
    font-size: 0.85rem;
}

.version-changes {
    list-style: none;
    margin-bottom: 12px;
}

.version-changes li {
    padding: 3px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.version-changes li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--secondary3);
    font-weight: bold;
}

.version-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(160, 128, 128, 0.1);
    color: var(--secondary2);
    font-size: 0.85rem;
}

/* ========== GUIDES ========== */
.guide-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(160, 128, 128, 0.3);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary3);
    color: #fff;
    border-color: var(--secondary3);
}

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

.guide-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(160, 128, 128, 0.1);
    transition: all var(--transition);
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.guide-card.hidden {
    display: none;
}

.guide-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200, 104, 120, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--secondary3);
    font-size: 1.2rem;
}

.guide-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.guide-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--secondary2);
}

.guide-difficulty i,
.guide-recommend i {
    margin-right: 4px;
}

/* ========== CHAPTERS ========== */
.chapters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.chapter-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(160, 128, 128, 0.1);
    position: relative;
    transition: all var(--transition);
}

.chapter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.chapter-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--secondary3);
    color: #fff;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.chapter-badge.special {
    background: var(--secondary2);
}

.chapter-number {
    color: var(--secondary2);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.chapter-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.chapter-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.chapter-info {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
    color: var(--secondary2);
    margin-bottom: 10px;
}

.chapter-info i {
    margin-right: 4px;
}

.chapter-mood {
    font-size: 0.82rem;
    color: var(--secondary3);
    font-weight: 500;
}

.chapter-mood i {
    margin-right: 4px;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(160, 128, 128, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(200, 104, 120, 0.04);
}

.faq-icon {
    color: var(--secondary3);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 18px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(216, 176, 168, 0.15);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary1);
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--secondary1);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-legal {
    margin-top: 6px;
    font-size: 0.8rem;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary3);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(200, 104, 120, 0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 104, 120, 0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(44, 34, 36, 0.98);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        border-bottom: 1px solid rgba(216, 176, 168, 0.15);
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-features {
        gap: 20px;
    }

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

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

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

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

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

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .review-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-tags {
        gap: 6px;
    }

    .tag {
        padding: 4px 12px;
        font-size: 0.8rem;
    }

    .btn-download {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .hero-features {
        gap: 16px;
    }

    .feature-item i {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .feature-item {
        font-size: 0.82rem;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.92rem;
    }

    .faq-answer p {
        padding: 0 16px 14px;
    }
}
