        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.75;
            color: #2d2d2d;
            background: #f4f1ec;
            max-width: 1400px;
            margin: 0 auto;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.3s ease, border-color 0.3s ease;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a1628, #1e3a5f, #2d5a8c);
            padding: 20px 0;
            border-bottom: 4px solid #c9a227;
            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: 1.8rem;
            font-weight: 800;
            color: #f0e6d2;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #c9a227, #f0e6d2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .logo-sub {
            font-size: 0.75rem;
            color: #f0e6d2;
            opacity: 0.7;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: -4px;
            display: block;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c9a227;
            color: #c9a227;
            font-size: 1.4rem;
            padding: 8px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .nav-toggle:hover {
            background: rgba(201, 162, 39, 0.2);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #f0e6d2;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 6px 14px;
            border-radius: 20px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(201, 162, 39, 0.25);
            border-color: #c9a227;
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            background: #f8f2e7;
            padding: 10px 0;
            border-bottom: 1px solid #e5dbce;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li::after {
            content: "›";
            margin-left: 6px;
            color: #999;
        }
        .breadcrumb li:last-child::after {
            content: "";
        }
        .breadcrumb a {
            color: #7a6a4d;
        }
        .breadcrumb a:hover {
            color: #b8860b;
            text-decoration: none;
        }
        .breadcrumb li[aria-current="page"] {
            color: #2d2d2d;
            font-weight: 600;
        }
        .search-section {
            background: #fff;
            padding: 20px 0;
            border-bottom: 1px solid #e8e2d8;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            gap: 10px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #d4cdc0;
            border-radius: 30px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #c9a227;
        }
        .search-form button {
            background: #c9a227;
            border: none;
            color: #fff;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #a8871e;
            transform: scale(1.03);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            padding: 0;
            background: #f4f1ec;
        }
        .content-wrapper {
            max-width: 860px;
            margin: 0 auto;
            padding: 40px 24px;
            background: #fff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
        }
        .content-wrapper h1 {
            font-size: 2.4rem;
            color: #0a1628;
            line-height: 1.2;
            margin-bottom: 16px;
            border-bottom: 3px solid #c9a227;
            padding-bottom: 14px;
            font-weight: 800;
        }
        .content-wrapper h2 {
            font-size: 1.9rem;
            color: #0a1628;
            margin-top: 50px;
            margin-bottom: 18px;
            font-weight: 700;
            border-left: 5px solid #c9a227;
            padding-left: 16px;
        }
        .content-wrapper h3 {
            font-size: 1.4rem;
            color: #1a2d47;
            margin-top: 34px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .content-wrapper h4 {
            font-size: 1.1rem;
            color: #3a4a5f;
            margin-top: 24px;
            margin-bottom: 10px;
            font-weight: 600;
            font-style: italic;
        }
        .content-wrapper p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            line-height: 1.8;
            color: #333;
        }
        .content-wrapper ul,
        .content-wrapper ol {
            margin: 0 0 20px 20px;
            line-height: 1.8;
        }
        .content-wrapper li {
            margin-bottom: 8px;
        }
        .content-wrapper blockquote {
            border-left: 4px solid #c9a227;
            background: #faf6ef;
            padding: 16px 24px;
            margin: 24px 0;
            font-style: italic;
            color: #555;
            border-radius: 0 8px 8px 0;
        }
        .content-wrapper .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .content-wrapper .featured-image figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #777;
            background: #faf6ef;
            text-align: center;
            font-style: italic;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .meta-info i {
            margin-right: 5px;
            color: #c9a227;
        }
        .highlight-box {
            background: linear-gradient(135deg, #faf6ef, #f0e6d2);
            border: 1px solid #e5dbce;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #b8860b;
        }
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid #eee;
        }
        .rating-section h3 {
            color: #0a1628;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        .stars {
            display: flex;
            gap: 6px;
            margin: 16px 0;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars i.active {
            color: #c9a227;
        }
        .stars i:hover {
            color: #c9a227;
            transform: scale(1.2);
        }
        .rating-form button {
            background: #0a1628;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s;
            margin-top: 10px;
        }
        .rating-form button:hover {
            background: #1e3a5f;
            transform: scale(1.03);
        }
        .rating-value {
            font-size: 1rem;
            color: #777;
            margin-top: 8px;
        }
        .comments-section {
            background: #faf6ef;
            border-radius: 16px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #e5dbce;
        }
        .comments-section h3 {
            color: #0a1628;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .comment-list {
            list-style: none;
            margin: 0 0 24px 0;
            padding: 0;
        }
        .comment-list li {
            background: #fff;
            border-radius: 10px;
            padding: 16px 20px;
            margin-bottom: 14px;
            border-left: 3px solid #c9a227;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        .comment-list .author {
            font-weight: 700;
            color: #1a2d47;
        }
        .comment-list .date {
            font-size: 0.8rem;
            color: #999;
            margin-left: 8px;
        }
        .comment-list .text {
            margin-top: 6px;
            color: #444;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #d4cdc0;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #c9a227;
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #d4cdc0;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-top: 10px;
        }
        .comment-form button {
            background: #c9a227;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            margin-top: 12px;
            font-size: 0.95rem;
        }
        .comment-form button:hover {
            background: #a8871e;
            transform: scale(1.03);
        }
        .related-links {
            background: #faf6ef;
            border-radius: 16px;
            padding: 24px;
            margin: 36px 0;
            border: 1px solid #e5dbce;
        }
        .related-links h3 {
            color: #0a1628;
            font-size: 1.2rem;
            margin-bottom: 16px;
        }
        .related-links ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 6px;
        }
        .related-links a {
            display: block;
            padding: 6px 10px;
            font-size: 0.9rem;
            border-radius: 6px;
            color: #7a6a4d;
            transition: background 0.3s, color 0.3s;
        }
        .related-links a:hover {
            background: #f0e6d2;
            color: #b8860b;
            text-decoration: none;
        }
        .related-links i {
            margin-right: 6px;
            font-size: 0.8rem;
            color: #c9a227;
        }
        .site-footer {
            background: #0a1628;
            color: #a0b0c0;
            padding: 40px 0 20px;
            border-top: 4px solid #c9a227;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .footer-inner h4 {
            color: #f0e6d2;
            font-size: 1rem;
            margin-bottom: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .footer-inner a {
            color: #a0b0c0;
            font-size: 0.9rem;
            display: block;
            padding: 4px 0;
            transition: color 0.3s;
        }
        .footer-inner a:hover {
            color: #c9a227;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #607080;
        }
        .footer-bottom p {
            margin-bottom: 6px;
        }
        .footer-bottom a {
            color: #a0b0c0;
            display: inline;
            padding: 0;
        }
        .footer-bottom a:hover {
            color: #c9a227;
        }
        friend-link {
            display: block;
            padding: 14px 0 0;
            font-size: 0.85rem;
            color: #607080;
        }
        friend-link a {
            color: #a0b0c0;
            display: inline;
            margin-right: 8px;
        }
        friend-link a:hover {
            color: #c9a227;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 14px;
            }
            .nav-toggle {
                display: block;
                align-self: flex-end;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                gap: 4px;
                padding-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px;
                border-radius: 8px;
            }
            .content-wrapper {
                padding: 24px 16px;
            }
            .content-wrapper h1 {
                font-size: 1.8rem;
            }
            .content-wrapper h2 {
                font-size: 1.4rem;
            }
            .content-wrapper h3 {
                font-size: 1.2rem;
            }
            .search-form {
                flex-direction: column;
                padding: 0 16px;
            }
            .search-form button {
                width: 100%;
            }
            .rating-section,
            .comments-section {
                padding: 20px;
            }
            .stars {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .content-wrapper h1 {
                font-size: 1.5rem;
            }
        }
