        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d1a;
            color: #e8e8f0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd77;
            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 {
            line-height: 1.25;
            color: #fff;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.2rem;
            border-left: 6px solid #f5c542;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #2a2a4a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0d98b;
        }
        h4 {
            font-size: 1.2rem;
            color: #c8b87c;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong,
        b {
            color: #ffe29a;
            font-weight: 700;
        }
        em {
            color: #c8d6e5;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f2a 0%, #1a1a3e 100%);
            border-bottom: 3px solid #f5c542;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #f5c542;
            text-transform: uppercase;
            letter-spacing: 4px;
            text-shadow: 0 0 20px rgba(245, 197, 66, 0.3);
            transition: transform 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffdd77;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #fff;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 1px;
            color: #aaa;
            display: block;
            line-height: 1;
        }
        .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.9rem;
            color: #ddd;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #f5c542;
            color: #0d0d1a;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            border-radius: 8px;
            color: #f5c542;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .hamburger:hover {
            background: #f5c542;
            color: #0d0d1a;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #1a1a30;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2a2a4a;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "\f105";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #b0b0d0;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #f5c542;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0d0d1a 0%, #1a1a3e 100%);
            padding: 2.5rem 0 1.5rem;
            text-align: center;
            border-bottom: 1px solid #2a2a4a;
        }
        .hero h1 {
            font-size: 3rem;
            border-left: none;
            padding-left: 0;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #f5c542, #ffdd77);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b8b8d0;
            max-width: 750px;
            margin: 0 auto;
        }
        .search-block {
            background: #16162e;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a2a4a;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }
        .search-block form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-block input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.9rem 1.4rem;
            border-radius: 40px;
            border: 2px solid #3a3a5a;
            background: #0d0d1a;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }
        .search-block input[type="text"]:focus {
            border-color: #f5c542;
        }
        .search-block button {
            padding: 0.9rem 2rem;
            border-radius: 40px;
            border: none;
            background: #f5c542;
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-block button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-box {
            background: #16162e;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #2a2a4a;
            margin-bottom: 1.5rem;
        }
        .sidebar-box h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #2a2a4a;
            padding-bottom: 0.5rem;
        }
        .sidebar-box ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-box li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1e1e3a;
        }
        .sidebar-box li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-box li a i {
            width: 20px;
            color: #f5c542;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a1a30;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
        }
        .featured-image figcaption {
            padding: 0.8rem 1rem 0.2rem;
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            background: #16162e;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2a4a;
        }
        .data-table th {
            background: #f5c542;
            color: #0d0d1a;
            padding: 0.8rem 1.2rem;
            text-align: left;
            font-weight: 700;
        }
        .data-table td {
            padding: 0.7rem 1.2rem;
            border-bottom: 1px solid #2a2a4a;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1e1e3a;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .comment-box,
        .score-box {
            background: #16162e;
            border-radius: 16px;
            padding: 1.8rem;
            border: 1px solid #2a2a4a;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-box form,
        .score-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .comment-box input,
        .comment-box textarea,
        .score-box select {
            padding: 0.8rem 1.2rem;
            border-radius: 10px;
            border: 2px solid #3a3a5a;
            background: #0d0d1a;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s ease;
            font-family: inherit;
        }
        .comment-box input:focus,
        .comment-box textarea:focus,
        .score-box select:focus {
            border-color: #f5c542;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-box button,
        .score-box button {
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: #f5c542;
            color: #0d0d1a;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .site-footer {
            background: #0a0a18;
            border-top: 3px solid #f5c542;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f5c542;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid li {
            padding: 0.25rem 0;
        }
        .footer-grid li a {
            color: #b0b0d0;
            font-size: 0.9rem;
        }
        .footer-grid li a:hover {
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
            border-top: 1px solid #1e1e3a;
            border-bottom: 1px solid #1e1e3a;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            color: #b0b0d0;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1e1e3a;
            color: #777;
            font-size: 0.85rem;
        }
        .copyright i {
            color: #f5c542;
        }
        .last-update {
            display: inline-block;
            background: #1a1a30;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #aaa;
            border: 1px solid #2a2a4a;
            margin-bottom: 1rem;
        }
        .last-update i {
            margin-right: 6px;
            color: #f5c542;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f0f2a;
                padding: 1rem 0;
                border-top: 2px solid #f5c542;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
                width: 100%;
                text-align: left;
                border-left: 3px solid transparent;
            }
            .main-nav a:hover {
                background: #1a1a3e;
                border-left-color: #f5c542;
                color: #f5c542;
            }
            .nav-toggle:checked~.main-nav {
                display: flex;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .search-block form {
                flex-direction: column;
            }
            .search-block input[type="text"] {
                min-width: auto;
                width: 100%;
            }
            .search-block button {
                width: 100%;
                justify-content: center;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
                letter-spacing: 2px;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
            }
            .comment-box,
            .score-box,
            .search-block {
                padding: 1rem;
            }
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a3e, #0f0f2a);
            border-left: 6px solid #f5c542;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-lg {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .fa-ul i {
            color: #f5c542;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f5c542;
            color: #0d0d1a;
            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, 197, 66, 0.3);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            z-index: 999;
        }
        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(245, 197, 66, 0.5);
        }
        @media (max-width: 768px) {
            .back-to-top {
                bottom: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }
        .skeleton-loading {
            background: linear-gradient(90deg, #1a1a30 25%, #2a2a4a 50%, #1a1a30 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 8px;
            height: 20px;
            margin-bottom: 0.8rem;
        }
        @keyframes shimmer {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }
