        *,
        *::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, Roboto, 'Helvetica Neue', sans-serif;
            background: #1a1a2e;
            color: #f5f0e8;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #f0c27a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f5d99b;
            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.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
            color: #f5d99b;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.6rem;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            border-left: 6px solid #b8860b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #e8c97a;
        }
        h4 {
            font-size: 1.2rem;
            color: #dbb86a;
        }
        p {
            margin: 0.9rem 0;
        }
        .container {
            background: #16213e;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 1.5rem 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .highlight {
            background: rgba(184, 134, 11, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            font-weight: 600;
            color: #f5d99b;
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #1a1a2e;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.4rem;
        }
        hr {
            border: none;
            border-top: 2px dashed #b8860b;
            margin: 2.5rem 0;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 2px solid #b8860b;
            margin-bottom: 1.2rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5d99b;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5d99b, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #b8860b;
            color: #b8860b;
            display: block;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            color: #f5d99b;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(184, 134, 11, 0.2);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
            align-items: center;
        }
        .nav-menu li a {
            font-weight: 600;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .nav-menu li a:hover {
            border-bottom-color: #b8860b;
            text-decoration: none;
        }
        .nav-menu .active a {
            border-bottom-color: #f0c27a;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0;
            margin: 0 0 0.8rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.7rem;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #dbb86a;
        }
        .breadcrumb a:hover {
            color: #f5d99b;
        }
        .breadcrumb .current {
            color: #f0c27a;
            font-weight: 600;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #b8860b;
            border-radius: 40px;
            background: #0f1a2e;
            color: #f5f0e8;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5d99b;
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            background: #b8860b;
            color: #1a1a2e;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
        }
        .search-form button:hover {
            background: #d4a017;
            transform: scale(1.02);
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .card {
            background: #1a2a44;
            padding: 1.5rem;
            border-radius: 16px;
            border: 1px solid #2a3a5a;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(184, 134, 11, 0.2);
            border-color: #b8860b;
        }
        .card h3 {
            margin-top: 0;
        }
        .card h3 i {
            color: #b8860b;
            margin-right: 0.5rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0f1a2e;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.9rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #2a3a5a;
        }
        th {
            background: #b8860b;
            color: #1a1a2e;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        tr:hover td {
            background: rgba(184, 134, 11, 0.08);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #1a2a44;
            padding: 1.8rem;
            border-radius: 16px;
            border: 1px solid #2a3a5a;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #2a3a5a;
            border-radius: 10px;
            background: #0f1a2e;
            color: #f5f0e8;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b8860b;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.8rem 1.5rem;
            background: #b8860b;
            color: #1a1a2e;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #d4a017;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #555;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5c842;
            transform: scale(1.1);
        }
        footer {
            margin-top: 4rem;
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #2a3a5a;
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            color: #dbb86a;
        }
        friend-link a:hover {
            color: #f5d99b;
        }
        .copyright {
            text-align: center;
            color: #888;
            padding-top: 1rem;
            border-top: 1px solid #2a3a5a;
            margin-top: 1rem;
        }
        .copyright i {
            color: #b8860b;
        }
        @media (max-width: 900px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .container {
                padding: 1.2rem 1.2rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f1a2e;
                padding: 1.2rem 1.5rem;
                border-radius: 16px;
                margin-top: 0.8rem;
                border: 1px solid #2a3a5a;
                gap: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 0.5rem 0;
            }
            header {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            body {
                padding: 0 0.6rem;
            }
            .search-form input[type="text"] {
                min-width: 120px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0.8rem 0.8rem;
            }
            .feedback-card {
                padding: 1rem;
            }
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-gold {
            color: #f5d99b;
        }
        .text-muted {
            color: #aaa;
        }
        .text-small {
            font-size: 0.85rem;
        }
        .section-icon {
            margin-right: 0.6rem;
            color: #b8860b;
        }
        .quote {
            border-left: 4px solid #b8860b;
            padding: 0.8rem 1.5rem;
            margin: 1.5rem 0;
            background: rgba(184, 134, 11, 0.06);
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        .quote cite {
            display: block;
            margin-top: 0.5rem;
            font-style: normal;
            font-weight: 600;
            color: #dbb86a;
        }
        .last-updated {
            display: inline-block;
            background: #2a3a5a;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #ccc;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            color: #b8860b;
            margin-right: 0.4rem;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b8860b;
            color: #1a1a2e;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
            transition: transform 0.2s, background 0.3s;
            border: none;
            cursor: pointer;
            z-index: 99;
        }
        .btn-top:hover {
            transform: scale(1.08);
            background: #d4a017;
        }
        @media (max-width: 600px) {
            .btn-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }
