        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0f1117;
            color: #e4e6ea;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #fbbf24;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #f59e0b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --bg-primary: #0f1117;
            --bg-secondary: #1a1d27;
            --bg-card: #232733;
            --accent-gold: #fbbf24;
            --accent-orange: #f59e0b;
            --accent-red: #ef4444;
            --text-primary: #e4e6ea;
            --text-secondary: #9ca3af;
            --border-color: #2d3142;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            --radius: 12px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .site-header {
            background: linear-gradient(135deg, #1a1d27 0%, #0f1117 100%);
            border-bottom: 2px solid var(--border-color);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            background: linear-gradient(135deg, #fbbf24, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.5rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.92;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-list a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .nav-list a:hover,
        .nav-list a:focus-visible {
            color: var(--accent-gold);
            background: rgba(251, 191, 36, 0.08);
            border-color: rgba(251, 191, 36, 0.2);
            text-decoration: none;
        }
        .nav-list a.active {
            color: var(--accent-gold);
            background: rgba(251, 191, 36, 0.12);
            border-color: rgba(251, 191, 36, 0.25);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .hamburger .fa-times {
            display: none;
        }
        .hamburger.active .fa-bars {
            display: none;
        }
        .hamburger.active .fa-times {
            display: inline;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb .sep {
            color: #4b5563;
            font-size: 0.7rem;
        }
        main {
            flex: 1;
            padding: 32px 0 60px;
        }
        article h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin: 16px 0 20px;
            letter-spacing: -1px;
        }
        article h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-color);
            letter-spacing: -0.3px;
        }
        article h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: #fde68a;
            margin: 32px 0 12px;
            letter-spacing: -0.2px;
        }
        article h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #d4d4d8;
            margin: 24px 0 10px;
        }
        article p {
            margin-bottom: 18px;
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
        }
        article strong {
            color: #f3f4f6;
            font-weight: 600;
        }
        article em {
            color: #d4d4d8;
            font-style: italic;
        }
        article ul,
        article ol {
            margin: 12px 0 20px 24px;
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
        }
        article li {
            margin-bottom: 6px;
        }
        article .highlight-box {
            background: var(--bg-card);
            border-left: 4px solid var(--accent-gold);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
        article .highlight-box p {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            background: var(--bg-secondary);
            text-align: center;
            font-style: italic;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            background: var(--bg-card);
            padding: 6px 16px;
            border-radius: 40px;
            margin-bottom: 16px;
        }
        .last-updated i {
            color: var(--accent-gold);
        }
        .search-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin: 40px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .search-section h3 {
            margin-top: 0;
            margin-bottom: 16px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid var(--border-color);
            background: var(--bg-primary);
            color: var(--text-primary);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0f1117;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 24px rgba(251, 191, 36, 0.35);
        }
        .comments-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin: 40px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .comments-section h3 {
            margin-top: 0;
            margin-bottom: 16px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 20px;
            border-radius: 12px;
            border: 2px solid var(--border-color);
            background: var(--bg-primary);
            color: var(--text-primary);
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            outline: none;
            transition: var(--transition);
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 12px 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 40px;
            border: 2px solid var(--border-color);
            background: var(--bg-primary);
            color: var(--text-primary);
            font-size: 0.95rem;
            outline: none;
            transition: var(--transition);
        }
        .comment-form .form-row input:focus {
            border-color: var(--accent-gold);
        }
        .comment-form button {
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0f1117;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(251, 191, 36, 0.3);
        }
        .rating-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin: 40px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            text-align: center;
        }
        .rating-section h3 {
            margin-top: 0;
            margin-bottom: 12px;
        }
        .stars {
            display: inline-flex;
            gap: 8px;
            font-size: 2.2rem;
            cursor: pointer;
            margin: 12px 0;
        }
        .stars i {
            color: #4b5563;
            transition: var(--transition);
        }
        .stars i.active,
        .stars i:hover {
            color: var(--accent-gold);
            transform: scale(1.1);
        }
        .rating-section button {
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0f1117;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
            margin-top: 8px;
        }
        .rating-section button:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 24px rgba(251, 191, 36, 0.35);
        }
        .rating-result {
            margin-top: 12px;
            font-size: 1.1rem;
            color: var(--text-secondary);
        }
        friend-link {
            display: block;
            background: var(--bg-secondary);
            border-top: 2px solid var(--border-color);
            padding: 32px 0 24px;
            margin-top: 40px;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
        }
        friend-link a {
            font-size: 0.95rem;
            color: var(--text-secondary);
            padding: 4px 8px;
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--accent-gold);
            background: rgba(251, 191, 36, 0.05);
            text-decoration: none;
        }
        friend-link .fl-label {
            width: 100%;
            text-align: center;
            font-size: 0.85rem;
            color: #6b7280;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .site-footer {
            background: #0a0c12;
            border-top: 2px solid var(--border-color);
            padding: 24px 0;
            text-align: center;
            font-size: 0.9rem;
            color: #6b7280;
        }
        .site-footer .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 20px;
            align-items: center;
        }
        .site-footer a {
            color: #9ca3af;
        }
        .site-footer a:hover {
            color: var(--accent-gold);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-secondary);
                border-radius: var(--radius);
                padding: 12px;
                margin-top: 8px;
                border: 1px solid var(--border-color);
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list a {
                padding: 12px 16px;
                border-radius: 8px;
                width: 100%;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-wrapper {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            article h1 {
                font-size: 1.9rem;
            }
            article h2 {
                font-size: 1.5rem;
            }
            article h3 {
                font-size: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                min-width: auto;
            }
            .stars {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 14px;
            }
            .search-section,
            .comments-section,
            .rating-section {
                padding: 20px 18px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.35rem;
            }
            article h1 {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .last-updated {
                font-size: 0.75rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: #3b3f54;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555a74;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 20px;
            background: var(--accent-gold);
            color: #0f1117;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 700;
            z-index: 1100;
            transition: top 0.3s;
        }
        .skip-link:focus {
            top: 16px;
        }
