        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f9f7f2;
            color: #2d2a24;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b22222;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #7a1515;
            text-decoration: underline;
        }
        :focus-visible {
            outline: 3px solid #b22222;
            outline-offset: 2px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 16px;
            background: #b22222;
            color: #fff;
            padding: 12px 24px;
            border-radius: 0 0 8px 8px;
            z-index: 10000;
            font-weight: 700;
            transition: top 0.25s ease;
        }
        .skip-link:focus {
            top: 0;
            text-decoration: none;
            color: #fff;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2a24 100%);
            color: #fff;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.2s ease;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
            color: #fff;
        }
        .my-logo .logo-icon {
            font-size: 2rem;
            color: #f5c518;
        }
        .my-logo .logo-sub {
            font-size: 0.7rem;
            font-weight: 400;
            opacity: 0.7;
            letter-spacing: 0.3px;
            display: block;
            line-height: 1.2;
        }
        .my-logo span {
            display: flex;
            flex-direction: column;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s ease;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-toggle .fa-times {
            display: none;
        }
        .nav-toggle.active .fa-bars {
            display: none;
        }
        .nav-toggle.active .fa-times {
            display: inline-block;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #f0ede8;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(245, 197, 24, 0.18);
            color: #f5c518;
            text-decoration: none;
        }
        .main-nav a .nav-icon {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap {
            background: #f0ece4;
            padding: 10px 0;
            border-bottom: 1px solid #ddd8ce;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
            font-size: 0.9rem;
            color: #5a544a;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #999388;
            font-size: 0.8rem;
        }
        .breadcrumb a {
            color: #7a1515;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #2d2a24 0%, #1f1c18 100%);
            color: #fff;
            padding: 60px 20px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.15;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .hero h1 .highlight {
            color: #f5c518;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 24px;
            opacity: 0.88;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        .hero .hero-badge {
            display: inline-block;
            background: rgba(245, 197, 24, 0.18);
            color: #f5c518;
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
            border: 1px solid rgba(245, 197, 24, 0.25);
        }
        .last-updated {
            font-size: 0.8rem;
            opacity: 0.6;
            margin-top: 12px;
            display: block;
        }
        .search-section {
            background: #fff;
            padding: 32px 20px;
            border-bottom: 1px solid #e5dfd6;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #ddd8ce;
            transition: box-shadow 0.3s ease;
        }
        .search-form:focus-within {
            box-shadow: 0 4px 24px rgba(178, 34, 34, 0.12);
            border-color: #b22222;
        }
        .search-form input[type="text"] {
            flex: 1;
            border: none;
            padding: 16px 24px;
            font-size: 1rem;
            background: #fff;
            color: #2d2a24;
            outline: none;
            font-family: inherit;
        }
        .search-form input[type="text"]::placeholder {
            color: #999388;
        }
        .search-form button {
            background: #b22222;
            color: #fff;
            border: none;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: inherit;
        }
        .search-form button:hover {
            background: #7a1515;
        }
        .main-wrap {
            padding: 40px 20px 60px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .article-body {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .article-body h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-top: 56px;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 4px solid #f5c518;
            letter-spacing: -0.3px;
        }
        .article-body h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d2a24;
            margin-top: 36px;
            margin-bottom: 14px;
        }
        .article-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3d3830;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        .article-body p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #3d3830;
        }
        .article-body p.lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #1f1c18;
            border-left: 4px solid #b22222;
            padding-left: 20px;
            background: #f8f5f0;
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
        }
        .article-body ul,
        .article-body ol {
            margin: 16px 0 24px 24px;
            font-size: 1.05rem;
            color: #3d3830;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body strong {
            color: #1a1a1a;
            font-weight: 700;
        }
        .article-body em {
            font-style: italic;
            color: #5a544a;
        }
        .article-body blockquote {
            background: #f0ece4;
            border-left: 6px solid #b22222;
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d3830;
        }
        .article-body blockquote cite {
            display: block;
            margin-top: 8px;
            font-weight: 600;
            font-style: normal;
            color: #7a1515;
        }
        .article-body img {
            border-radius: 16px;
            margin: 28px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .article-body .img-caption {
            font-size: 0.85rem;
            color: #6b655a;
            text-align: center;
            margin-top: -20px;
            margin-bottom: 28px;
        }
        .article-body .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .article-body .info-card {
            background: #fff;
            border-radius: 14px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e5dfd6;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .article-body .info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
        }
        .article-body .info-card h4 {
            margin-top: 0;
            color: #b22222;
        }
        .article-body .info-card .card-icon {
            font-size: 2rem;
            color: #f5c518;
            margin-bottom: 8px;
        }
        .sidebar .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e5dfd6;
        }
        .sidebar .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f5c518;
        }
        .sidebar .link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar .link-list li {
            margin-bottom: 10px;
            border-bottom: 1px solid #f0ece4;
            padding-bottom: 10px;
        }
        .sidebar .link-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: #2d2a24;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .sidebar .link-list a:hover {
            color: #b22222;
            transform: translateX(4px);
            text-decoration: none;
        }
        .sidebar .link-list a .link-icon {
            color: #b22222;
            font-size: 0.8rem;
            width: 20px;
            text-align: center;
        }
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            margin: 32px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e5dfd6;
        }
        .rating-section h3 {
            margin-top: 0;
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            margin: 16px 0;
            font-size: 2rem;
            color: #ddd8ce;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars .star {
            transition: color 0.15s ease, transform 0.15s ease;
            direction: ltr;
        }
        .rating-stars .star:hover,
        .rating-stars .star:hover~.star,
        .rating-stars .star.active,
        .rating-stars .star.active~.star {
            color: #f5c518;
            transform: scale(1.1);
        }
        .rating-stars .star:hover {
            transform: scale(1.2);
        }
        .rating-result {
            font-size: 1rem;
            font-weight: 600;
            color: #5a544a;
            margin-top: 8px;
        }
        .comments-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            margin: 32px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e5dfd6;
        }
        .comments-section h3 {
            margin-top: 0;
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form textarea {
            width: 100%;
            border: 2px solid #ddd8ce;
            border-radius: 12px;
            padding: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            transition: border-color 0.2s ease;
            background: #faf9f6;
        }
        .comment-form textarea:focus {
            border-color: #b22222;
            outline: none;
            background: #fff;
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin: 12px 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            border: 2px solid #ddd8ce;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 1rem;
            font-family: inherit;
            background: #faf9f6;
            transition: border-color 0.2s ease;
        }
        .comment-form .form-row input:focus {
            border-color: #b22222;
            outline: none;
            background: #fff;
        }
        .comment-form .btn-submit {
            background: #b22222;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.15s ease;
            font-family: inherit;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form .btn-submit:hover {
            background: #7a1515;
            transform: scale(1.02);
        }
        .friend-links-section {
            background: #2d2a24;
            color: #f0ede8;
            padding: 40px 20px 32px;
        }
        .friend-links-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        friend-link {
            display: block;
        }
        friend-link h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f5c518;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }
        friend-link .friend-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        friend-link .friend-grid a {
            color: #cbc4b8;
            font-size: 0.95rem;
            transition: color 0.2s ease, transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        friend-link .friend-grid a:hover {
            color: #f5c518;
            transform: translateX(3px);
            text-decoration: none;
        }
        .site-footer {
            background: #1a1a1a;
            color: #a09888;
            padding: 24px 20px;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #3d3830;
        }
        .site-footer .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .site-footer a {
            color: #cbc4b8;
        }
        .site-footer a:hover {
            color: #f5c518;
        }
        .site-footer .copyright {
            opacity: 0.7;
            font-size: 0.85rem;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .sidebar .sidebar-card {
                display: inline-block;
                width: 100%;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 8px;
                gap: 4px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 8px;
                white-space: normal;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero {
                padding: 40px 16px 36px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
                border: none;
                box-shadow: none;
                gap: 8px;
            }
            .search-form input[type="text"] {
                border-radius: 12px;
                border: 2px solid #ddd8ce;
                padding: 14px 18px;
            }
            .search-form button {
                border-radius: 12px;
                justify-content: center;
                padding: 14px 18px;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .article-body h3 {
                font-size: 1.3rem;
            }
            .article-body .card-grid {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            friend-link .friend-grid {
                flex-direction: column;
                gap: 8px;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero .hero-badge {
                font-size: 0.75rem;
                padding: 4px 14px;
            }
            .article-body p {
                font-size: 1rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
        }
        @media print {
            .site-header,
            .search-section,
            .sidebar,
            .rating-section,
            .comments-section,
            .nav-toggle,
            .breadcrumb-wrap,
            .friend-links-section {
                display: none !important;
            }
            .main-grid {
                display: block;
            }
            body {
                background: #fff;
                color: #000;
            }
            .article-body a {
                color: #000;
                text-decoration: underline;
            }
        }
