﻿:root { --primary: rgb(219,39,119); --primary-hover: rgb(190, 20, 90); --primary-light: rgba(219,39,119, 0.1); --text-main: #1f2937; --text-muted: #6b7280; --bg-body: #f4f6f9; --bg-white: #ffffff; --border-color: #e5e7eb; --radius: 8px; --container-width: 1200px; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; color: var(--text-main); background: var(--bg-body); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul, li { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
        
        
        .header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-size: 16px; font-weight: 500; position: relative; padding: 5px 0; }
        .desktop-nav a:hover { color: var(--primary); }
        .btn-download-sm { background: var(--primary); color: #fff !important; padding: 8px 20px; border-radius: 20px; font-weight: bold; }
        .btn-download-sm:hover { background: var(--primary-hover); }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
        .menu-toggle span { width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; }
        .mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: 0.3s; }
        .mobile-drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 999; transition: transform 0.3s; box-shadow: 0 10px 15px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
        .mobile-drawer.active { transform: translateX(300px); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 24px; cursor: pointer; color: var(--text-muted); }
        .drawer-body { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav li { margin-bottom: 15px; border-bottom: 1px dashed var(--border-color); padding-bottom: 10px; }
        .drawer-nav a { display: block; font-size: 16px; font-weight: 500; }

        
        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; margin-top: auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-desc { margin-top: 20px; font-size: 14px; line-height: 1.8; color: #9ca3af; }
        .footer-title { color: #fff; font-size: 18px; font-weight: bold; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
        .footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #9ca3af; font-size: 14px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; font-size: 14px; color: #6b7280; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;}
        .footer-bottom-links a { margin: 0 10px; color: #9ca3af; }

        
        .page-header { background: #fff; padding: 40px 0; border-bottom: 1px solid var(--border-color); margin-bottom: 40px; text-align: center; position: relative; overflow: hidden; }
        .page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary); }
        .breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; display: inline-block; background: var(--bg-body); padding: 5px 15px; border-radius: 20px; }
        .breadcrumb a { color: var(--text-main); }
        .breadcrumb a:hover { color: var(--primary); }
        .page-title { font-size: 32px; font-weight: bold; color: #111; }
        .page-desc { font-size: 16px; color: var(--text-muted); margin-top: 10px; }

        .layout { display: flex; gap: 30px; align-items: flex-start; margin-bottom: 60px; }
        .main-content { flex: 1; min-width: 0; }
        
        .list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
        .list-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: 0.3s; display: flex; flex-direction: column; border: 1px solid transparent; }
        .list-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); border-color: var(--primary-light); }
        .card-img-box { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #eee; }
        .card-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .list-card:hover .card-img-box img { transform: scale(1.05); }
        .card-tag { position: absolute; top: 15px; right: 15px; background: var(--primary); color: #fff; padding: 4px 10px; font-size: 12px; border-radius: 4px; z-index: 2; }
        .card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
        .card-title { font-size: 18px; font-weight: bold; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .card-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .card-meta { display: flex; justify-content: space-between; font-size: 13px; color: #999; border-top: 1px solid var(--border-color); padding-top: 15px; margin-top: auto; }
        .card-meta span { display: flex; align-items: center; gap: 5px; }

        .sidebar { width: 320px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; }
        .widget { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
        .widget-title { font-size: 18px; font-weight: bold; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--bg-body); position: relative; }
        .widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--primary); }
        .side-dl-box { text-align: center; padding: 20px 0; }
        .side-dl-btn { display: inline-block; width: 100%; padding: 12px; background: var(--primary); color: #fff; border-radius: 6px; font-weight: bold; margin-bottom: 10px; }
        .side-dl-btn:hover { background: var(--primary-hover); }

        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 15px; background: #fff; border: 1px solid var(--border-color); border-radius: 4px; color: var(--text-main); font-weight: 500; }
        .pagination a:hover { border-color: var(--primary); color: var(--primary); }
        .pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

        @media (max-width: 992px) {
            .layout { flex-direction: column; }
            .sidebar { width: 100%; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .menu-toggle { display: flex; }
            .list-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-title::after { left: 50%; transform: translateX(-50%); }
            .footer-bottom { flex-direction: column; justify-content: center; }
        }