:root {
            --primary-dark: #0a0e17;
            --primary-accent: #8b0000;
            --secondary-accent: #d4af37;
            --text-light: #f0f0f0;
            --text-dim: #b0b0b0;
            --bg-card: #1a1f2e;
            --border-color: #2a3348;
            --transition-speed: 0.3s;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Georgia', 'Times New Roman', serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #ffd700;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, rgba(10,14,23,0.95) 0%, rgba(10,14,23,0.8) 100%);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--secondary-accent), var(--primary-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            padding: 5px 0;
            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.5rem;
            cursor: pointer;
            color: var(--secondary-accent);
        }
        .breadcrumb {
            background-color: var(--bg-card);
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--text-light);
        }
        .breadcrumb span {
            color: var(--text-dim);
            margin: 0 8px;
        }
        .search-container {
            padding: 40px 0 20px;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 15px 20px;
            border-radius: 50px;
            border: 2px solid var(--border-color);
            background-color: var(--bg-card);
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
            transition: border-color var(--transition-speed);
        }
        .search-box input:focus {
            border-color: var(--secondary-accent);
        }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-accent);
            color: white;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            cursor: pointer;
            transition: background var(--transition-speed);
        }
        .search-box button:hover {
            background: #a00000;
        }
        .main-content {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article-header {
            margin-bottom: 40px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 25px;
        }
        .article-header h1 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 15px;
            color: var(--text-light);
            text-shadow: 2px 2px 4px #000;
        }
        .meta-info {
            display: flex;
            justify-content: space-between;
            color: var(--text-dim);
            font-size: 0.9rem;
            flex-wrap: wrap;
            gap: 15px;
        }
        .featured-image {
            width: 100%;
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            border: 3px solid var(--border-color);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .article-body h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--secondary-accent);
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: #e0e0e0;
            margin: 35px 0 15px;
        }
        .article-body h4 {
            font-size: 1.3rem;
            color: #c0c0c0;
            margin: 25px 0 10px;
        }
        .article-body p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
            color: var(--text-light);
        }
        .article-body strong {
            color: var(--secondary-accent);
            font-weight: 700;
        }
        .article-body em {
            font-style: italic;
            color: #ffa500;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(139,0,0,0.1) 0%, rgba(212,175,55,0.1) 100%);
            border-left: 4px solid var(--secondary-accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
        }
        .link-list a {
            background-color: rgba(255,255,255,0.05);
            padding: 10px 20px;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .link-list a:hover {
            background-color: rgba(212,175,55,0.1);
            border-color: var(--secondary-accent);
            transform: translateY(-3px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            color: var(--secondary-accent);
            font-family: var(--font-heading);
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            color: var(--border-color);
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: var(--secondary-accent);
        }
        .rating-widget button {
            background: var(--primary-accent);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background var(--transition-speed);
        }
        .rating-widget button:hover {
            background: #a00000;
        }
        .comment-widget textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background-color: rgba(255,255,255,0.05);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            resize: vertical;
            margin-bottom: 15px;
            font-family: inherit;
        }
        .comment-widget button {
            background: linear-gradient(90deg, var(--primary-accent), #6a0000);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: opacity var(--transition-speed);
            width: 100%;
        }
        .comment-widget button:hover {
            opacity: 0.9;
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--text-dim);
            text-align: center;
            margin-top: 10px;
        }
        .site-footer {
            background-color: #070a10;
            margin-top: 60px;
            padding: 50px 0 30px;
            border-top: 1px solid var(--border-color);
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-logo {
            flex: 1;
            min-width: 250px;
        }
        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        .footer-col h4 {
            color: var(--secondary-accent);
            margin-bottom: 20px;
            font-family: var(--font-heading);
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            margin: 5px 0;
            padding: 8px 0;
            border-bottom: 1px dashed var(--border-color);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-dim);
            font-size: 0.9rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: var(--primary-dark);
                width: 100%;
                text-align: center;
                padding: 30px 0;
                gap: 25px;
                border-top: 1px solid var(--border-color);
                transition: left var(--transition-speed);
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .article-body h3 {
                font-size: 1.4rem;
            }
            .meta-info {
                flex-direction: column;
            }
        }
