* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0c0b0f;
            color: #f0ede8;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f0b27a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd5a8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1520 0%, #0f0c14 100%);
            border-bottom: 2px solid #2f2840;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0b27a, #d4a373);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 178, 122, 0.15);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0b27a;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3f3450;
            color: #f0ede8;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2f2840;
        }
        nav#main-nav ul {
            display: flex;
            gap: 10px 22px;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }
        nav#main-nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            color: #cfc8de;
        }
        nav#main-nav a:hover {
            border-bottom-color: #f0b27a;
            color: #fff;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #9a8fae;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #b8a9d0;
        }
        .breadcrumb span {
            color: #f0b27a;
        }
        main {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fce6c9, #f0b27a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #f5dbb8;
            border-left: 5px solid #f0b27a;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #e8d5c0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 22px 0 10px;
            color: #dac9b8;
        }
        p {
            margin-bottom: 18px;
            color: #ddd8e6;
        }
        .content-img {
            margin: 28px 0 32px;
            border-radius: 14px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
        }
        .search-section {
            background: #1a1525;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 36px 0 40px;
            border: 1px solid #2f2840;
        }
        .search-section h2 {
            margin-top: 0;
            border-left-color: #d4a373;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border-radius: 10px;
            border: 1px solid #3f3450;
            background: #0f0c14;
            color: #f0ede8;
            font-size: 1rem;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #f0b27a;
            box-shadow: 0 0 0 3px rgba(240, 178, 122, 0.2);
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: 10px;
            background: linear-gradient(135deg, #f0b27a, #d4895a);
            color: #0c0b0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(240, 178, 122, 0.3);
        }
        .comments-section {
            background: #1a1525;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 40px 0;
            border: 1px solid #2f2840;
        }
        .comments-section h2 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 18px;
            border-radius: 10px;
            border: 1px solid #3f3450;
            background: #0f0c14;
            color: #f0ede8;
            font-size: 1rem;
            min-height: 110px;
            resize: vertical;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #f0b27a;
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 14px;
            align-items: center;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 150px;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #3f3450;
            background: #0f0c14;
            color: #f0ede8;
            font-size: 0.95rem;
        }
        .comment-form input[type="text"]:focus {
            border-color: #f0b27a;
            outline: none;
        }
        .comment-form button {
            padding: 12px 32px;
            border: none;
            border-radius: 10px;
            background: linear-gradient(135deg, #7a9f6e, #5d8a50);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .comment-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(90, 140, 80, 0.35);
        }
        .rating-section {
            background: #1a1525;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 40px 0;
            border: 1px solid #2f2840;
        }
        .rating-section h2 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #4a3f5a;
            cursor: pointer;
            margin: 12px 0 16px;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f0b27a;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .rating-section .rate-btn {
            padding: 12px 36px;
            border: none;
            border-radius: 10px;
            background: linear-gradient(135deg, #d4a373, #b8825a);
            color: #0c0b0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .rating-section .rate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(180, 130, 90, 0.3);
        }
        footer {
            background: #0f0c14;
            border-top: 2px solid #2f2840;
            padding: 40px 0 28px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
        }
        footer .footer-col {
            flex: 1 1 200px;
        }
        footer h4 {
            color: #f0b27a;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            margin-bottom: 6px;
        }
        friend-link a {
            color: #b8a9d0;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f0b27a;
        }
        .copyright {
            text-align: center;
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid #1f1a2a;
            color: #7a6f8e;
            font-size: 0.85rem;
        }
        .last-updated {
            color: #9a8fae;
            font-size: 0.85rem;
            margin-top: 6px;
        }
        @media (max-width: 860px) {
            .nav-toggle {
                display: block;
            }
            nav#main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.3s;
                padding: 0;
            }
            nav#main-nav.open {
                max-height: 600px;
                padding: 16px 0 8px;
            }
            nav#main-nav ul {
                flex-direction: column;
                gap: 8px;
                align-items: stretch;
            }
            nav#main-nav a {
                display: block;
                padding: 10px 12px;
                border-bottom: 1px solid #2f2840;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                gap: 10px;
            }
            .search-form {
                flex-direction: column;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form input[type="text"] {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-section,
            .comments-section,
            .rating-section {
                padding: 20px 16px;
            }
        }
        .highlight {
            color: #f0b27a;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 6px;
        }
        .block-quote {
            border-left: 4px solid #d4a373;
            padding: 14px 22px;
            margin: 24px 0;
            background: #15111e;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #cfc8de;
        }
        .flex-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #1a1525;
            border-radius: 14px;
            padding: 22px 20px;
            border: 1px solid #2f2840;
            transition: transform 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #f0b27a;
        }
        .card i {
            font-size: 2rem;
            color: #f0b27a;
            margin-bottom: 12px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #15111e;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #2f2840;
        }
        th {
            background: #1f1a2a;
            color: #f0b27a;
            font-weight: 600;
        }
        td {
            color: #ddd8e6;
        }
        tr:last-child td {
            border-bottom: none;
        }
