        *,
        *::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, sans-serif;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffb347;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd700;
            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.25;
            color: #fff;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.6rem;
            letter-spacing: -0.02em;
            border-left: 6px solid #ff6b35;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #2a2a3e;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #ffb347;
        }
        h4 {
            font-size: 1.2rem;
            color: #c0c0dd;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 0.8rem 0;
            border-bottom: 2px solid #ff6b3550;
            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;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b35, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ff6b35;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            padding: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #cccce0;
            transition: background 0.25s, color 0.25s;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: #ff6b3520;
            color: #ffb347;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #ffb347;
            color: #ffb347;
            font-size: 1.6rem;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.25s;
        }
        .hamburger:hover {
            background: #ff6b3520;
        }
        .breadcrumb {
            background: #1c1c30;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2a40;
        }
        .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: #7777aa;
        }
        .breadcrumb a {
            color: #9999bb;
        }
        .breadcrumb .current {
            color: #ffb347;
            font-weight: 500;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 1.6rem;
            margin-bottom: 1.8rem;
            border: 1px solid #2a2a44;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 1px solid #2a2a44;
            padding-bottom: 0.6rem;
            margin-bottom: 1rem;
        }
        .sidebar-card .fa-star {
            color: #ffd700;
        }
        .score-display {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffd700;
            text-align: center;
        }
        .score-stars {
            text-align: center;
            font-size: 1.6rem;
            margin: 0.4rem 0 0.8rem;
        }
        .score-stars .fa-star-half-alt {
            color: #ffd700;
        }
        .search-form {
            display: flex;
            gap: 0.4rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border-radius: 30px;
            border: 1px solid #3a3a5a;
            background: #0f0f1a;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: 0.25s;
        }
        .search-form input:focus {
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px #ff6b3520;
        }
        .search-form button {
            background: #ff6b35;
            border: none;
            color: #fff;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
        }
        .search-form button:hover {
            background: #e85d2a;
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 1px solid #3a3a5a;
            background: #0f0f1a;
            color: #fff;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px #ff6b3520;
        }
        .comment-form .btn-row {
            display: flex;
            gap: 0.6rem;
            margin-top: 0.6rem;
            flex-wrap: wrap;
        }
        .btn {
            background: #ff6b35;
            border: none;
            color: #fff;
            padding: 0.6rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .btn:hover {
            background: #e85d2a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px #ff6b3530;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #ff6b35;
            color: #ffb347;
        }
        .btn-outline:hover {
            background: #ff6b3515;
        }
        .rating-select {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            cursor: pointer;
            justify-content: center;
            padding: 0.4rem 0;
        }
        .rating-select .fa-star {
            color: #444466;
            transition: 0.2s;
        }
        .rating-select .fa-star.active,
        .rating-select .fa-star:hover,
        .rating-select .fa-star:hover~.fa-star {
            color: #ffd700;
        }
        .rating-select .fa-star:hover {
            transform: scale(1.2);
        }
        .featured-figure {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            background: #1a1a2e;
            padding: 0.6rem;
        }
        .featured-figure img {
            border-radius: 10px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.8rem 0.4rem 0.2rem;
            font-size: 0.9rem;
            color: #aaaacc;
            text-align: center;
            font-style: italic;
        }
        .inline-links {
            background: #1a1a2e;
            border-left: 4px solid #ff6b35;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .inline-links ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        .inline-links li a {
            font-weight: 500;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            background: #14142a;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th,
        .data-table td {
            padding: 0.8rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #2a2a44;
        }
        .data-table th {
            background: #1f1f38;
            color: #ffb347;
            font-weight: 600;
        }
        .data-table tr:hover td {
            background: #1a1a32;
        }
        footer {
            background: #0a0a18;
            border-top: 2px solid #1a1a32;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        footer h4 {
            color: #ffb347;
            margin-top: 0;
            font-size: 1.1rem;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 0.4rem;
        }
        footer ul li a {
            color: #9999bb;
            font-size: 0.95rem;
        }
        footer ul li a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            padding: 0.3rem 0.8rem;
            background: #1a1a2e;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #2a2a44;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #1a1a2e;
            font-size: 0.85rem;
            color: #666688;
        }
        .copyright .heart {
            color: #ff6b35;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                border-radius: 12px;
                padding: 0.8rem 0;
                margin-top: 0.8rem;
                border: 1px solid #2a2a44;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 0.7rem 1.4rem;
                border-radius: 0;
            }
            .header-inner {
                align-items: center;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                width: 100%;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .score-display {
                font-size: 2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .rating-select {
                font-size: 1.4rem;
            }
            .inline-links ul {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        .text-muted {
            color: #8888aa;
        }
        .text-glow {
            text-shadow: 0 0 20px #ff6b3540;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .badge {
            background: #ff6b3520;
            color: #ffb347;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .comment-list {
            margin-top: 1.2rem;
            max-height: 300px;
            overflow-y: auto;
        }
        .comment-item {
            background: #14142a;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            margin-bottom: 0.6rem;
            border-left: 3px solid #ff6b35;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #7777aa;
        }
        .comment-item .text {
            margin-top: 0.2rem;
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a5a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff6b3560;
        }
