        *,
        *::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, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #7ec8e3;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #b3e4f5;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f0f4f8;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f5c542;
            padding-bottom: 0.5rem;
            display: inline-block;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f5c542;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #d4e4ed;
        }
        h4 {
            font-size: 1.15rem;
            color: #b8d0dc;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #141a24;
            border-bottom: 2px solid #2a3342;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.7rem 0;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c542, #e8a317);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 197, 66, 0.15);
            transition: transform 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c542;
            font-size: 1.7rem;
        }
        .my-logo span {
            -webkit-text-fill-color: initial;
            color: #f5c542;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #c8d6e5;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #2a3342;
            color: #f5c542;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f5c542;
            color: #0b0e14;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 6px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2838;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #e8edf2;
            border-radius: 4px;
            transition: transform 0.25s, opacity 0.25s;
        }
        .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);
        }
        .breadcrumbs {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.88rem;
            color: #8a9aa8;
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a6a7a;
        }
        .breadcrumbs a {
            color: #7ec8e3;
        }
        .breadcrumbs .current {
            color: #f5c542;
            font-weight: 500;
        }
        .search-section {
            background: #141a24;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a3342;
        }
        .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: 2px solid #2a3342;
            background: #0b0e14;
            color: #e8edf2;
            font-size: 1rem;
            transition: border 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
            outline: none;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            border-radius: 40px;
            border: none;
            background: #f5c542;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #e8b830;
            transform: scale(1.02);
        }
        .rating-box {
            background: #141a24;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a3342;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 2rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #4a5568;
            cursor: pointer;
            transition: color 0.15s;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #f5c542;
            transform: scale(1.12);
        }
        .rating-stars i.selected {
            color: #f5c542;
        }
        .rating-form button {
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: #f5c542;
            color: #0b0e14;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #e8b830;
        }
        .comments-section {
            background: #141a24;
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid #2a3342;
        }
        .comments-section textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 12px;
            border: 2px solid #2a3342;
            background: #0b0e14;
            color: #e8edf2;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border 0.25s;
        }
        .comments-section textarea:focus {
            border-color: #f5c542;
            outline: none;
        }
        .comments-section .comment-form button {
            padding: 0.7rem 2rem;
            border-radius: 30px;
            border: none;
            background: #f5c542;
            color: #0b0e14;
            font-weight: 600;
            cursor: pointer;
            margin-top: 0.8rem;
            transition: background 0.2s;
        }
        .comments-section .comment-form button:hover {
            background: #e8b830;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #0f141e;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a3342;
        }
        .data-table th {
            background: #1f2838;
            color: #f5c542;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-top: 1px solid #1f2838;
        }
        .data-table tr:hover td {
            background: #1a2230;
        }
        .img-card {
            border-radius: 16px;
            overflow: hidden;
            margin: 2rem 0;
            border: 1px solid #2a3342;
            background: #0f141e;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .img-card img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .img-card figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.92rem;
            color: #aabac8;
            font-style: italic;
            border-top: 1px solid #1f2838;
        }
        blockquote {
            border-left: 5px solid #f5c542;
            background: #141a24;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8d6e5;
        }
        blockquote cite {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #f5c542;
        }
        .badge {
            display: inline-block;
            background: #2a3342;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #b8d0dc;
            margin-right: 0.4rem;
        }
        .badge-gold {
            background: #f5c542;
            color: #0b0e14;
        }
        .site-footer {
            background: #0d111a;
            border-top: 2px solid #1f2838;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            padding: 0.3rem 0;
            color: #7ec8e3;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        .footer-copy {
            text-align: center;
            border-top: 1px solid #1f2838;
            padding-top: 1.5rem;
            color: #6a7a88;
            font-size: 0.88rem;
        }
        .footer-copy strong {
            color: #b8d0dc;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                padding: 0.5rem 0;
            }
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141a24;
                padding: 1rem 0 0.8rem;
                border-top: 1px solid #2a3342;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 8px;
                width: 100%;
            }
            .search-section {
                padding: 1.2rem;
            }
            .rating-box {
                flex-direction: column;
                align-items: flex-start;
            }
            .comments-section {
                padding: 1.2rem;
            }
            .breadcrumbs {
                font-size: 0.8rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.7rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-form input[type="text"] {
                min-width: 120px;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .rating-stars {
                font-size: 1.3rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
        .highlight {
            color: #f5c542;
            font-weight: 600;
        }
        .small-meta {
            color: #6a7a88;
            font-size: 0.85rem;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .no-ul:hover {
            text-decoration: none;
        }
