        *,
        *::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, sans-serif;
            background: #0f0e1a;
            color: #e8e0d0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdf7e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1b1a2e, #121124);
            padding: 0.75rem 0;
            border-bottom: 2px solid #f5c84233;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .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: 1px;
            background: linear-gradient(135deg, #f5c842, #e6a800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px #f5c84222;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c842;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c84255;
            color: #f5c842;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #f5c842;
            background: #f5c84211;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.25rem 0.1rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #cfc8b8;
            transition: 0.2s;
            white-space: nowrap;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus {
            background: #f5c84218;
            color: #f5c842;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0.75rem 0 0.25rem 0;
            font-size: 0.85rem;
            color: #a09888;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #f5c84277;
        }
        .breadcrumb a {
            color: #c8b888;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .active {
            color: #f5c842;
            font-weight: 500;
        }
        main {
            padding: 2rem 0 3rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 1.5rem 0;
            background: linear-gradient(135deg, #f5c842, #f0b800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem 0;
            color: #f5d866;
            border-bottom: 2px solid #f5c84233;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem 0;
            color: #e8d080;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem 0;
            color: #d4c070;
        }
        p {
            margin-bottom: 1.1rem;
            color: #d6cebe;
        }
        .lead {
            font-size: 1.2rem;
            color: #ede5d5;
            font-weight: 400;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e1d32, #2a2844);
            border-left: 4px solid #f5c842;
            padding: 1.5rem 2rem;
            border-radius: 0 16px 16px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .feature-img {
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .feature-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #a09888;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .search-section {
            background: #1a192e;
            padding: 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            border: 1px solid #f5c84222;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            max-width: 600px;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #3a3855;
            border-radius: 40px;
            background: #0f0e1a;
            color: #e8e0d0;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c842;
            box-shadow: 0 0 0 3px #f5c84222;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, #f5c842, #e0a800);
            border: none;
            border-radius: 40px;
            color: #0f0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px #f5c84244;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feedback-card {
            background: #1a192e;
            padding: 1.8rem 2rem;
            border-radius: 20px;
            border: 1px solid #2a2844;
            transition: 0.3s;
        }
        .feedback-card:hover {
            border-color: #f5c84244;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #3a3855;
            border-radius: 12px;
            background: #0f0e1a;
            color: #e8e0d0;
            font-size: 0.95rem;
            resize: vertical;
            outline: none;
            transition: 0.3s;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f5c842;
            box-shadow: 0 0 0 3px #f5c84222;
        }
        .feedback-card textarea {
            min-height: 90px;
        }
        .feedback-card .btn-submit {
            padding: 0.7rem 1.8rem;
            background: linear-gradient(135deg, #f5c842, #e0a800);
            border: none;
            border-radius: 40px;
            color: #0f0e1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card .btn-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px #f5c84244;
        }
        .star-display {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #f5c842;
            margin: 0.2rem 0;
        }
        .star-display i {
            cursor: pointer;
            transition: 0.2s;
        }
        .star-display i:hover {
            transform: scale(1.2);
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .data-card {
            background: #1a192e;
            padding: 1.4rem 1.6rem;
            border-radius: 16px;
            border: 1px solid #2a2844;
            text-align: center;
            transition: 0.3s;
        }
        .data-card:hover {
            border-color: #f5c84255;
            transform: translateY(-4px);
        }
        .data-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f5c842;
            line-height: 1.2;
        }
        .data-card .label {
            font-size: 0.9rem;
            color: #a09888;
            margin-top: 0.2rem;
        }
        .interview-block {
            background: #1a192e;
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid #2a2844;
            margin: 2rem 0;
        }
        .interview-block .quote {
            font-size: 1.15rem;
            font-style: italic;
            color: #ede5d5;
            border-left: 4px solid #f5c842;
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 1px solid #2a2844;
            margin-top: 2rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            padding: 0.4rem 1.2rem;
            background: #1a192e;
            border-radius: 30px;
            border: 1px solid #2a2844;
            font-size: 0.9rem;
            transition: 0.25s;
        }
        friend-link a:hover {
            background: #f5c84211;
            border-color: #f5c84255;
            text-decoration: none;
        }
        friend-link .fl-title {
            font-weight: 600;
            color: #f5d866;
            margin-bottom: 0.6rem;
            display: block;
        }
        .site-footer {
            background: #0a0915;
            padding: 2rem 0 1.5rem;
            border-top: 1px solid #1f1d34;
            text-align: center;
            font-size: 0.9rem;
            color: #887e6a;
        }
        .site-footer .copyright {
            margin-top: 1rem;
            letter-spacing: 0.3px;
        }
        .site-footer .copyright i {
            color: #f5c84266;
        }
        @media (max-width: 900px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #121124;
                padding: 1rem 0.5rem;
                border-radius: 16px;
                border: 1px solid #2a2844;
                margin-top: 0.75rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.7rem 1.2rem;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .data-grid {
                grid-template-columns: 1fr 1fr;
            }
            .highlight-box {
                padding: 1.2rem 1.4rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                flex: 1 1 100%;
                justify-content: center;
            }
            .interview-block {
                padding: 1.4rem;
            }
            .feedback-card {
                padding: 1.2rem 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .data-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.7rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .star-display {
                font-size: 1.3rem;
            }
        }
        .text-gold {
            color: #f5c842;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #887e6a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1.5rem;
        }
        .last-updated i {
            color: #f5c84266;
        }
