        * { 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.6;
            color: #333;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            color: #2c2c2c;
            padding-bottom: 40px;
        }
        a { color: #8b0000; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #5a0000; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .section-spacing { padding: 60px 0; }
        .last-updated { font-size: 0.9em; color: #666; margin-top: 10px; }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .site-header {
            background: linear-gradient(to right, #1a1a1a, #3a3a3a);
            color: #fff;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4af37;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo a { color: inherit; }
        .my-logo a:hover { color: #f0d070; }
        .breadcrumb {
            background: #e9ecef;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a { color: #6c757d; }
        .breadcrumb a:hover { color: #8b0000; }
        .main-nav { display: flex; align-items: center; }
        .nav-list {
            display: flex;
            list-style: none;
        }
        .nav-list li { margin-left: 30px; }
        .nav-list a {
            color: #ddd;
            font-weight: 500;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-list a:hover,
        .nav-list a.active {
            color: #d4af37;
            border-bottom-color: #d4af37;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 20px;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        .article-body {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }
        .article-body h2 {
            color: #8b0000;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e8d9b4;
        }
        .article-body h3 {
            color: #5a0000;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .article-body h4 {
            color: #333;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        .article-body p {
            margin-bottom: 22px;
            text-align: justify;
            line-height: 1.75;
        }
        .article-body blockquote {
            border-left: 4px solid #d4af37;
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #555;
            background: #fcf8e3;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box {
            background: #f0f8ff;
            border-left: 5px solid #4682b4;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            align-self: start;
        }
        .sidebar-widget {
            margin-bottom: 40px;
        }
        .sidebar-widget h3 {
            color: #8b0000;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group label { margin-bottom: 5px; font-weight: 600; color: #444; }
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8b0000;
            box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
        }
        .btn {
            background: linear-gradient(to bottom, #8b0000, #6a0000);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(to bottom, #a00, #800);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139,0,0,0.2);
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 10px 0;
        }
        .stars .star:hover,
        .stars .star.active { color: #ffd700; }
        .site-footer {
            background: #1a1a1a;
            color: #aaa;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #d4af37;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        .friend-links {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .friend-links a {
            color: #ccc;
            padding: 8px 0;
            display: block;
            border-bottom: 1px dashed #444;
        }
        .friend-links a:hover {
            color: #d4af37;
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.8rem; }
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #2a2a2a;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-list.active { display: flex; }
            .nav-list li { margin: 10px 0; margin-left: 0; }
            .hamburger { display: block; }
            .hero { padding: 70px 20px; }
            .hero h1 { font-size: 2.4rem; }
            .hero p { font-size: 1.1rem; }
            .article-body { padding: 25px; }
            .section-spacing { padding: 40px 0; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .article-body { padding: 20px; }
            .btn { padding: 12px 20px; }
        }
