:root {
            --primary-dark: #0a0a12;
            --primary-accent: #8b0000;
            --secondary-accent: #c0a062;
            --text-light: #f0f0f0;
            --text-muted: #b0b0c0;
            --bg-card: #1a1a24;
            --border-color: #2a2a35;
            --transition-speed: 0.3s;
            --container-max: 1200px;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-heading: Georgia, 'Times New Roman', Times, serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #e0c080;
        }
        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, rgba(10, 10, 18, 0.95), rgba(26, 26, 36, 0.9));
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-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: var(--font-heading);
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #c0a062, #8b0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-accent);
            transition: width var(--transition-speed);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(26, 26, 36, 0.5);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--text-muted);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 10, 18, 0.8), rgba(26, 26, 36, 0.9)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 60px 20px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
        }
        .hero-section h1 {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--text-light);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        }
        .hero-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-muted);
        }
        .search-form {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid var(--secondary-accent);
        }
        .search-form input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .search-form button {
            background: var(--secondary-accent);
            color: var(--primary-dark);
            border: none;
            padding: 0 30px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .search-form button:hover {
            background: #e0c080;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 60px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: var(--bg-card);
            border-radius: 10px;
            padding: 40px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-content h2, .article-content h3, .article-content h4 {
            font-family: var(--font-heading);
            color: var(--secondary-accent);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .article-content h2 {
            font-size: 2.2rem;
        }
        .article-content h3 {
            font-size: 1.8rem;
        }
        .article-content h4 {
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .article-content strong {
            color: #fff;
            font-weight: 700;
        }
        .article-content em {
            color: var(--text-muted);
            font-style: italic;
        }
        .article-content ul, .article-content ol {
            margin-left: 30px;
            margin-bottom: 1.8rem;
        }
        .article-content li {
            margin-bottom: 0.8rem;
        }
        .image-wrapper {
            margin: 2.5rem 0;
            text-align: center;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            transition: transform var(--transition-speed);
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .caption {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-top: 10px;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(26, 26, 36, 0.7));
            border-left: 4px solid var(--primary-accent);
            padding: 25px;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .update-info {
            text-align: right;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-top: 1px dashed var(--border-color);
            padding-top: 20px;
            margin-top: 40px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: var(--bg-card);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            color: var(--secondary-accent);
            margin-bottom: 20px;
            font-size: 1.4rem;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form textarea, .comment-form input, .rating-form select {
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form textarea {
            min-height: 120px;
        }
        .form-submit {
            background: linear-gradient(to right, var(--primary-accent), #a52a2a);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: opacity var(--transition-speed);
        }
        .form-submit:hover {
            opacity: 0.9;
        }
        .stars {
            display: flex;
            justify-content: space-around;
            font-size: 1.8rem;
            color: var(--secondary-accent);
            margin: 10px 0;
        }
        .star-label {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-label:hover {
            transform: scale(1.3);
        }
        .rating-result {
            text-align: center;
            font-size: 1.2rem;
            margin-top: 15px;
            padding: 10px;
            background: rgba(192, 160, 98, 0.1);
            border-radius: 8px;
        }
        .site-footer {
            background-color: #080810;
            border-top: 1px solid var(--border-color);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 15px;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--bg-card);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all var(--transition-speed);
                border-bottom: 2px solid var(--border-color);
                z-index: 999;
            }
            .main-nav.active ul {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section p {
                font-size: 1.1rem;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 1.9rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 10px;
                border-width: 1px;
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
        }
