:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #b8860b;
            --secondary-accent: #8b0000;
            --text-light: #f0f0f0;
            --text-muted: #cccccc;
            --bg-light: #2d2d44;
            --border-color: #444;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            --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.7;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: linear-gradient(to bottom, var(--primary-dark), #0f0f1a);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 26, 46, 0.95);
            border-bottom: 3px solid var(--primary-accent);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary-accent);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #ffd700;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-accent);
            margin: 3px 0;
            transition: 0.4s;
            border-radius: 2px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-accent);
            transition: width 0.3s;
        }
        nav a:hover:after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--bg-light);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .breadcrumb span {
            color: var(--text-muted);
            margin: 0 8px;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(45, 45, 68, 0.7);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--primary-accent);
            margin-bottom: 1.5rem;
            border-bottom: 3px solid var(--secondary-accent);
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: #e6b800;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid var(--secondary-accent);
        }
        article h3 {
            font-size: 1.6rem;
            color: #f0c040;
            margin: 2rem 0 1rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: #ffd966;
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: #ffcc5c;
            font-weight: 700;
        }
        article em {
            color: #ccccff;
            font-style: italic;
        }
        .article-meta {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .article-meta i {
            margin-right: 5px;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            border: 3px solid var(--primary-accent);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        aside {
            background-color: rgba(45, 45, 68, 0.7);
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        aside h3 {
            color: var(--primary-accent);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            border-bottom: 2px solid var(--secondary-accent);
            padding-bottom: 0.5rem;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 5px 0 0 5px;
            background-color: #3a3a52;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-accent);
            color: var(--primary-dark);
            border: none;
            border-radius: 0 5px 5px 0;
            padding: 0 20px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #ffd700;
        }
        .comment-form, .rating-form {
            background-color: rgba(58, 58, 82, 0.5);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
            border: 1px solid var(--border-color);
        }
        .comment-form h3, .rating-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            background-color: #3a3a52;
            color: var(--text-light);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .btn-submit {
            background-color: var(--secondary-accent);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        .btn-submit:hover {
            background-color: #a30000;
        }
        footer {
            background-color: #0f0f1a;
            border-top: 3px solid var(--primary-accent);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--primary-accent);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 1.5rem 0;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(184, 134, 11, 0.1);
            padding: 8px 15px;
            border-radius: 5px;
            border: 1px solid var(--primary-accent);
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(184, 134, 11, 0.3);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 1rem;
            }
            article h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: var(--primary-dark);
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: 0.5s;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                z-index: 999;
            }
            nav ul.active {
                right: 0;
            }
            .header-content {
                flex-wrap: wrap;
            }
            article {
                padding: 1.8rem;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
            aside {
                position: static;
            }
        }
