:root {
            --coal-black: #1a1a1a;
            --ember-orange: #cc5500;
            --ash-gray: #8a8a8a;
            --seam-brown: #5d4037;
            --snow-white: #f5f5f5;
            --forest-green: #2e7d32;
            --primary-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--primary-font);
            line-height: 1.8;
            color: #333;
            background-color: #fefefe;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--ember-orange);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff8c00;
            text-decoration: underline;
        }
        .site-header {
            background-color: var(--coal-black);
            color: var(--snow-white);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(to right, #f5f5f5, var(--ember-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--snow-white);
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: var(--ember-orange);
            text-decoration: none;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger-btn {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--coal-black);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 2rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.8rem 0;
            border-bottom: 1px solid #444;
        }
        .breadcrumb {
            background-color: #eee;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #666;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: var(--coal-black);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--ember-orange);
            padding-left: 1rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--seam-brown);
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0e0e0;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: var(--forest-green);
            margin: 2rem 0 1rem 0;
        }
        .article-content h4 {
            font-size: 1.3rem;
            color: var(--ash-gray);
            margin: 1.5rem 0 0.8rem 0;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--coal-black);
            font-weight: 700;
        }
        .article-content em {
            color: #555;
            font-style: italic;
        }
        .article-content blockquote {
            border-left: 4px solid var(--ember-orange);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #666;
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px solid #ddd;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .last-updated {
            font-size: 0.9rem;
            color: var(--ash-gray);
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #ccc;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: var(--coal-black);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .widget h3 i {
            color: var(--ember-orange);
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            background-color: var(--ember-orange);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background 0.3s;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            background-color: #e65c00;
        }
        .star-rating {
            display: flex;
            justify-content: space-around;
            font-size: 1.8rem;
            color: #ffd700;
            margin: 1rem 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background-color: var(--coal-black);
            color: var(--snow-white);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        friend-link {
            display: inline-block;
            background: #333;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #ddd;
        }
        friend-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
            grid-column: 1 / -1;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff8e1, #ffecb3);
            border: 1px solid #ffd54f;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list {
            list-style: none;
            padding-left: 1rem;
        }
        .link-list li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        .link-list li:before {
            content: '➥';
            position: absolute;
            left: 0;
            color: var(--ember-orange);
        }
        @media (max-width: 768px) {
            .main-container, .breadcrumb {
                padding: 0 1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .site-header {
                padding: 1rem;
            }
        }
