        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #f8f9fc;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #c8a44e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #a8842e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f1a2b;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1a2b 0%, #1a2a3e 100%);
            color: #fff;
            padding: 1rem 0;
            border-bottom: 4px solid #c8a44e;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #c8a44e;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(200, 164, 78, 0.3);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #dbb85e;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c8a44e;
            color: #c8a44e;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(200, 164, 78, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 1.6rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8eef4;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            color: #c8a44e;
            border-bottom-color: #c8a44e;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #c8a44e;
            border-bottom-color: #c8a44e;
        }
        .breadcrumb {
            background: #eef1f7;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #dce1ea;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a9bb5;
        }
        .breadcrumb a {
            color: #2c3e5a;
        }
        .breadcrumb a:hover {
            color: #c8a44e;
        }
        .breadcrumb .current {
            color: #6b7f9b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0f1a2b, #1f324b);
            color: #fff;
            padding: 3rem 0 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚖️";
            position: absolute;
            right: -20px;
            bottom: -30px;
            font-size: 16rem;
            opacity: 0.04;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 3.2rem;
            color: #c8a44e;
            margin-bottom: 0.8rem;
            letter-spacing: -0.5px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #d0d9e8;
            max-width: 760px;
            margin: 0 auto 1.2rem;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(200, 164, 78, 0.18);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #c8a44e;
            border: 1px solid rgba(200, 164, 78, 0.3);
        }
        .search-section {
            background: #fff;
            padding: 1.8rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #dce1ea;
            transition: border-color 0.3s;
            background: #fff;
        }
        .search-form:focus-within {
            border-color: #c8a44e;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.9rem 1.5rem;
            border: none;
            outline: none;
            font-size: 1rem;
            background: transparent;
            color: #1e2a3a;
        }
        .search-form button {
            background: #c8a44e;
            border: none;
            padding: 0 1.6rem;
            color: #0f1a2b;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #dbb85e;
        }
        .content-wrap {
            padding: 3rem 0 4rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .main-content h2 {
            font-size: 2.2rem;
            color: #0f1a2b;
            margin-top: 3rem;
            margin-bottom: 1rem;
            border-left: 5px solid #c8a44e;
            padding-left: 1rem;
        }
        .main-content h3 {
            font-size: 1.5rem;
            color: #1a2a3e;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
        }
        .main-content h4 {
            font-size: 1.2rem;
            color: #2c3e5a;
            margin-top: 1.6rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 1.4rem;
            color: #2c3e5a;
        }
        .main-content p strong {
            color: #0f1a2b;
        }
        .main-content ul,
        .main-content ol {
            margin-bottom: 1.6rem;
            color: #2c3e5a;
        }
        .main-content li {
            margin-bottom: 0.4rem;
        }
        .featured-image {
            margin: 2.4rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
            overflow: hidden;
        }
        .featured-image figcaption {
            background: #eef1f7;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #4a5e7a;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef1f7;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #0f1a2b;
            margin-bottom: 1.2rem;
            border-bottom: 2px solid #c8a44e;
            padding-bottom: 0.5rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar li {
            margin-bottom: 0.7rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .sidebar li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #c8a44e;
            font-weight: 700;
        }
        .sidebar a {
            color: #2c3e5a;
            font-size: 0.95rem;
        }
        .sidebar a:hover {
            color: #c8a44e;
        }
        .interaction-area {
            margin-top: 3.5rem;
            padding-top: 2rem;
            border-top: 2px solid #dce1ea;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-box,
        .rating-box {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1.8rem 2.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef1f7;
        }
        .comment-box h3,
        .rating-box h3 {
            font-size: 1.3rem;
            color: #0f1a2b;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box textarea,
        .comment-box input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #dce1ea;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s;
            margin-bottom: 0.8rem;
            background: #fafbfc;
        }
        .comment-box textarea:focus,
        .comment-box input:focus {
            border-color: #c8a44e;
            outline: none;
            background: #fff;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #c8a44e;
            color: #0f1a2b;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #dbb85e;
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.98);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #dce1ea;
            cursor: pointer;
            margin: 1rem 0 1.2rem;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #c8a44e;
            transform: scale(1.15);
        }
        .rating-stars i.active-permanent {
            color: #c8a44e;
        }
        .friend-links-section {
            background: #0f1a2b;
            color: #e8eef4;
            padding: 2.5rem 0;
        }
        .friend-links-section h3 {
            color: #c8a44e;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
        }
        friend-link {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            justify-content: center;
        }
        friend-link a {
            color: #bcc9dd;
            font-size: 0.95rem;
            padding: 0.2rem 0;
            border-bottom: 1px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }
        friend-link a:hover {
            color: #c8a44e;
            border-bottom-color: #c8a44e;
            text-decoration: none;
        }
        .site-footer {
            background: #0a1220;
            color: #8a9bb5;
            text-align: center;
            padding: 2rem 0 1.8rem;
            font-size: 0.9rem;
            border-top: 2px solid #1a2a3e;
        }
        .site-footer p {
            margin-bottom: 0.4rem;
        }
        .site-footer .copyright {
            color: #6b7f9b;
        }
        @media (max-width: 968px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.6rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                margin-top: 0.8rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1.05rem;
                padding: 0.4rem 0;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero {
                padding: 2rem 0 2.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
                border: 2px solid #dce1ea;
            }
            .search-form input[type="text"] {
                padding: 0.8rem 1.2rem;
            }
            .search-form button {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
            }
            .main-content h2 {
                font-size: 1.7rem;
            }
            .main-content h3 {
                font-size: 1.3rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .comment-box,
            .rating-box {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .breadcrumb ul {
                font-size: 0.8rem;
                gap: 0.3rem 0.5rem;
            }
            .main-content h2 {
                font-size: 1.4rem;
                padding-left: 0.7rem;
            }
            .main-content p {
                font-size: 0.95rem;
            }
            .btn {
                padding: 0.6rem 1.4rem;
                font-size: 0.85rem;
            }
            friend-link {
                gap: 0.8rem 1.2rem;
            }
        }
        .text-gold {
            color: #c8a44e;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .emoji-lg {
            font-size: 1.6em;
            line-height: 1;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #c8a44e, transparent);
            margin: 2.5rem 0;
            opacity: 0.3;
        }
        .highlight-box {
            background: #f0f3f9;
            border-left: 4px solid #c8a44e;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .inline-link-list {
            display: inline;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
        }
        .inline-link-list a {
            font-weight: 500;
        }
