        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f8f6f2;
            color: #1e2a2f;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b45a2c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #7a3d1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1e2a2f 0%, #2d3f46 100%);
            color: #f5efe8;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f5efe8;
            background: linear-gradient(135deg, #e8b87a, #d4944a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            -webkit-text-fill-color: #c5b5a0;
            color: #c5b5a0;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.25rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-list a {
            color: #e8ddd0;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-list a:hover {
            border-bottom-color: #e8b87a;
            color: #f5efe8;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 6px 4px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f5efe8;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb {
            background: #efe9e0;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6cb;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.4rem 0.8rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding-right: 0.8rem;
            color: #9a8a7a;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #7a5d4a;
        }
        .breadcrumb .current {
            color: #3d2c1f;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d3f46 0%, #1e2a2f 100%);
            color: #f5efe8;
            padding: 2.5rem 0 3rem;
            border-bottom: 4px solid #e8b87a;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            max-width: 900px;
        }
        .hero h1 i {
            color: #e8b87a;
            margin-right: 0.5rem;
        }
        .hero .subhead {
            font-size: 1.2rem;
            color: #d4c8b8;
            margin-top: 0.75rem;
            max-width: 700px;
            font-weight: 400;
        }
        .hero .meta-info {
            margin-top: 1.25rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: #bfb0a0;
        }
        .hero .meta-info i {
            margin-right: 0.4rem;
            color: #e8b87a;
        }
        section {
            padding: 2.5rem 0;
        }
        .section-alt {
            background: #f0ebe4;
        }
        .section-white {
            background: #ffffff;
        }
        .section-dark {
            background: #1e2a2f;
            color: #f5efe8;
        }
        .section-dark h2,
        .section-dark h3 {
            color: #f5efe8;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: #1e2a2f;
            letter-spacing: -0.01em;
            border-left: 5px solid #e8b87a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #2d3f46;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #3d2c1f;
        }
        p {
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #3d2c1f;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.75rem;
            margin: 2rem 0;
        }
        .card {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.75rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #e8e0d6;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        }
        .card i {
            font-size: 2rem;
            color: #b45a2c;
            margin-bottom: 0.75rem;
        }
        .card h4 {
            margin-top: 0;
        }
        .img-wrapper {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #e8e0d6;
            position: relative;
        }
        .img-wrapper img {
            width: 100%;
            object-fit: cover;
            min-height: 200px;
            background: #d4c8b8;
        }
        .img-wrapper .img-caption {
            background: rgba(30, 42, 47, 0.85);
            color: #f5efe8;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .search-box {
            display: flex;
            max-width: 560px;
            margin: 1.5rem 0;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #d4c8b8;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-box:focus-within {
            border-color: #b45a2c;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem 1.5rem;
            border: none;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #1e2a2f;
        }
        .search-box input::placeholder {
            color: #9a8a7a;
        }
        .search-box button {
            padding: 0.9rem 1.8rem;
            background: #b45a2c;
            color: #fff;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .search-box button:hover {
            background: #7a3d1a;
        }
        .comment-section,
        .rating-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.75rem;
            margin: 2rem 0;
            border: 1px solid #e8e0d6;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.3rem;
            color: #2d3f46;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1.5px solid #ddd6cb;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #faf8f5;
            transition: border-color 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #b45a2c;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary {
            background: #b45a2c;
            color: #fff;
        }
        .btn-primary:hover {
            background: #7a3d1a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(180, 90, 44, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b45a2c;
            color: #b45a2c;
        }
        .btn-outline:hover {
            background: #b45a2c;
            color: #fff;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #d4c8b8;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            color: #d4c8b8;
            font-size: 2rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8b87a;
        }
        .rating-display {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }
        .rating-stars {
            color: #e8b87a;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }
        friend-link {
            display: block;
            padding: 2rem 0 1rem;
        }
        friend-link .friend-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem 2rem;
            list-style: none;
            padding: 0;
        }
        friend-link .friend-grid li a {
            font-weight: 500;
            color: #b45a2c;
            padding: 0.3rem 0.8rem;
            background: #f5efe8;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            display: inline-block;
        }
        friend-link .friend-grid li a:hover {
            background: #b45a2c;
            color: #fff;
            text-decoration: none;
        }
        .site-footer {
            background: #1e2a2f;
            color: #bfb0a0;
            padding: 2rem 0;
            font-size: 0.9rem;
            border-top: 3px solid #e8b87a;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .site-footer a {
            color: #e8b87a;
        }
        .site-footer a:hover {
            color: #f5efe8;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .badge {
            display: inline-block;
            background: #e8b87a;
            color: #1e2a2f;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2d3f46;
                padding: 1rem 1.25rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                gap: 0.6rem;
            }
            .nav-list.open {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .subhead {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
                border: 2px solid #d4c8b8;
            }
            .search-box input {
                border-radius: 14px 14px 0 0;
            }
            .search-box button {
                border-radius: 0 0 14px 14px;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 0.2rem 0.5rem;
            }
            .star-rating {
                font-size: 1.5rem;
                justify-content: flex-start;
                direction: ltr;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
            .star-rating input:checked~label,
            .star-rating label:hover,
            .star-rating label:hover~label {
                color: #e8b87a;
            }
        }
        @media (min-width: 769px) {
            .nav-list {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table thead {
            background: #2d3f46;
            color: #f5efe8;
        }
        .data-table th,
        .data-table td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8e0d6;
        }
        .data-table tbody tr:hover {
            background: #f5efe8;
        }
        .data-table tbody tr:last-child td {
            border-bottom: none;
        }
        .highlight-box {
            background: #f5efe8;
            border-left: 5px solid #e8b87a;
            padding: 1.25rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #b45a2c;
        }
        .inline-icon {
            margin-right: 0.3rem;
            color: #b45a2c;
        }
        .author-bio {
            display: flex;
            gap: 1rem;
            align-items: center;
            background: #f5efe8;
            padding: 1.25rem;
            border-radius: 16px;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        .author-bio .avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #b45a2c;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        .author-bio .bio-text {
            flex: 1;
            min-width: 180px;
        }
        .author-bio .bio-text .name {
            font-weight: 700;
            font-size: 1.1rem;
        }
        .author-bio .bio-text .cred {
            font-size: 0.85rem;
            color: #6a5a4a;
        }
