/* ==================== CSS Variables ==================== */
:root {
    --primary-color: #231921;
    --accent-color-1: #ad6e88;
    --accent-color-2: #7b4498;
    --accent-color-3: #848c84;
    
    --bg-color: #0f0d0e;
    --bg-secondary: #1a171a;
    --bg-tertiary: #2a252a;
    
    --text-color: #f0f0f0;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    --border-color: rgba(173, 110, 136, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.5);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-primary: 'Noto Sans SC', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    --header-height: 70px;
    --section-padding: 80px 0;
}

/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

/* ==================== Typography ==================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    -webkit-text-fill-color: var(--accent-color-1);
    font-size: 2rem;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color-2), var(--accent-color-1));
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: white;
    box-shadow: 0 4px 15px rgba(173, 110, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(173, 110, 136, 0.6);
}

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

/* ==================== Back to Top Button ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px var(--shadow-color);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(173, 110, 136, 0.6);
}

/* ==================== Header ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(35, 25, 33, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px var(--shadow-color);
}

.header .container {
    height: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    flex-shrink: 0;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

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

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0;
    padding: 0;
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--accent-color-1);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--accent-color-1);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(173, 110, 136, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(123, 68, 152, 0.1), transparent 50%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(173, 110, 136, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--accent-color-1);
    transition: var(--transition);
}

.tag:hover {
    background: rgba(173, 110, 136, 0.25);
    transform: translateY(-2px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--accent-color-1);
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-color);
}

.hero-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

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

/* ==================== News Section ==================== */
.news {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.news-card {
    display: flex;
    gap: 20px;
    background: var(--bg-tertiary);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--accent-color-1);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-radius: 10px;
    color: white;
}

.date-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.news-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-link {
    color: var(--accent-color-1);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-link:hover {
    color: var(--accent-color-2);
    gap: 12px;
}

/* ==================== Features Section ==================== */
.features {
    padding: var(--section-padding);
}

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

.feature-card {
    background: var(--bg-tertiary);
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
    border-color: var(--accent-color-1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-radius: 20px;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== Gallery Section ==================== */
.gallery {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 25, 33, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(173, 110, 136, 0.8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

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

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color-1);
    transform: scale(1.1);
}

/* ==================== Reviews Section ==================== */
.reviews {
    padding: var(--section-padding);
}

.reviews-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.rating-overview {
    text-align: center;
}

.rating-score {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 10px;
}

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

.rating-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.rating-tag {
    padding: 10px 20px;
    background: rgba(173, 110, 136, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--accent-color-1);
    font-size: 0.95rem;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

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

.review-card {
    min-width: 100%;
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

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

.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: white;
    font-size: 1.5rem;
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-color: transparent;
    transform: scale(1.1);
}

/* ==================== Guide Section ==================== */
.guide {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.guide-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-color: transparent;
    color: white;
}

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

.guide-card {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--accent-color-1);
}

.guide-difficulty {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.difficulty-easy {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
}

.difficulty-medium {
    background: rgba(255, 159, 64, 0.2);
    color: #ff9f40;
}

.difficulty-hard {
    background: rgba(238, 82, 83, 0.2);
    color: #ee5253;
}

.guide-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.guide-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.guide-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.guide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.guide-meta i {
    color: var(--accent-color-1);
}

/* ==================== Chapters Section ==================== */
.chapters {
    padding: var(--section-padding);
}

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

.chapter-card {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.chapter-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--accent-color-1);
}

.chapter-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.chapter-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color-1);
}

.chapter-badge {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.main-chapter .chapter-badge {
    background: rgba(173, 110, 136, 0.2);
    color: var(--accent-color-1);
}

.chapter-badge.important {
    background: rgba(238, 82, 83, 0.2);
    color: #ee5253;
}

.character-chapter .chapter-badge {
    background: rgba(123, 68, 152, 0.2);
    color: var(--accent-color-2);
}

.chapter-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.chapter-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.chapter-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.chapter-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.chapter-meta i {
    color: var(--accent-color-1);
}

.chapter-mood {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chapter-mood i {
    color: var(--accent-color-2);
}

/* ==================== Version History Section ==================== */
.version-history {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.version-item {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.version-item:hover {
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--accent-color-1);
}

.version-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.version-badge.current {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: white;
}

.version-item:not(:has(.current)) .version-badge {
    background: rgba(132, 140, 132, 0.2);
    color: var(--accent-color-3);
}

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

.version-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.version-date {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.version-content h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.version-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.version-content li {
    color: var(--text-secondary);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.version-content li i {
    color: #2ed573;
    font-size: 0.9rem;
}

.version-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.version-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.version-meta i {
    color: var(--accent-color-1);
}

/* ==================== FAQ Section ==================== */
.faq {
    padding: var(--section-padding);
}

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

.faq-item {
    background: var(--bg-tertiary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-color-1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--accent-color-1);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--accent-color-1);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--primary-color);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color-1);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color-1);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

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

.footer-disclaimer {
    font-size: 0.9rem;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 992px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .nav-list {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(35, 25, 33, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 5px;
        margin: 0;
        transition: left 0.4s ease;
        overflow-y: auto;
        z-index: 998;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-radius: 10px;
        transition: var(--transition);
    }
    
    .nav-list a:hover {
        background: rgba(173, 110, 136, 0.2);
    }
    
    .nav-list a::after {
        display: none;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .features-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-stats {
        flex-direction: column;
        padding: 30px;
    }
    
    .rating-tags {
        justify-content: center;
    }
    
    .guide-filter {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ==================== Page Header (for subpages) ==================== */
.page-header {
    padding: calc(var(--header-height) + 80px) 0 80px;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(173, 110, 136, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(123, 68, 152, 0.1), transparent 50%);
    z-index: 0;
}

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

.page-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-radius: 50%;
    font-size: 3rem;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--accent-color-1);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

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

.breadcrumb .separator {
    color: var(--text-muted);
}

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

/* ==================== Page Content Styles ==================== */
.page-content {
    padding: var(--section-padding);
    min-height: 60vh;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 30px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.legal-meta p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.legal-intro {
    margin-bottom: 40px;
}

.legal-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h2 i {
    color: var(--accent-color-1);
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 25px 0 15px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0 20px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--accent-color-1);
}

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

.legal-section a:hover {
    color: var(--accent-color-2);
}

.legal-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.update-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.acceptance-note {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.related-links h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.link-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.link-grid a:hover {
    background: rgba(173, 110, 136, 0.1);
    border-color: var(--accent-color-1);
    color: var(--accent-color-1);
    transform: translateY(-2px);
}

/* Info Boxes */
.info-box,
.warning-box {
    padding: 20px 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid;
}

.info-box {
    background: rgba(46, 213, 115, 0.1);
    border-color: #2ed573;
}

.info-box i {
    color: #2ed573;
    font-size: 1.2rem;
    margin-right: 10px;
}

.warning-box {
    background: rgba(255, 159, 64, 0.1);
    border-color: #ff9f40;
}

.warning-box i {
    color: #ff9f40;
    font-size: 1.2rem;
    margin-right: 10px;
}

.info-box p,
.warning-box p {
    margin: 0;
    color: var(--text-color);
}

.info-box ul,
.warning-box ul {
    margin: 10px 0 0 20px;
}

/* Contact Info */
.contact-info {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color-1);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-color);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Section Blocks */
.section-block {
    margin-bottom: 50px;
}

.section-block h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-block h2 i {
    color: var(--accent-color-1);
}

/* Helper Button Styles */
.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(173, 110, 136, 0.2);
    border-color: var(--accent-color-1);
    color: var(--accent-color-1);
}

/* Help Box */
.help-box {
    text-align: center;
    padding: 50px 30px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-top: 50px;
}

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

.help-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.help-box p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.help-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--accent-color-1);
}

.required {
    color: #ee5253;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color-1);
    box-shadow: 0 0 0 3px rgba(173, 110, 136, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-success {
    text-align: center;
    padding: 50px 30px;
    background: rgba(46, 213, 115, 0.1);
    border: 2px solid #2ed573;
    border-radius: 15px;
}

.success-icon {
    font-size: 4rem;
    color: #2ed573;
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-header {
        padding: calc(var(--header-height) + 50px) 0 50px;
    }
    
    .page-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .link-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* ==================== News/Article Pages ==================== */
.news-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.news-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.sidebar-widget {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h3 i {
    color: var(--accent-color-1);
}

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

.category-list li {
    margin-bottom: 5px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background: rgba(173, 110, 136, 0.15);
    color: var(--accent-color-1);
}

.category-list span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.popular-posts {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.popular-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-posts a {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-title {
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.4;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-posts a:hover .post-title {
    color: var(--accent-color-1);
}

.download-widget {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border: none;
    text-align: center;
}

.download-widget h3,
.download-widget p {
    color: white;
}

.download-widget .btn {
    margin-top: 15px;
    background: white;
    color: var(--accent-color-1);
}

.download-widget .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

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

.news-article {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
}

.news-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--accent-color-1);
}

.news-article.featured {
    border: 2px solid var(--accent-color-1);
}

.article-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-header {
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.category {
    color: var(--accent-color-1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.article-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.article-title a {
    color: var(--text-color);
    transition: var(--transition);
}

.article-title a:hover {
    color: var(--accent-color-1);
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color-1);
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color-2);
    gap: 12px;
}

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

.page-btn {
    width: 45px;
    height: 45px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-color: transparent;
    color: white;
}

/* Article Detail Page */
.article-header-bg {
    background: linear-gradient(135deg, rgba(173, 110, 136, 0.1), rgba(123, 68, 152, 0.1));
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(173, 110, 136, 0.2);
    border-radius: 20px;
    color: var(--accent-color-1);
    font-weight: 600;
    margin-bottom: 20px;
}

.article-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--accent-color-1);
}

.article-content-section {
    padding: var(--section-padding);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.article-main {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
}

.article-body {
    color: var(--text-secondary);
    line-height: 1.9;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(173, 110, 136, 0.1);
    border-left: 4px solid var(--accent-color-1);
    border-radius: 5px;
}

.article-body h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-body h2 i {
    color: var(--accent-color-1);
}

.article-body h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 30px 0 15px;
}

.article-body ul,
.article-body ol {
    margin: 15px 0 25px 25px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body strong {
    color: var(--accent-color-1);
}

.info-highlight,
.tip-box,
.warning-box {
    display: flex;
    gap: 20px;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.info-highlight {
    background: rgba(46, 213, 115, 0.1);
    border-left: 4px solid #2ed573;
}

.tip-box {
    background: rgba(255, 159, 64, 0.1);
    border-left: 4px solid #ff9f40;
}

.warning-box {
    background: rgba(238, 82, 83, 0.1);
    border-left: 4px solid #ee5253;
}

.info-highlight i {
    font-size: 2rem;
    color: #2ed573;
    flex-shrink: 0;
}

.tip-box i {
    font-size: 2rem;
    color: #ff9f40;
    flex-shrink: 0;
}

.warning-box i {
    font-size: 2rem;
    color: #ee5253;
    flex-shrink: 0;
}

.info-highlight h4,
.tip-box h4,
.warning-box h4 {
    color: var(--text-color);
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.info-highlight p,
.tip-box p,
.warning-box p {
    margin: 0;
    color: var(--text-secondary);
}

.system-requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 25px 0;
}

.requirement-col {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.requirement-col h4 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.requirement-col ul {
    list-style: none;
    margin: 0;
}

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

.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tags i {
    color: var(--accent-color-1);
}

.article-tags a {
    padding: 6px 15px;
    background: rgba(173, 110, 136, 0.15);
    border-radius: 15px;
    color: var(--accent-color-1);
    font-size: 0.9rem;
    transition: var(--transition);
}

.article-tags a:hover {
    background: var(--accent-color-1);
    color: white;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-share span {
    color: var(--text-secondary);
    margin-right: 5px;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--accent-color-1);
    color: white;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-link:hover {
    border-color: var(--accent-color-1);
    color: var(--accent-color-1);
}

.nav-link.next {
    justify-content: flex-end;
    text-align: right;
}

.article-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

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

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.toc-list a:hover {
    background: rgba(173, 110, 136, 0.1);
    color: var(--accent-color-1);
}

.toc-list i {
    font-size: 0.85rem;
}

.related-posts {
    list-style: none;
}

.related-posts li {
    margin-bottom: 12px;
}

.related-posts a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.related-posts a:hover {
    color: var(--accent-color-1);
}

.btn-block {
    width: 100%;
}

@media (max-width: 992px) {
    .news-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .news-sidebar,
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .system-requirements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-main {
        padding: 25px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .nav-link.next {
        text-align: left;
        justify-content: flex-start;
    }
}

