* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f5f6fa;
            color: #2d3436;
            line-height: 1.75;
        }
        a {
            color: #e17055;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #d63031;
            text-decoration: underline;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #e17055;
            letter-spacing: -1px;
            text-transform: uppercase;
            text-decoration: none;
            padding: 8px 0;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #d63031;
        }
        header {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 24px;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 0.92rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background: #ffeaa7;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 8px;
        }
        .hamburger span {
            width: 26px;
            height: 3px;
            background: #2d3436;
            border-radius: 4px;
            transition: 0.3s;
        }
        .breadcrumb {
            max-width: 1280px;
            margin: 0 auto;
            padding: 14px 24px;
            font-size: 0.85rem;
            color: #636e72;
            border-bottom: 1px solid #eee;
            background: #fff;
        }
        .breadcrumb a {
            color: #e17055;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 24px;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 32px;
        }
        .main-content {
            background: #fff;
            border-radius: 16px;
            padding: 36px;
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
        }
        .sidebar-widget h3 {
            font-size: 1.1rem;
            margin-bottom: 14px;
            color: #2d3436;
            border-left: 4px solid #e17055;
            padding-left: 12px;
        }
        .sidebar-widget ul {
            list-style: none;
        }
        .sidebar-widget li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar-widget li::before {
            content: "\f138";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #e17055;
            font-size: 0.8rem;
        }
        .search-box {
            display: flex;
            gap: 0;
            margin-bottom: 20px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-box input:focus {
            border-color: #e17055;
        }
        .search-box button {
            background: #e17055;
            color: #fff;
            border: none;
            padding: 0 18px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #d63031;
        }
        h1 {
            font-size: 2.2rem;
            line-height: 1.3;
            color: #2d3436;
            margin-bottom: 10px;
        }
        h2 {
            font-size: 1.6rem;
            margin-top: 40px;
            margin-bottom: 16px;
            color: #2d3436;
            border-bottom: 2px solid #ffeaa7;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.25rem;
            margin-top: 24px;
            margin-bottom: 10px;
            color: #2d3436;
        }
        h4 {
            font-size: 1.05rem;
            margin-top: 16px;
            color: #636e72;
            font-weight: 700;
        }
        p {
            margin-bottom: 16px;
            font-size: 0.95rem;
        }
        .update-time {
            color: #636e72;
            font-size: 0.85rem;
            margin-bottom: 24px;
            padding: 8px 14px;
            background: #fff3e0;
            border-radius: 8px;
            display: inline-block;
        }
        .featured-image {
            margin: 28px 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #636e72;
            margin-top: 8px;
        }
        blockquote {
            background: #fff3e0;
            border-left: 4px solid #e17055;
            padding: 16px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        .tip-box {
            background: #e8f8f5;
            border-left: 4px solid #1abc9c;
            padding: 16px 20px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .warning-box {
            background: #fce4ec;
            border-left: 4px solid #e74c3c;
            padding: 16px 20px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 18px 14px;
            text-align: center;
            border: 1px solid #eee;
        }
        .stat-card .stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: #e17055;
        }
        .stat-card .stat-label {
            font-size: 0.8rem;
            color: #636e72;
            margin-top: 4px;
        }
        .review-section, .comment-section, .score-section {
            margin-top: 40px;
            padding-top: 32px;
            border-top: 2px solid #f0f0f0;
        }
        .rating-stars {
            font-size: 1.6rem;
            color: #ffd700;
            cursor: pointer;
            display: inline-block;
        }
        .rating-stars i {
            margin-right: 4px;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 10px;
            min-height: 100px;
            font-size: 0.9rem;
            resize: vertical;
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 0.9rem;
            margin-bottom: 12px;
            outline: none;
        }
        .btn-primary {
            background: #e17055;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn-primary:hover {
            background: #d63031;
        }
        footer {
            background: #2d3436;
            color: #b2bec3;
            padding: 48px 24px 24px;
            margin-top: 60px;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
        }
        .footer-inner h4 {
            color: #fff;
            margin-bottom: 14px;
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner li {
            margin-bottom: 8px;
        }
        .footer-inner a {
            color: #b2bec3;
            font-size: 0.9rem;
        }
        .footer-inner a:hover {
            color: #ffeaa7;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 32px;
            font-size: 0.85rem;
        }
        friend-link {
            display: block;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #ffeaa7;
        }
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                padding: 16px;
            }
            .main-content {
                padding: 20px;
            }
            .header-inner {
                flex-wrap: wrap;
                gap: 10px;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 10px 0;
                gap: 6px;
            }
            .nav-links.show {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .main-content {
                padding: 16px;
                border-radius: 10px;
            }
        }
