* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f0eb;
            color: #2c2c2c;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b84a62;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8a2e42;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #f5c842;
            text-shadow: 0 2px 12px rgba(245, 200, 66, 0.3);
            letter-spacing: 1px;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo i {
            margin-right: 8px;
            color: #e94560;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e0e0e0;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        .nav-menu a:hover {
            color: #f5c842;
            border-bottom-color: #f5c842;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #e8e0d8;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #d6ccc4;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #888;
        }
        .breadcrumb a {
            color: #7a5c4a;
        }
        .breadcrumb a:hover {
            color: #b84a62;
        }
        .breadcrumb .current {
            color: #3a2a1e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d1b2e, #1a1a2e, #0f3460);
            padding: 60px 0 50px;
            text-align: center;
            color: #fff;
            border-bottom: 4px solid #f5c842;
        }
        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: 1px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .hero h1 i {
            color: #f5c842;
            margin-right: 12px;
        }
        .hero p {
            font-size: 18px;
            max-width: 750px;
            margin: 0 auto 20px;
            opacity: 0.9;
            color: #e0d6cc;
        }
        .hero .update-badge {
            display: inline-block;
            background: rgba(245, 200, 66, 0.2);
            padding: 8px 24px;
            border-radius: 30px;
            font-size: 14px;
            color: #f5c842;
            border: 1px solid rgba(245, 200, 66, 0.3);
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #e0d6cc;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #b84a62;
        }
        .search-form input {
            flex: 1;
            padding: 14px 24px;
            border: none;
            outline: none;
            font-size: 16px;
            background: transparent;
            color: #2c2c2c;
        }
        .search-form button {
            background: #b84a62;
            color: #fff;
            border: none;
            padding: 14px 30px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #8a2e42;
        }
        main {
            padding: 50px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-area article {
            background: #fff;
            padding: 36px 40px;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }
        .content-area h2 {
            font-size: 30px;
            color: #1a1a2e;
            margin: 40px 0 16px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f5c842;
            font-weight: 700;
        }
        .content-area h2:first-child {
            margin-top: 0;
        }
        .content-area h2 i {
            color: #b84a62;
            margin-right: 10px;
        }
        .content-area h3 {
            font-size: 22px;
            color: #2d1b2e;
            margin: 28px 0 12px;
            font-weight: 600;
        }
        .content-area h3 i {
            color: #e94560;
            margin-right: 8px;
        }
        .content-area h4 {
            font-size: 18px;
            color: #3a2a1e;
            margin: 20px 0 8px;
            font-weight: 600;
        }
        .content-area p {
            margin-bottom: 16px;
            color: #3a3a3a;
        }
        .content-area ul,
        .content-area ol {
            margin: 12px 0 20px 24px;
            color: #3a3a3a;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .content-area .feature-box {
            background: #f9f5f0;
            padding: 20px 24px;
            border-left: 4px solid #f5c842;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .content-area .feature-box strong {
            color: #b84a62;
        }
        .content-area .emoji-big {
            font-size: 28px;
            margin-right: 8px;
        }
        .content-img-wrapper {
            margin: 24px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .content-img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        .content-img-wrapper .img-caption {
            background: #f0e8e0;
            padding: 10px 16px;
            font-size: 14px;
            color: #5a4a3a;
            text-align: center;
            font-style: italic;
        }
        .btn {
            display: inline-block;
            background: #b84a62;
            color: #fff;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-size: 15px;
        }
        .btn:hover {
            background: #8a2e42;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 74, 98, 0.3);
            text-decoration: none;
            color: #fff;
        }
        .btn i {
            margin-right: 8px;
        }
        .link-list {
            list-style: none;
            margin: 16px 0 !important;
            padding: 0 !important;
        }
        .link-list li {
            padding: 6px 0;
            border-bottom: 1px dashed #e0d6cc;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .link-list li i {
            color: #b84a62;
            width: 20px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-card {
            background: #fff;
            padding: 24px 22px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .sidebar-card h3 {
            font-size: 18px;
            color: #1a1a2e;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f5c842;
            font-weight: 700;
        }
        .sidebar-card h3 i {
            color: #e94560;
            margin-right: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            padding: 8px 0;
            border-bottom: 1px solid #f0e8e0;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card li a {
            color: #4a3a2a;
            font-weight: 500;
            display: block;
            transition: all 0.2s;
        }
        .sidebar-card li a:hover {
            color: #b84a62;
            padding-left: 4px;
            text-decoration: none;
        }
        .sidebar-card li a i {
            color: #b84a62;
            margin-right: 8px;
            width: 18px;
        }
        .rating-section {
            background: #fff;
            padding: 24px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-top: 30px;
        }
        .rating-section h3 {
            font-size: 20px;
            color: #1a1a2e;
            margin-bottom: 16px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 32px;
            color: #ccc;
            cursor: pointer;
            margin: 12px 0;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5c842;
            transform: scale(1.1);
        }
        .rating-stars i.selected {
            color: #f5c842;
        }
        .rating-form button {
            margin-top: 8px;
        }
        .rating-average {
            font-size: 16px;
            color: #5a4a3a;
            margin-bottom: 8px;
        }
        .rating-average strong {
            color: #b84a62;
            font-size: 20px;
        }
        .comments-section {
            background: #fff;
            padding: 30px 36px;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            margin-top: 40px;
        }
        .comments-section h2 {
            font-size: 26px;
            color: #1a1a2e;
            margin-bottom: 20px;
            border-bottom: 3px solid #f5c842;
            padding-bottom: 10px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0d6cc;
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border-color 0.3s;
            background: #faf8f6;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #b84a62;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #e0d6cc;
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            margin: 10px 0;
            background: #faf8f6;
            transition: border-color 0.3s;
        }
        .comment-form input[type="text"]:focus {
            outline: none;
            border-color: #b84a62;
        }
        .comment-form .btn {
            margin-top: 10px;
        }
        .comment-item {
            padding: 18px 0;
            border-bottom: 1px solid #f0e8e0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .comment-author {
            font-weight: 700;
            color: #1a1a2e;
        }
        .comment-item .comment-date {
            font-size: 13px;
            color: #888;
            margin-left: 12px;
        }
        .comment-item .comment-text {
            margin-top: 6px;
            color: #3a3a3a;
        }
        friend-link {
            display: block;
            padding: 30px 0;
            border-top: 1px solid #e0d6cc;
            margin-top: 40px;
        }
        friend-link h3 {
            font-size: 20px;
            color: #1a1a2e;
            margin-bottom: 16px;
            font-weight: 700;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 0;
            margin: 0;
        }
        friend-link li a {
            color: #4a3a2a;
            font-weight: 500;
            transition: color 0.2s;
        }
        friend-link li a:hover {
            color: #b84a62;
            text-decoration: none;
        }
        friend-link li a i {
            margin-right: 6px;
            color: #b84a62;
        }
        footer {
            background: #1a1a2e;
            color: #c0b8b0;
            padding: 40px 0 30px;
            font-size: 14px;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        footer a {
            color: #e0d6cc;
        }
        footer a:hover {
            color: #f5c842;
        }
        footer .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 24px;
            width: 100%;
            font-size: 13px;
            color: #8a7a6a;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 30px;
            }
            .content-area article {
                padding: 24px 20px;
            }
            .comments-section {
                padding: 20px 18px;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 16px 0 8px;
                background: rgba(0, 0, 0, 0.2);
                border-radius: 12px;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 16px;
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .nav-menu a:last-child {
                border-bottom: none;
            }
            .hero h1 {
                font-size: 26px;
            }
            .hero p {
                font-size: 16px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
                border: 2px solid #e0d6cc;
            }
            .search-form input {
                border-radius: 0;
                padding: 12px 18px;
            }
            .search-form button {
                border-radius: 0;
                padding: 12px 18px;
            }
            .breadcrumb ol {
                font-size: 13px;
            }
            .content-area h2 {
                font-size: 24px;
            }
            .content-area h3 {
                font-size: 19px;
            }
            .rating-stars {
                font-size: 26px;
            }
            friend-link ul {
                flex-direction: column;
                gap: 8px;
            }
            footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .my-logo {
                font-size: 22px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero {
                padding: 36px 0 30px;
            }
            .hero h1 {
                font-size: 22px;
            }
            .content-area article {
                padding: 16px 14px;
            }
            .sidebar-card {
                padding: 16px 14px;
            }
            .comments-section {
                padding: 14px 12px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .highlight {
            background: #fef9e7;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #e94560;
            color: #fff;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }
        .text-muted {
            color: #8a7a6a;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
