:root {
            --primary-dark: #0a0e17;
            --primary-accent: #8a0303;
            --secondary-accent: #d4af37;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --bg-section: #111827;
            --border-color: #2d3748;
            --hover-glow: rgba(138, 3, 3, 0.4);
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1.05rem;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px var(--hover-glow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #000000, var(--primary-dark));
            border-bottom: 2px solid var(--primary-accent);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.4rem;
            font-weight: bold;
            color: var(--secondary-accent);
            text-shadow: 2px 2px 4px #000;
            letter-spacing: 1px;
        }
        .my-logo a {
            color: inherit;
        }
        .my-logo span {
            color: var(--primary-accent);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(138, 3, 3, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary-accent);
        }
        .breadcrumb {
            padding: 12px 0;
            background-color: rgba(26, 32, 44, 0.8);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--text-light);
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: var(--primary-accent);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-area {
            background-color: var(--bg-section);
            border-radius: 10px;
            padding: 35px;
            border: 1px solid var(--border-color);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        h1, h2, h3, h4 {
            color: var(--secondary-accent);
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            border-bottom: 3px solid var(--primary-accent);
            padding-bottom: 15px;
            text-align: center;
            margin-top: 0;
        }
        h2 {
            font-size: 2.4rem;
            border-left: 5px solid var(--primary-accent);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.9rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #e2e8f0;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-gray);
            font-style: italic;
            border-left: 4px solid var(--secondary-accent);
            padding-left: 20px;
            margin-bottom: 2em;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--secondary-accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            width: 80%;
            margin: 30px auto;
            border: 3px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .caption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 8px;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 40px;
            padding-top: 15px;
            border-top: 1px dashed var(--border-color);
        }
        .widget {
            background-color: var(--bg-section);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            border-bottom: 2px solid var(--primary-accent);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            background-color: #1a202c;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, var(--primary-accent), #5a0000);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(to right, #9a0404, #6a0101);
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .rating-stars i {
            color: #ffc107;
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.3);
        }
        .site-footer {
            background-color: #000;
            border-top: 3px solid var(--primary-accent);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: var(--secondary-accent);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            background-color: #1a202c;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            border-left: 4px solid var(--secondary-accent);
            transition: transform 0.3s;
        }
        friend-link:hover {
            transform: translateX(10px);
            background-color: #2d3748;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .header-content { flex-wrap: wrap; }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 20px;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .hamburger {
                display: block;
            }
            .article-area {
                padding: 25px;
            }
            .featured-image {
                width: 100%;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-area {
            animation: fadeIn 0.8s ease-out;
        }
        .highlight:hover {
            box-shadow: inset 0 0 0 2px var(--secondary-accent);
        }
        @media print {
            .site-header, .sidebar, .site-footer, .breadcrumb { display: none; }
            body { background: white; color: black; }
            .container { max-width: 100%; }
            .article-area { border: none; box-shadow: none; }
        }
