        *, *::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: #e8edf5;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6fc3df;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }
        a:hover, a:focus {
            color: #ffd966;
            opacity: 0.92;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul, ol {
            padding-left: 1.5rem;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: #f5f9ff;
        }
        h1 {
            font-size: 2.6rem;
            margin: 0.5rem 0 1.2rem;
        }
        h2 {
            font-size: 2rem;
            margin: 2.2rem 0 1rem;
            border-bottom: 2px solid #2a3a4e;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
            color: #d4e2f7;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.2rem 0 0.6rem;
            color: #b8cef0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong {
            color: #ffd966;
            font-weight: 600;
        }
        em {
            color: #b8d0f0;
            font-style: italic;
        }
        blockquote {
            border-left: 5px solid #6fc3df;
            background: #141c26;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 1px solid #2a3a4e;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #10161e;
            border-bottom: 1px solid #1f2c3a;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(11, 14, 20, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffd966, #faa51a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #faa51a;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.6rem 1.4rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            position: relative;
            color: #c8d6e8;
        }
        .nav-bar a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffd966;
            transition: width 0.3s ease;
        }
        .nav-bar a:hover::after,
        .nav-bar a:focus::after {
            width: 100%;
        }
        .nav-bar a.active {
            color: #ffd966;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8edf5;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .breadcrumb {
            background: #141c26;
            padding: 0.7rem 0;
            border-bottom: 1px solid #1f2c3a;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 0.6rem;
            color: #5a7a94;
        }
        .breadcrumb a {
            color: #8ab4d0;
        }
        .breadcrumb .current {
            color: #ffd966;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .featured-figure {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            background: #141c26;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .featured-figure img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 1rem 1.5rem;
            font-size: 0.95rem;
            color: #a0b8d0;
            border-top: 1px solid #1f2c3a;
        }
        .search-section {
            background: #141c26;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 2.5rem;
            border: 1px solid #1f2c3a;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #2a3a4e;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #6fc3df;
            box-shadow: 0 0 0 3px rgba(111, 195, 223, 0.2);
        }
        .search-form button {
            background: #faa51a;
            border: none;
            border-radius: 40px;
            padding: 0.8rem 1.8rem;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .interaction-card {
            background: #141c26;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid #1f2c3a;
        }
        .interaction-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #3a4a5e;
            cursor: pointer;
            margin: 0.8rem 0 1rem;
        }
        .star-rating i {
            transition: color 0.25s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.hover,
        .star-rating i.active {
            color: #ffd966;
            transform: scale(1.1);
        }
        .rating-score {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffd966;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 1px solid #2a3a4e;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            outline: none;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #6fc3df;
        }
        .comment-form button,
        .rating-form button {
            background: #2a5f7a;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.6rem;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 0.6rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #3a7a9a;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 0.8rem 1.2rem;
            margin: 1.5rem 0;
            padding: 0;
            list-style: none;
        }
        .link-grid li a {
            display: block;
            padding: 0.7rem 1rem;
            background: #141c26;
            border-radius: 10px;
            border: 1px solid #1f2c3a;
            transition: background 0.25s, border-color 0.25s, transform 0.15s;
            font-weight: 500;
        }
        .link-grid li a:hover {
            background: #1a2533;
            border-color: #6fc3df;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .link-grid li a i {
            margin-right: 0.6rem;
            color: #faa51a;
        }
        .content-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #141c26;
            border-radius: 12px;
            overflow: hidden;
        }
        .content-table th {
            background: #1a2a3a;
            color: #ffd966;
            font-weight: 600;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        .content-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #1f2c3a;
        }
        .content-table tr:last-child td {
            border-bottom: none;
        }
        .content-table tr:hover td {
            background: #1a2533;
        }
        .site-footer {
            background: #0d121a;
            border-top: 1px solid #1f2c3a;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-brand h3 {
            margin-top: 0;
            font-size: 1.4rem;
            color: #ffd966;
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: #141c26;
            border-radius: 6px;
            border: 1px solid #1f2c3a;
            font-size: 0.9rem;
            transition: background 0.25s;
        }
        friend-link a:hover {
            background: #1a2533;
            border-color: #6fc3df;
        }
        .footer-copy {
            border-top: 1px solid #1f2c3a;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #7a8fa5;
        }
        .footer-copy strong {
            color: #b8cef0;
        }
        @media (max-width: 900px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #10161e;
                padding: 1rem 0 0.8rem;
                border-top: 1px solid #1f2c3a;
                margin-top: 0.4rem;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-bar a {
                padding: 0.6rem 0.2rem;
                font-size: 1.05rem;
            }
            .header-inner {
                align-items: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            h1 {
                font-size: 1.7rem;
            }
            .container {
                padding: 0 1rem;
            }
            .interaction-card {
                padding: 1.2rem 1.2rem;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 420px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        .text-muted {
            color: #7a8fa5;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .tag {
            display: inline-block;
            background: #1a2a3a;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #a0b8d0;
        }
