        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0a0c;
            color: #e8e4e0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            background-image: radial-gradient(ellipse at 20% 50%, #1a1418 0%, #0b0a0c 70%);
            min-height: 100vh;
        }
        a {
            color: #f0b87b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd7a5;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5ede6;
            letter-spacing: 0.02em;
        }
        h1 {
            font-size: 2.6rem;
            margin: 0 0 1.2rem;
            text-shadow: 0 0 30px rgba(200, 80, 40, 0.25);
        }
        h2 {
            font-size: 2rem;
            margin: 2.8rem 0 1rem;
            border-left: 6px solid #d94a2a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.75rem;
            color: #f0c8a8;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem;
            color: #e0b89a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong,
        b {
            color: #f5d6b8;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #dbb594;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #d94a2a55, #d94a2a, #d94a2a55);
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            background: #d94a2a;
            color: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 0 0 8px 8px;
            z-index: 999;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            background: #131012;
            border-bottom: 2px solid #2d1f1a;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(19, 16, 18, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            color: #f5ede6;
            text-shadow: 0 0 20px rgba(217, 74, 42, 0.3);
            transition: text-shadow 0.3s;
        }
        .my-logo:hover {
            text-shadow: 0 0 40px rgba(217, 74, 42, 0.6);
            text-decoration: none;
        }
        .my-logo span {
            color: #d94a2a;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #b08a7a;
            display: block;
            letter-spacing: 0.12em;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d94a2a;
            color: #f5ede6;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2d1f1a;
        }
        .nav-toggle .fa-times {
            display: none;
        }
        .nav-toggle.active .fa-bars {
            display: none;
        }
        .nav-toggle.active .fa-times {
            display: inline-block;
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.1rem;
            align-items: center;
        }
        .primary-nav a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #d4c8c0;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover,
        .primary-nav a:focus {
            background: #2d1f1a;
            color: #f5ede6;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #d94a2a;
            color: #fff;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #b08a7a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #d94a2a;
            margin-right: 0.6rem;
            font-size: 1.2rem;
        }
        .breadcrumb a {
            color: #c8a890;
        }
        .breadcrumb a:hover {
            color: #f0b87b;
        }
        .breadcrumb .current {
            color: #e8dcd0;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
            background: linear-gradient(180deg, #1a1418 0%, #0b0a0c 100%);
            border-bottom: 1px solid #2d1f1a;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }
        .hero .subtitle {
            font-size: 1.2rem;
            color: #c8a890;
            max-width: 720px;
            margin: 0 auto 1rem;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #b08a7a;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem 2rem;
        }
        .hero .meta-info i {
            color: #d94a2a;
            margin-right: 0.4rem;
        }
        .search-section {
            background: #1a1418;
            padding: 1.5rem 0;
            border-bottom: 1px solid #2d1f1a;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 0.5rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid #2d1f1a;
            border-radius: 30px;
            background: #0b0a0c;
            color: #f5ede6;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #d94a2a;
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 30px;
            background: #d94a2a;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-form button:hover {
            background: #e85a3a;
            transform: scale(1.02);
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media(max-width:920px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            min-width: 0;
        }
        .article-body figure {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            background: #1a1418;
            padding: 0.5rem;
            border: 1px solid #2d1f1a;
        }
        .article-body figure img {
            border-radius: 8px;
            width: 100%;
        }
        .article-body figure figcaption {
            padding: 0.8rem 0.5rem 0.3rem;
            font-size: 0.9rem;
            color: #b08a7a;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            background: #131012;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            border: 1px solid #2d1f1a;
            position: sticky;
            top: 90px;
            align-self: start;
            max-height: calc(100vh - 120px);
            overflow-y: auto;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            margin-top: 0;
            border-bottom: 2px solid #2d1f1a;
            padding-bottom: 0.6rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.4rem;
        }
        .sidebar a {
            display: block;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
            background: #1a1418;
            border-left: 3px solid transparent;
            transition: background 0.2s, border-color 0.2s;
            font-size: 0.95rem;
        }
        .sidebar a:hover {
            background: #2d1f1a;
            border-left-color: #d94a2a;
            text-decoration: none;
        }
        .highlight-box {
            background: #1a1418;
            border-left: 6px solid #d94a2a;
            border-radius: 0 12px 12px 0;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #1a1418;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th,
        .data-table td {
            padding: 0.8rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #2d1f1a;
        }
        .data-table th {
            background: #2d1f1a;
            color: #f0c8a8;
            font-weight: 600;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1f181c;
        }
        .score-area {
            background: #1a1418;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2d1f1a;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .score-display {
            text-align: center;
            min-width: 140px;
        }
        .score-display .big-score {
            font-size: 3.4rem;
            font-weight: 800;
            color: #f0b87b;
            line-height: 1;
        }
        .score-display .stars {
            color: #f5b342;
            font-size: 1.4rem;
            letter-spacing: 4px;
            margin: 0.2rem 0;
        }
        .score-display .label {
            font-size: 0.9rem;
            color: #b08a7a;
        }
        .score-form {
            flex: 1;
            min-width: 200px;
        }
        .score-form .star-rating {
            display: inline-flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .score-form .star-rating input {
            display: none;
        }
        .score-form .star-rating label {
            color: #3d2f2a;
            transition: color 0.2s;
            cursor: pointer;
        }
        .score-form .star-rating input:checked~label,
        .score-form .star-rating label:hover,
        .score-form .star-rating label:hover~label {
            color: #f5b342;
        }
        .score-form button {
            display: block;
            margin-top: 0.8rem;
            padding: 0.6rem 2rem;
            border: none;
            border-radius: 30px;
            background: #d94a2a;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .score-form button:hover {
            background: #e85a3a;
        }
        .comments-section {
            margin: 3rem 0;
            background: #131012;
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid #2d1f1a;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #2d1f1a;
            border-radius: 12px;
            background: #0b0a0c;
            color: #f5ede6;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #d94a2a;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #2d1f1a;
            border-radius: 30px;
            background: #0b0a0c;
            color: #f5ede6;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form .form-row input:focus {
            border-color: #d94a2a;
        }
        .comment-form button {
            padding: 0.7rem 2.2rem;
            border: none;
            border-radius: 30px;
            background: #d94a2a;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            margin-top: 1rem;
        }
        .comment-form button:hover {
            background: #e85a3a;
        }
        .comment-list {
            margin-top: 2rem;
        }
        .comment-item {
            padding: 1.2rem 0;
            border-bottom: 1px solid #2d1f1a;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 600;
            color: #f0c8a8;
        }
        .comment-item .date {
            font-size: 0.85rem;
            color: #b08a7a;
            margin-left: 1rem;
        }
        .comment-item .text {
            margin-top: 0.4rem;
        }
        .site-footer {
            background: #0b0a0c;
            border-top: 2px solid #2d1f1a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media(max-width:700px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-grid h4 {
            color: #f0c8a8;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid li {
            margin-bottom: 0.3rem;
        }
        .footer-grid a {
            font-size: 0.95rem;
            color: #c8a890;
        }
        .footer-grid a:hover {
            color: #f0b87b;
        }
        friend-link {
            display: block;
            background: #131012;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0 0.5rem;
            border: 1px solid #2d1f1a;
        }
        friend-link .fl-title {
            font-weight: 600;
            color: #f0c8a8;
            margin-bottom: 0.6rem;
            display: block;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.2rem;
        }
        friend-link .fl-list a {
            font-size: 0.95rem;
        }
        .copyright {
            text-align: center;
            padding: 1.5rem 0 0;
            border-top: 1px solid #2d1f1a;
            margin-top: 2rem;
            color: #b08a7a;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #d4c8c0;
        }
        @media(max-width:768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #131012;
                padding: 1rem 0;
                border-top: 1px solid #2d1f1a;
                margin-top: 0.5rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
                width: 100%;
            }
            .sidebar {
                position: static;
                max-height: none;
            }
            .score-area {
                flex-direction: column;
                text-align: center;
            }
            .header-inner {
                gap: 0.3rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .data-table {
                font-size: 0.9rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.7rem;
            }
        }
        @media(max-width:420px) {
            .hero .meta-info {
                flex-direction: column;
                gap: 0.3rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        .text-small {
            font-size: 0.9rem;
            color: #b08a7a;
        }
        .text-muted {
            color: #b08a7a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gap-1 {
            gap: 1rem;
        }
        .rounded-full {
            border-radius: 999px;
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0a0c;
        }
        ::-webkit-scrollbar-thumb {
            background: #2d1f1a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #d94a2a;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }
