        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0d1b2a;
            color: #e0e6ed;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.2s, text-shadow 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.01em;
            color: #f5e6c8;
        }
        h1 {
            font-size: 2.6rem;
            margin: 1.8rem 0 1rem;
            border-bottom: 3px solid #c9a84c;
            padding-bottom: 0.6rem;
        }
        h2 {
            font-size: 2rem;
            margin: 2.4rem 0 0.8rem;
            border-left: 5px solid #c9a84c;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 0.6rem;
            color: #e8d5a3;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.2rem 0 0.4rem;
            color: #d4c094;
        }
        p {
            margin-bottom: 1.2rem;
            word-break: break-word;
        }
        ul,
        ol {
            margin: 1rem 0 1.2rem 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        blockquote {
            border-left: 4px solid #c9a84c;
            background: rgba(201, 168, 76, 0.08);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #d4dce6;
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #c9a84c, transparent);
            margin: 2.5rem 0;
        }
        code {
            background: #1b2d3b;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-size: 0.9rem;
            color: #f0c27f;
        }
        .container {
            background: rgba(13, 27, 42, 0.7);
            backdrop-filter: blur(2px);
            padding: 2rem 1.5rem;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            margin: 1.5rem 0;
            border: 1px solid rgba(201, 168, 76, 0.15);
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.8rem;
            border-bottom: 2px solid rgba(201, 168, 76, 0.25);
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5e6c8, #c9a84c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #c9a84c;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f0c27f;
            cursor: pointer;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(201, 168, 76, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 0.4rem 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #cbd5e1;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(201, 168, 76, 0.12);
            color: #f5e6c8;
        }
        .nav-active a {
            color: #f0c27f;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #c9a84c;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #f0c27f;
        }
        .breadcrumb .current {
            color: #f5e6c8;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            margin: 1.5rem 0 2rem;
            flex-wrap: wrap;
            background: rgba(255, 255, 255, 0.04);
            padding: 1.2rem;
            border-radius: 16px;
            border: 1px solid rgba(201, 168, 76, 0.12);
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border-radius: 50px;
            border: 1px solid #2d4a5e;
            background: #0f1e2e;
            color: #e0e6ed;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #c9a84c;
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
        }
        .search-form button {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #c9a84c, #a8873a);
            color: #0d1b2a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(201, 168, 76, 0.15);
        }
        .featured-image figcaption {
            background: rgba(0, 0, 0, 0.55);
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #cbd5e1;
            text-align: center;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
            border-radius: 12px;
            border: 1px solid rgba(201, 168, 76, 0.12);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(15, 30, 46, 0.6);
            font-size: 0.95rem;
        }
        th {
            background: rgba(201, 168, 76, 0.15);
            color: #f5e6c8;
            font-weight: 600;
            padding: 0.9rem 1rem;
            text-align: left;
            border-bottom: 2px solid rgba(201, 168, 76, 0.3);
        }
        td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        tr:hover td {
            background: rgba(201, 168, 76, 0.04);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .form-card {
            background: rgba(15, 30, 46, 0.5);
            padding: 1.6rem;
            border-radius: 16px;
            border: 1px solid rgba(201, 168, 76, 0.12);
        }
        .form-card h3 {
            margin-top: 0;
            border-bottom: 1px solid rgba(201, 168, 76, 0.2);
            padding-bottom: 0.6rem;
        }
        .form-card label {
            display: block;
            margin: 0.8rem 0 0.3rem;
            font-weight: 500;
            color: #d4c094;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #2d4a5e;
            background: #0f1e2e;
            color: #e0e6ed;
            font-size: 0.95rem;
            transition: border 0.3s;
            outline: none;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            border-color: #c9a84c;
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card button {
            margin-top: 1rem;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #c9a84c, #a8873a);
            color: #0d1b2a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            width: 100%;
        }
        .form-card button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 1.6rem;
            margin: 0.4rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3a4a5a;
            transition: color 0.2s;
            font-size: 1.6rem;
            margin: 0;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c27f;
        }
        friend-link {
            display: block;
            padding: 1.6rem 0;
            border-top: 2px solid rgba(201, 168, 76, 0.15);
            margin-top: 2rem;
        }
        friend-link .fl-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #f5e6c8;
            margin-bottom: 0.8rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.8rem;
        }
        friend-link .fl-list a {
            color: #94a3b8;
            font-size: 0.95rem;
            padding: 0.2rem 0;
            border-bottom: 1px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }
        friend-link .fl-list a:hover {
            color: #f0c27f;
            border-bottom-color: #f0c27f;
        }
        .site-footer {
            padding: 1.8rem 0 2.5rem;
            text-align: center;
            color: #64748b;
            font-size: 0.9rem;
            border-top: 1px solid rgba(201, 168, 76, 0.1);
            margin-top: 2rem;
        }
        .site-footer .copyright {
            margin-top: 0.6rem;
            letter-spacing: 0.3px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 1.2rem 0.8rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.2rem;
                padding: 1rem 0 0.4rem;
                background: rgba(13, 27, 42, 0.95);
                border-radius: 0 0 16px 16px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .table-wrap {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0.8rem 0.4rem;
            }
            .form-card {
                padding: 1rem;
            }
        }
        .text-gold {
            color: #f0c27f;
        }
        .text-muted {
            color: #94a3b8;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        @media (max-width: 600px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .last-updated {
            display: inline-block;
            background: rgba(201, 168, 76, 0.1);
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #94a3b8;
            border: 1px solid rgba(201, 168, 76, 0.15);
        }
        .icon-lg {
            font-size: 1.4rem;
            margin-right: 0.4rem;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: rgba(201, 168, 76, 0.2);
            color: #f0c27f;
            border: 1px solid rgba(201, 168, 76, 0.3);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            backdrop-filter: blur(8px);
            transition: background 0.3s, transform 0.2s;
            cursor: pointer;
            z-index: 99;
        }
        .scroll-top:hover {
            background: rgba(201, 168, 76, 0.35);
            transform: translateY(-4px);
        }
        @media (max-width: 600px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }
