        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #e0e0e0;
            background-color: #0d0d0d;
            background-image: radial-gradient(#1a1a1a 1px, transparent 1px);
            background-size: 20px 20px;
            padding-bottom: 40px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cinzel', 'Times New Roman', serif;
            color: #d4af37;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 20px;
            margin-top: 0.5em;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        h2 { font-size: 2.4rem; }
        h3 { font-size: 1.9rem; color: #b8934a; }
        h4 { font-size: 1.5rem; color: #a67c00; }
        p {
            margin-bottom: 1.2em;
            font-size: 1.1rem;
            text-align: justify;
        }
        a {
            color: #b8934a;
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 2px solid #333;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 20px 0;
            border-bottom: 2px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            font-weight: bold;
            color: #d4af37;
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
        }
        .my-logo:hover {
            color: #ffd700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 1);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #d4af37;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.98);
            padding: 20px;
            border-top: 1px solid #333;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid #333;
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 15px 0;
            color: #aaa;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #b8934a;
        }
        .search-section {
            background-color: rgba(30, 30, 30, 0.8);
            padding: 30px 0;
            margin: 30px 0;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #444;
        }
        .search-section h2 {
            margin-top: 0;
            color: #e0e0e0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 20px auto 0;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #d4af37;
            border-radius: 8px 0 0 8px;
            background-color: #1a1a1a;
            color: #fff;
            font-size: 1rem;
        }
        .search-button {
            padding: 15px 25px;
            background-color: #d4af37;
            color: #000;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #ffd700;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        article {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid #333;
            box-shadow: 0 15px 30px rgba(0,0,0,0.6);
        }
        .featured-image {
            text-align: center;
            margin: 30px 0;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 5px solid #d4af37;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #b8934a;
            text-align: center;
            padding: 30px;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
            margin: 40px 0;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 1px dashed #b8934a;
        }
        .inline-link:hover {
            border-bottom: 1px solid #ffd700;
        }
        aside {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #333;
            height: fit-content;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            border-bottom: 2px solid #d4af37;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .widget ul {
            list-style: none;
        }
        .widget li {
            padding: 10px 0;
            border-bottom: 1px solid #333;
        }
        .comments-rating-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #333;
        }
        .rating-form, .comment-form {
            background-color: rgba(30, 30, 30, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #d4af37;
            font-weight: bold;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background-color: #1a1a1a;
            border: 1px solid #444;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #444;
            margin: 10px 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd700;
        }
        .submit-button {
            background-color: #d4af37;
            color: #000;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .submit-button:hover {
            background-color: #ffd700;
        }
        footer {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 3px solid #333;
            color: #aaa;
            text-align: center;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        friend-link {
            background-color: rgba(30, 30, 30, 0.8);
            padding: 10px 20px;
            border-radius: 6px;
            border: 1px solid #444;
            transition: transform 0.3s, border-color 0.3s;
        }
        friend-link:hover {
            transform: translateY(-5px);
            border-color: #d4af37;
        }
        .copyright {
            font-size: 0.9rem;
            color: #777;
            margin-top: 30px;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #777;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
            aside {
                order: -1;
            }
            h1 {
                font-size: 2.7rem;
            }
            h2 { font-size: 2.1rem; }
            h3 { font-size: 1.7rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 { font-size: 1.9rem; }
            .header-container {
                flex-wrap: wrap;
            }
            article {
                padding: 25px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-button {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .friend-links {
                flex-direction: column;
                align-items: center;
            }
        }
