:root {
            --primary-color: #c22c2c;
            --secondary-color: #1a1a2e;
            --accent-color: #f0a500;
            --text-light: #f5f5f5;
            --text-dark: #333;
            --bg-dark: #0f1420;
            --bg-card: #1e2747;
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--bg-dark);
            background-image: radial-gradient(circle at 20% 30%, rgba(194, 44, 44, 0.1) 0%, transparent 20%), radial-gradient(circle at 80% 80%, rgba(240, 165, 0, 0.05) 0%, transparent 20%);
            min-height: 100vh;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', 'Times New Roman', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .my-logo:hover {
            color: #ffcc00;
            text-decoration: none;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--accent-color);
            border-bottom-color: var(--accent-color);
            text-decoration: none;
        }
        .breadcrumb {
            background-color: rgba(30, 39, 71, 0.8);
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 25px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #aaa;
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        .main-content {
            background-color: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 35px;
            box-shadow: var(--box-shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--box-shadow);
        }
        h1, h2, h3, h4 {
            color: var(--accent-color);
            margin-top: 1.8em;
            margin-bottom: 0.7em;
            line-height: 1.3;
            font-family: 'Cinzel', Georgia, serif;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 15px;
            margin-top: 0;
        }
        h2 {
            font-size: 2.1rem;
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.7rem;
            color: #f5c542;
        }
        h4 {
            font-size: 1.4rem;
            color: #e0e0e0;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #f0a500;
            background: rgba(194, 44, 44, 0.1);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent-color);
            margin-bottom: 2em;
        }
        .highlight {
            background-color: rgba(240, 165, 0, 0.15);
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        strong {
            color: #f5c542;
        }
        blockquote {
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
            margin: 2em 0;
            font-style: italic;
            color: #ccc;
            background: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .search-form, .comment-form, .rating-form {
            background-color: rgba(30, 39, 71, 0.9);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #444;
            border-radius: var(--border-radius);
            background-color: #2a365a;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.2);
        }
        button, .btn {
            background: linear-gradient(to bottom, var(--primary-color), #a02020);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to bottom, #d32f2f, #8b1a1a);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(194, 44, 44, 0.4);
            text-decoration: none;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            direction: rtl;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star:hover ~ .star {
            color: var(--accent-color);
        }
        .star.active {
            color: var(--accent-color);
        }
        .article-image {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: var(--box-shadow);
            border: 2px solid #444;
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.01);
            border-color: var(--accent-color);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: -20px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .internal-links {
            background: rgba(30, 39, 71, 0.7);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 30px 0;
        }
        .internal-links h3 {
            margin-top: 0;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
            list-style: none;
        }
        .internal-links li {
            padding: 8px 0;
            border-bottom: 1px dashed #444;
        }
        .site-footer {
            background-color: var(--secondary-color);
            border-top: 3px solid var(--primary-color);
            margin-top: 60px;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid #333;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .update-time {
            display: inline-block;
            background-color: rgba(240, 165, 0, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 20px;
            color: #f0a500;
        }
        @media (max-width: 992px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .mobile-toggle {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 400px;
                margin-top: 20px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid #333;
            }
            .main-nav a {
                display: block;
                padding: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 20px; }
        .mb-2 { margin-bottom: 20px; }
        .py-2 { padding-top: 20px; padding-bottom: 20px; }
