:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #c41e3a; 
            --secondary-accent: #d4af37; 
            --text-light: #f0f0f0;
            --text-gray: #b8b8b8;
            --bg-card: #2d2d44;
            --border-color: #3a3a5d;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 20% 30%, #2a2a3e 0%, var(--primary-dark) 70%);
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-accent);
            text-shadow: 0 0 5px rgba(196, 30, 58, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 26, 46, 0.95);
            border-bottom: 2px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #d4af37, #c41e3a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            border-bottom-color: var(--primary-accent);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--bg-card);
            padding: 20px;
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--text-light);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 30px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary-accent);
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-accent);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: var(--text-light);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary-accent);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--secondary-accent);
            font-weight: bold;
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(196, 30, 58, 0.1), transparent);
            border-left: 4px solid var(--primary-accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            margin: 30px auto;
            display: block;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 1px dashed var(--secondary-accent);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--secondary-accent);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 5px 0 0 5px;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            padding: 0 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #a0182e;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 5px;
            font-weight: bold;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-accent), #a0182e);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 14px 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(196, 30, 58, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: var(--text-gray);
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--secondary-accent);
        }
        footer {
            background-color: #151522;
            border-top: 2px solid var(--primary-accent);
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--secondary-accent);
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 15px;
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 5px;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--primary-accent);
            font-style: italic;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px dashed var(--border-color);
            text-align: right;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 15px;
            }
            .article-content {
                padding: 25px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .widget {
                padding: 20px;
            }
        }
