* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f8f7f4;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 18px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #f5e6c8;
            letter-spacing: 1px;
            text-shadow: 2px 2px 0 #b8860b;
        }
        .my-logo i {
            color: #ffd700;
            margin-right: 8px;
        }
        .my-logo:hover {
            color: #ffd700;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5e6c8;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 12px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav ul li a {
            color: #e0d6c8;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 16px;
            transition: background 0.3s, color 0.3s;
        }
        .main-nav ul li a:hover {
            background: #b8860b;
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            background: #ece8e0;
            padding: 12px 0;
            font-size: 15px;
            border-bottom: 1px solid #d6cec0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin: 0 10px;
            color: #8a7e6e;
        }
        .breadcrumb a {
            color: #6a5e4e;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #3e3528;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d2a24 0%, #4a3f32 100%);
            color: #f5ece0;
            padding: 60px 0 48px;
            text-align: center;
            border-bottom: 4px solid #b8860b;
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 900;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
        }
        .hero h1 i {
            color: #ffd700;
        }
        .hero p {
            font-size: 20px;
            max-width: 720px;
            margin: 0 auto 24px;
            opacity: 0.9;
        }
        .hero .update-badge {
            display: inline-block;
            background: #b8860b;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            color: #fff;
        }
        .search-section {
            background: #fff;
            padding: 32px 0;
            border-bottom: 1px solid #e0d8cc;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            gap: 12px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #d6cec0;
            border-radius: 40px;
            font-size: 16px;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #9a7209;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
            padding: 48px 0;
        }
        .main-content {
            background: #fff;
            padding: 40px 40px 56px;
            border-radius: 16px;
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
        }
        .main-content h2 {
            font-size: 32px;
            margin: 48px 0 16px;
            color: #1a1a2e;
            border-left: 6px solid #b8860b;
            padding-left: 18px;
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 24px;
            margin: 36px 0 12px;
            color: #2d2a24;
        }
        .main-content h4 {
            font-size: 20px;
            margin: 24px 0 10px;
            color: #4a3f32;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 18px;
        }
        .main-content ul,
        .main-content ol {
            margin: 16px 0 24px 28px;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .feature-img {
            margin: 32px 0;
            border-radius: 14px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
        }
        .main-content .highlight-box {
            background: #faf6ef;
            border-left: 6px solid #b8860b;
            padding: 24px 28px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }
        .main-content .highlight-box strong {
            color: #8b6508;
        }
        .main-content .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 28px 0;
        }
        .main-content .stat-card {
            background: #f4f0ea;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }
        .main-content .stat-card .num {
            font-size: 32px;
            font-weight: 800;
            color: #b8860b;
        }
        .main-content .stat-card .label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #6a5e4e;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .sidebar .card {
            background: #fff;
            padding: 28px 24px;
            border-radius: 14px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
        }
        .sidebar .card h3 {
            font-size: 20px;
            margin-bottom: 16px;
            color: #1a1a2e;
            border-bottom: 2px solid #ece8e0;
            padding-bottom: 10px;
        }
        .sidebar .card ul {
            list-style: none;
        }
        .sidebar .card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0ece4;
        }
        .sidebar .card ul li a {
            font-weight: 500;
        }
        .rating-area {
            background: #faf6ef;
            padding: 24px 28px;
            border-radius: 14px;
            margin: 40px 0 32px;
        }
        .rating-area .stars {
            display: flex;
            gap: 6px;
            font-size: 32px;
            color: #d6cec0;
            cursor: pointer;
            margin: 12px 0;
        }
        .rating-area .stars i.active {
            color: #ffd700;
        }
        .rating-area .stars i:hover {
            color: #ffcd3c;
        }
        .rating-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 8px;
        }
        .rating-form button:hover {
            background: #9a7209;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #d6cec0;
            border-radius: 12px;
            font-size: 16px;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #b8860b;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #d6cec0;
            border-radius: 12px;
            font-size: 16px;
            outline: none;
            transition: border 0.3s;
            margin-bottom: 12px;
        }
        .comment-form input[type="text"]:focus {
            border-color: #b8860b;
        }
        .comment-form button {
            background: #1a1a2e;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #2d2a53;
        }
        .site-footer {
            background: #1a1a2e;
            color: #cdc6b8;
            padding: 48px 0 32px;
            border-top: 4px solid #b8860b;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .site-footer h4 {
            color: #f5e6c8;
            font-size: 18px;
            margin-bottom: 14px;
        }
        .site-footer a {
            color: #b8a88a;
        }
        .site-footer a:hover {
            color: #ffd700;
        }
        .site-footer ul {
            list-style: none;
        }
        .site-footer ul li {
            padding: 4px 0;
        }
        .friend-link {
            display: block;
            padding: 12px 0;
            border-top: 1px solid #2d2a44;
            margin-top: 12px;
        }
        .friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #2d2a44;
            font-size: 14px;
            color: #8a7e6e;
        }
        @media (max-width: 992px) {
            .content-wrap {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .sidebar {
                order: 2;
            }
            .hero h1 {
                font-size: 36px;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 16px;
            }
            .main-nav.open {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav ul li a {
                display: block;
                padding: 12px 16px;
                border-bottom: 1px solid #2d2a44;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 28px;
            }
            .hero p {
                font-size: 17px;
            }
            .main-content {
                padding: 24px 18px 36px;
            }
            .main-content h2 {
                font-size: 26px;
            }
            .main-content h3 {
                font-size: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .my-logo {
                font-size: 22px;
            }
            .rating-area .stars {
                font-size: 28px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero {
                padding: 36px 0 28px;
            }
            .hero h1 {
                font-size: 22px;
            }
            .breadcrumb {
                font-size: 13px;
            }
            .main-content h2 {
                font-size: 22px;
            }
            .main-content .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #b8860b;
            color: #fff;
        }
