        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f4f7fc;
            color: #1e2a41;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f1b33, #1a2d52);
            padding: 0.8rem 0;
            border-bottom: 4px solid #d4a017;
            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;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            background: linear-gradient(135deg, #f9e07f, #d4a017, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4a017;
            color: #d4a017;
            font-size: 1.6rem;
            padding: 0.3rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .nav-toggle:hover {
            background: rgba(212, 160, 23, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8eef5;
            padding: 0.5rem 1.1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.3s ease, color 0.3s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(212, 160, 23, 0.2);
            color: #f9e07f;
            text-decoration: none;
        }
        .breadcrumb {
            background: #e9edf4;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce3ec;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #2c3e6b;
        }
        .breadcrumb a:hover {
            color: #d4a017;
        }
        .breadcrumb span {
            color: #6a7a9a;
        }
        .breadcrumb .separator {
            margin: 0 0.2rem;
            color: #8a9bb8;
        }
        .hero {
            background: linear-gradient(135deg, #0f1b33 0%, #1e3a5f 60%, #2a4a7a 100%);
            padding: 3rem 0 2.5rem;
            text-align: center;
            color: #fff;
            border-bottom: 6px solid #d4a017;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 0.8rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            background: linear-gradient(135deg, #f9e07f, #ffd700, #f9e07f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 1.2rem;
            color: #cfdcee;
            font-weight: 300;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(212, 160, 23, 0.2);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f9e07f;
            border: 1px solid rgba(212, 160, 23, 0.3);
        }
        .search-section {
            background: #fff;
            padding: 1.8rem 0;
            border-bottom: 1px solid #e0e6ef;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            max-width: 640px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.9rem 1.4rem;
            border: 2px solid #dce3ec;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .search-form input[type="text"]:focus {
            border-color: #d4a017;
        }
        .search-form button {
            padding: 0.9rem 2.2rem;
            background: linear-gradient(135deg, #d4a017, #b8860b);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 160, 23, 0.35);
        }
        .content-wrap {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .main-content h2 {
            font-size: 2rem;
            margin: 2.2rem 0 1rem;
            color: #0f1b33;
            border-left: 6px solid #d4a017;
            padding-left: 1rem;
        }
        .main-content h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
            color: #1a2d52;
        }
        .main-content h4 {
            font-size: 1.2rem;
            margin: 1.4rem 0 0.6rem;
            color: #2c3e6b;
        }
        .main-content p {
            margin: 1rem 0;
            color: #2c3e50;
        }
        .main-content .highlight-box {
            background: #f0f4fa;
            border-left: 6px solid #d4a017;
            padding: 1.5rem 2rem;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
        }
        .main-content .highlight-box p {
            margin: 0.4rem 0;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f0f4fa;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #4a5a7a;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 100px;
            align-self: start;
            border: 1px solid #e8edf5;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: #0f1b33;
            border-bottom: 3px solid #d4a017;
            padding-bottom: 0.6rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar li {
            margin-bottom: 0.6rem;
        }
        .sidebar a {
            display: block;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
            background: #f8faff;
            transition: background 0.25s ease, transform 0.2s ease;
            font-weight: 500;
            color: #1a2d52;
        }
        .sidebar a:hover {
            background: #eef3fc;
            transform: translateX(4px);
            text-decoration: none;
            color: #d4a017;
        }
        .sidebar .emoji-bullet {
            margin-right: 0.6rem;
        }
        .comments-section {
            margin-top: 3rem;
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8edf5;
        }
        .comments-section h3 {
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            color: #0f1b33;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #dce3ec;
            border-radius: 16px;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }
        .comment-form textarea:focus {
            border-color: #d4a017;
            outline: none;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 0.85rem 1.2rem;
            border: 2px solid #dce3ec;
            border-radius: 12px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .comment-form input:focus {
            border-color: #d4a017;
            outline: none;
        }
        .comment-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 1rem 0;
        }
        .comment-form button {
            padding: 0.9rem 2.5rem;
            background: linear-gradient(135deg, #0f1b33, #1a2d52);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
            margin-top: 0.6rem;
        }
        .comment-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(15, 27, 51, 0.3);
        }
        .rating-section {
            margin-top: 2rem;
            background: #f8faff;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            border: 1px solid #e0e6ef;
        }
        .rating-section h4 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: #0f1b33;
        }
        .stars {
            display: flex;
            gap: 0.6rem;
            font-size: 2rem;
            color: #d4a017;
            cursor: pointer;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .stars input {
            display: none;
        }
        .stars label {
            transition: transform 0.2s ease, color 0.2s ease;
            cursor: pointer;
        }
        .stars label:hover,
        .stars label:hover~label,
        .stars input:checked~label {
            color: #ffc107;
            transform: scale(1.15);
        }
        .rating-form button {
            padding: 0.7rem 2rem;
            background: #d4a017;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 0.8rem;
        }
        .rating-form button:hover {
            background: #b8860b;
        }
        .site-footer {
            background: #0f1b33;
            color: #bcc9dd;
            padding: 2.5rem 0 1.5rem;
            border-top: 6px solid #d4a017;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #f9e07f;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .site-footer a {
            color: #bcc9dd;
        }
        .site-footer a:hover {
            color: #f9e07f;
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.8rem;
            border-top: 1px solid #2a3f6a;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #8a9bb8;
        }
        .friend-link {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .friend-link a {
            padding: 0.3rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #13203a;
                padding: 1rem 0.5rem;
                border-radius: 16px;
                margin-top: 0.5rem;
                border: 1px solid #2a3f6a;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.8rem 1.2rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .comment-form .form-row {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .main-content h2 {
                font-size: 1.6rem;
            }
            .main-content h3 {
                font-size: 1.3rem;
            }
            .rating-section {
                padding: 1.2rem;
            }
            .stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .content-wrap {
                padding: 1.5rem 0;
            }
            .comments-section {
                padding: 1.2rem;
            }
        }
        .text-gold {
            color: #d4a017;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 1rem;
        }
