        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a14;
            --secondary-dark: #1a1a2e;
            --accent-gold: #d4af37;
            --accent-red: #8b0000;
            --text-light: #f0e6d2;
            --text-gray: #b8b8b8;
            --border-color: #33334d;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #000000 0%, var(--secondary-dark) 100%);
            border-bottom: 2px solid var(--accent-red);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(90deg, var(--accent-gold), #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .breadcrumb {
            background-color: var(--secondary-dark);
            padding: 10px 20px;
            border-radius: 5px;
            margin: 20px auto;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb span {
            color: var(--accent-gold);
            margin: 0 8px;
        }
        .search-container {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 30px;
            border-radius: 10px;
            margin: 30px auto;
            text-align: center;
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 20px auto 0;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px;
            background-color: #0f0f1a;
            border: 2px solid var(--accent-gold);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-gold);
            color: black;
            border: none;
            padding: 0 25px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #ffd700;
        }
        .main-content {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background-color: var(--secondary-dark);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #f0e6d2;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #33334d;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--accent-gold);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #d4af37;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: #ffd700;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(212, 175, 55, 0.05));
            border-left: 5px solid var(--accent-red);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid var(--border-color);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: var(--text-gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: var(--secondary-dark);
            padding: 25px;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            margin-top: 0;
        }
        .sidebar ul {
            list-style: none;
            margin-top: 15px;
        }
        .sidebar li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #444;
        }
        .rating-container {
            background-color: #111122;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #555;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .star {
            display: inline-block;
            margin: 0 5px;
        }
        .stars .star:hover,
        .stars .star:hover ~ .star {
            color: #555;
        }
        .stars .star.active {
            color: gold;
        }
        .rating-form button {
            background-color: var(--accent-gold);
            color: black;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 15px;
        }
        .comments-container {
            margin-top: 50px;
        }
        .comment-form {
            background-color: #111122;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 120px;
            background-color: #0a0a14;
            border: 1px solid var(--border-color);
            color: white;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 48%;
            padding: 12px;
            background-color: #0a0a14;
            border: 1px solid var(--border-color);
            color: white;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        .comment-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            display: block;
        }
        .comment-list .comment {
            background-color: #111122;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .site-footer {
            background-color: #000000;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 2px solid var(--accent-red);
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        .friend-links a {
            background-color: #1a1a2e;
            padding: 10px 20px;
            border-radius: 5px;
            border: 1px solid #333;
        }
        .copyright {
            text-align: center;
            color: var(--text-gray);
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--secondary-dark);
                padding: 20px;
                border-top: 1px solid var(--border-color);
                z-index: 999;
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            .comment-form input[type="text"],
            .comment-form input[type="email"] {
                width: 100%;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
