        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0d3b8;
            background-color: #1a1a1a;
            background-image: linear-gradient(to bottom, #0c0c0c 0%, #1a1a1a 20%, #2d2a22 100%);
            min-height: 100vh;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #ffb347;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffcc33;
            text-shadow: 0 0 8px rgba(255, 179, 71, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            border: 2px solid #5d4c2a;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(22, 18, 12, 0.95);
            border-bottom: 3px solid #5d4c2a;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffb347;
            text-shadow: 2px 2px 4px #000, 0 0 10px #ffb34780;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            color: #ffcc33;
            text-shadow: 2px 2px 6px #000, 0 0 15px #ffcc33;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background: rgba(93, 76, 42, 0.3);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffb347;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #2d2a22;
            margin-bottom: 2rem;
            border-bottom: 1px solid #5d4c2a;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #999;
        }
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 900px) {
            .main-content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(34, 30, 22, 0.8);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #5d4c2a;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px double #ffb347;
        }
        h1 {
            font-size: 3rem;
            color: #ffb347;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 5px #000;
            line-height: 1.2;
        }
        .lead {
            font-size: 1.3rem;
            color: #d4c19c;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .meta-info {
            color: #999;
            font-style: italic;
            font-size: 0.9rem;
        }
        h2 {
            color: #e6b455;
            font-size: 2.2rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #5d4c2a;
        }
        h3 {
            color: #d4af37;
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            color: #c19a6b;
            font-size: 1.4rem;
            margin: 2rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(93, 76, 42, 0.3);
            border-left: 4px solid #ffb347;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .pull-quote {
            font-size: 1.4rem;
            font-style: italic;
            color: #e6b455;
            text-align: center;
            max-width: 700px;
            margin: 3rem auto;
            padding: 2rem;
            border-top: 2px solid #5d4c2a;
            border-bottom: 2px solid #5d4c2a;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #999;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .content-link {
            font-weight: bold;
            border-bottom: 1px dashed #ffb347;
        }
        aside {
            background: rgba(34, 30, 22, 0.8);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #5d4c2a;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: #ffb347;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #5d4c2a;
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            background: #2d2a22;
            border: 1px solid #5d4c2a;
            border-radius: 4px 0 0 4px;
            color: #e0d3b8;
        }
        .search-form button {
            background: #5d4c2a;
            color: #ffcc33;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #6e5a30;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #555;
        }
        .rating-widget .stars .active {
            color: #ffcc33;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget select, .rating-widget textarea {
            padding: 0.8rem;
            background: #2d2a22;
            border: 1px solid #5d4c2a;
            border-radius: 4px;
            color: #e0d3b8;
            width: 100%;
        }
        .rating-widget button {
            background: #5d4c2a;
            color: #ffcc33;
            border: none;
            padding: 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .rating-widget button:hover {
            background: #6e5a30;
        }
        .comments-section {
            background: rgba(34, 30, 22, 0.8);
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 3rem;
            border: 1px solid #5d4c2a;
        }
        .comment-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .comment-form input, .comment-form textarea {
            padding: 0.8rem;
            background: #2d2a22;
            border: 1px solid #5d4c2a;
            border-radius: 4px;
            color: #e0d3b8;
        }
        .comment-form textarea {
            grid-column: span 2;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            grid-column: span 2;
            background: #5d4c2a;
            color: #ffcc33;
            border: none;
            padding: 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #6e5a30;
        }
        .site-footer {
            background: rgba(22, 18, 12, 0.98);
            border-top: 3px solid #5d4c2a;
            margin-top: 4rem;
            padding: 3rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffb347;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background: rgba(93, 76, 42, 0.2);
            padding: 1rem;
            border-radius: 6px;
            margin-top: 1.5rem;
            border-left: 4px solid #ffb347;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #5d4c2a;
            color: #999;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(22, 18, 12, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #5d4c2a;
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside, .comments-section {
                padding: 1.5rem;
            }
            .comment-form {
                grid-template-columns: 1fr;
            }
            .comment-form textarea {
                grid-column: span 1;
            }
            .comment-form button {
                grid-column: span 1;
            }
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .emoji { font-size: 1.2em; }
