        *,
        *::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, sans-serif;
            background: #f5f3ef;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #1a1a2e;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #b8860b;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #b8860b;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #3a3a5a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 1rem 0 1.5rem 2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #1a1a2e;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            padding: 1.5rem 2rem 2rem;
        }
        .my-logo {
            display: inline-block;
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(145deg, #1a1a2e, #b8860b);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #666;
            background: none;
            display: block;
            letter-spacing: 1px;
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 2px solid #e8e3dc;
            margin-bottom: 1.2rem;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li a {
            font-weight: 600;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            color: #2c2c2c;
        }
        .nav-links li a:hover {
            background: #b8860b22;
            color: #b8860b;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1a1a2e;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.9rem;
            padding: 0.6rem 0;
            margin-bottom: 1rem;
            color: #555;
            list-style: none;
            background: #f9f7f4;
            border-radius: 10px;
            padding: 0.6rem 1.2rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .active {
            color: #1a1a2e;
            font-weight: 600;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 500px;
            margin: 1.5rem 0 2rem;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            min-width: 180px;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #1a1a2e;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #b8860b;
            transform: scale(1.02);
        }
        .feature-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .feature-image figcaption {
            padding: 0.8rem 1.2rem;
            background: #f9f7f4;
            font-size: 0.9rem;
            color: #555;
            font-style: italic;
            border-top: 1px solid #e8e3dc;
        }
        .timeline-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .timeline-table th {
            background: #1a1a2e;
            color: #fff;
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .timeline-table td {
            padding: 0.9rem 1.2rem;
            border-bottom: 1px solid #eee;
            vertical-align: top;
        }
        .timeline-table tr:hover td {
            background: #faf8f5;
        }
        .timeline-table .highlight {
            background: #fdf8f0;
        }
        .interact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #f9f7f4;
            border-radius: 20px;
        }
        .interact-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .interact-section form label {
            font-weight: 600;
            font-size: 0.95rem;
        }
        .interact-section form input,
        .interact-section form textarea,
        .interact-section form select {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .interact-section form input:focus,
        .interact-section form textarea:focus,
        .interact-section form select:focus {
            border-color: #b8860b;
        }
        .interact-section form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .interact-section form button {
            padding: 0.7rem 2rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .interact-section form button:hover {
            background: #9a7209;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #f5b342;
        }
        .rating-stars i:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            padding: 2rem 0 1rem;
            border-top: 2px solid #e8e3dc;
            margin-top: 2rem;
        }
        friend-link h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            border: none;
            padding: 0;
        }
        .friend-links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.8rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .friend-links-list li a {
            font-size: 0.95rem;
            color: #555;
        }
        .friend-links-list li a:hover {
            color: #b8860b;
        }
        footer {
            padding: 1.5rem 0 0.5rem;
            border-top: 1px solid #e8e3dc;
            margin-top: 1rem;
            text-align: center;
            font-size: 0.9rem;
            color: #777;
        }
        footer .copyright {
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .navbar {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem 0;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .interact-section {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1.2rem;
            }
            .timeline-table {
                font-size: 0.85rem;
            }
            .timeline-table th,
            .timeline-table td {
                padding: 0.6rem 0.8rem;
            }
            .search-form button {
                padding: 0.7rem 1.2rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0.8rem;
            }
            h1 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.7rem;
            }
            .search-form input {
                min-width: 120px;
                font-size: 0.9rem;
            }
            .timeline-table {
                font-size: 0.78rem;
            }
            .timeline-table th,
            .timeline-table td {
                padding: 0.4rem 0.5rem;
            }
            .rating-stars {
                font-size: 1.3rem;
            }
        }
        .text-muted {
            color: #777;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            align-items: center;
        }
        .badge {
            display: inline-block;
            background: #b8860b18;
            color: #8b6508;
            padding: 0.2rem 0.9rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .last-updated {
            display: inline-block;
            background: #1a1a2e0c;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 1rem;
        }
        .card {
            background: #faf8f5;
            padding: 1.5rem 1.8rem;
            border-radius: 16px;
            margin: 1.5rem 0;
            border-left: 5px solid #b8860b;
        }
        .card h3 {
            margin-top: 0;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }
        .inline-link-list li a {
            background: #f5f3ef;
            padding: 0.2rem 0.9rem;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #e8e3dc;
            transition: all 0.2s;
        }
        .inline-link-list li a:hover {
            background: #b8860b10;
            border-color: #b8860b;
            text-decoration: none;
        }
