        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0b0d17;
            color: #e4e6f0;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin: 1.8em 0 0.6em 0;
            color: #f0f2fa;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.4em;
            border-left: 6px solid #f5c842;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.0rem;
            border-bottom: 2px solid #2a2d3e;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #d6daf0;
        }
        h4 {
            font-size: 1.2rem;
            color: #c0c5e0;
        }
        p {
            margin: 0.8em 0 1.2em 0;
            color: #d2d6ec;
        }
        ul,
        ol {
            margin: 0.6em 0 1.2em 1.8em;
        }
        li {
            margin-bottom: 0.3em;
        }
        .container {
            background: #12141f;
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem 2rem;
            margin: 1.5rem 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
        }
        .highlight {
            background: #1e2132;
            padding: 0.1em 0.4em;
            border-radius: 6px;
            color: #f5c842;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #f5c842;
            color: #0b0d17;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2em 0.8em;
            border-radius: 40px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.3rem;
        }
        .text-muted {
            color: #8b8fa8;
        }
        .text-small {
            font-size: 0.85rem;
        }
        .flex-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            align-items: center;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 1rem;
            }
            body {
                padding: 0 0.5rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.6rem 0;
            border-bottom: 1px solid #2a2d3e;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f5c842, #e6a800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(245, 200, 66, 0.15);
            display: inline-block;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: #8b8fa8;
            color: #8b8fa8;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3em;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 1.2rem;
            align-items: center;
        }
        .main-nav a {
            color: #c8cce6;
            font-weight: 500;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            border-bottom-color: #f5c842;
            color: #f5c842;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0f2fa;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
        }
        @media (max-width: 750px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem 0;
                gap: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1.1rem;
                padding: 0.4rem 0;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            padding: 0.8rem 0 0.2rem 0;
            color: #8b8fa8;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li {
            display: inline;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #555;
        }
        .breadcrumb a {
            color: #b0b4d0;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1.2rem 0 0.8rem 0;
            max-width: 600px;
        }
        .search-form input[type="text"] {
            flex: 1 1 200px;
            padding: 0.75rem 1.2rem;
            border: none;
            border-radius: 60px;
            background: #1e2132;
            color: #f0f2fa;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: 0.2s;
        }
        .search-form input[type="text"]:focus {
            outline-color: #f5c842;
            background: #282c42;
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            border: none;
            border-radius: 60px;
            background: #f5c842;
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffdd66;
            transform: scale(1.02);
        }
        .comment-box,
        .rating-box {
            background: #181b2a;
            border-radius: 20px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
        }
        .comment-box textarea,
        .rating-box textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 16px;
            background: #1e2132;
            color: #e4e6f0;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            outline: 2px solid transparent;
            transition: 0.2s;
            font-family: inherit;
        }
        .comment-box textarea:focus,
        .rating-box textarea:focus {
            outline-color: #f5c842;
        }
        .comment-box input[type="text"],
        .rating-box input[type="text"] {
            width: 100%;
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 12px;
            background: #1e2132;
            color: #e4e6f0;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: 0.2s;
            margin-bottom: 0.8rem;
        }
        .comment-box input[type="text"]:focus,
        .rating-box input[type="text"]:focus {
            outline-color: #f5c842;
        }
        .btn {
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 60px;
            background: #f5c842;
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-block;
        }
        .btn:hover {
            background: #ffdd66;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5c842;
            color: #f5c842;
        }
        .btn-outline:hover {
            background: #f5c842;
            color: #0b0d17;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 2rem;
            color: #4a4d63;
            cursor: pointer;
            margin: 0.6rem 0 1rem 0;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f5c842;
        }
        .star-rating .active {
            color: #f5c842;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.8rem 0;
            border-top: 1px solid #2a2d3e;
            margin-top: 2rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1.2rem 0.2rem 0;
            color: #b0b4d0;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        .copyright {
            text-align: center;
            padding: 1.5rem 0 1rem 0;
            color: #6b6f8a;
            font-size: 0.85rem;
            border-top: 1px solid #1e2132;
            margin-top: 0.5rem;
        }
        .image-card {
            border-radius: 20px;
            overflow: hidden;
            margin: 1.8rem 0;
            background: #181b2a;
            padding: 0.6rem;
        }
        .image-card img {
            border-radius: 14px;
        }
        .image-card figcaption {
            padding: 0.6rem 0.4rem 0.2rem 0.4rem;
            font-size: 0.85rem;
            color: #8b8fa8;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #1e2132;
            color: #f5c842;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #2a2d3e;
        }
        .data-table tr:hover td {
            background: #1a1d2e;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f5c842;
            color: #0b0d17;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(245, 200, 66, 0.25);
            cursor: pointer;
            transition: 0.3s;
            border: none;
            z-index: 99;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            background: #ffdd66;
        }
        @media (max-width: 500px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .text-center {
            text-align: center;
        }
        .pill {
            background: #2a2d3e;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            display: inline-block;
            font-size: 0.8rem;
            color: #b0b4d0;
        }
        .inline-links a {
            margin: 0 0.4rem;
        }
