        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e4e8ee;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #f0b34b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            padding: 1.5rem 0 0.75rem;
            border-bottom: 1px solid #2a3140;
            margin-bottom: 1rem;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0b34b, #d48a2c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(212, 138, 44, 0.25);
        }
        .my-logo small {
            font-size: 0.9rem;
            -webkit-text-fill-color: #8a95a8;
            color: #8a95a8;
            font-weight: 400;
            display: block;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.25rem 0.1rem;
        }
        .nav-links li a {
            display: block;
            padding: 0.4rem 1rem;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8d0dc;
            background: transparent;
            border: 1px solid transparent;
            transition: all 0.25s ease;
        }
        .nav-links li a:hover {
            background: #1f2937;
            border-color: #f0b34b;
            color: #f0b34b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #e4e8ee;
            border-radius: 4px;
            transition: 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.85rem;
            color: #8a95a8;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.5rem;
            color: #5a6577;
        }
        .breadcrumb a {
            color: #a8b4c8;
        }
        .breadcrumb a:hover {
            color: #f0b34b;
        }
        .breadcrumb .current {
            color: #e4e8ee;
            font-weight: 500;
        }
        main {
            padding: 1.5rem 0 2.5rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 0.75rem;
            background: linear-gradient(135deg, #f7d68a, #e8a82e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2.5rem 0 0.8rem;
            padding-bottom: 0.3rem;
            border-bottom: 2px solid #2a3140;
            color: #f0d49e;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 2rem 0 0.6rem;
            color: #e4c88a;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.4rem 0 0.4rem;
            color: #cfb87c;
        }
        p {
            margin: 0 0 1.2rem;
            max-width: 75ch;
        }
        .content-img {
            margin: 2rem 0;
            border-radius: 16px;
            background: #1a212e;
            padding: 0.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .content-img img {
            border-radius: 12px;
            width: 100%;
            height: auto;
        }
        .content-img figcaption {
            text-align: center;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.85rem;
            color: #8a95a8;
            font-style: italic;
        }
        .search-section {
            background: #151d28;
            border-radius: 20px;
            padding: 2rem 2rem 2.2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a3140;
        }
        .search-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 0.8rem;
        }
        .search-form input {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #3a4555;
            background: #0b0e14;
            color: #e4e8ee;
            font-size: 1rem;
            outline: none;
            transition: 0.25s ease;
        }
        .search-form input:focus {
            border-color: #f0b34b;
            box-shadow: 0 0 0 3px rgba(240, 179, 75, 0.2);
        }
        .search-form button {
            padding: 0.8rem 2rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f0b34b, #d48a2c);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s ease;
        }
        .search-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(212, 138, 44, 0.4);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 680px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #151d28;
            border-radius: 20px;
            padding: 1.8rem 2rem 2rem;
            border: 1px solid #2a3140;
        }
        .card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.3rem;
        }
        .card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.5rem;
        }
        .card form input,
        .card form textarea {
            padding: 0.7rem 1rem;
            border-radius: 12px;
            border: 1px solid #3a4555;
            background: #0b0e14;
            color: #e4e8ee;
            font-size: 0.95rem;
            outline: none;
            transition: 0.25s ease;
            font-family: inherit;
        }
        .card form input:focus,
        .card form textarea:focus {
            border-color: #f0b34b;
            box-shadow: 0 0 0 3px rgba(240, 179, 75, 0.15);
        }
        .card form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .card form button {
            align-self: flex-start;
            padding: 0.65rem 2rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f0b34b, #d48a2c);
            color: #0b0e14;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s ease;
        }
        .card form button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(212, 138, 44, 0.35);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            cursor: pointer;
            color: #4a5568;
            transition: 0.2s ease;
            user-select: none;
            margin: 0.2rem 0 0.6rem;
        }
        .rating-stars .star {
            transition: 0.2s ease;
        }
        .rating-stars .star.active {
            color: #f0b34b;
            text-shadow: 0 0 12px rgba(240, 179, 75, 0.5);
        }
        .rating-stars .star:hover,
        .rating-stars .star.hover {
            color: #f0b34b;
            transform: scale(1.1);
        }
        footer {
            border-top: 1px solid #2a3140;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
        }
        footer .copyright {
            font-size: 0.85rem;
            color: #6a7588;
        }
        footer .copyright strong {
            color: #a8b4c8;
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link .fl-head {
            font-weight: 600;
            color: #c8d0dc;
            margin-bottom: 0.4rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: #1a212e;
            border-radius: 12px;
            font-size: 0.9rem;
            color: #c8d0dc;
            border: 1px solid #2a3140;
            transition: 0.2s ease;
        }
        friend-link a:hover {
            border-color: #f0b34b;
            color: #f0b34b;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hamburger {
                display: flex;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #151d28;
                border-radius: 16px;
                padding: 1rem;
                margin-top: 0.75rem;
                border: 1px solid #2a3140;
                gap: 0.25rem;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                padding: 0.6rem 1rem;
                border-radius: 12px;
            }
            .search-section {
                padding: 1.5rem 1.2rem;
            }
            .card {
                padding: 1.5rem 1.2rem;
            }
            .interaction-grid {
                gap: 1.2rem;
            }
            footer .footer-inner {
                flex-direction: column;
                gap: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                flex: 1 1 100%;
            }
        }
        .highlight {
            color: #f0b34b;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: #1f2937;
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #b0bcca;
            margin-right: 0.3rem;
        }
        .stat-box {
            background: #1a212e;
            border-left: 4px solid #f0b34b;
            padding: 1rem 1.4rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .stat-box strong {
            color: #f0b34b;
        }
        blockquote {
            border-left: 4px solid #f0b34b;
            padding: 0.8rem 1.4rem;
            margin: 1.5rem 0;
            background: #151d28;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8d0dc;
        }
        blockquote cite {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: #8a95a8;
            font-style: normal;
        }
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(8px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
