        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d0d0d;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 15% 50%, rgba(40, 20, 5, 0.2) 0%, transparent 20%);
        }
        a {
            color: #d4a55e;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #f0c070;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #1a1a1a 0%, #0d0d0d 100%);
            border-bottom: 2px solid #3a2a15;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #d4a55e, #b8860b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .logo a:hover {
            transform: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4a55e;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4a55e;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a1a1a;
            border-top: 1px solid #3a2a15;
            padding: 1rem;
            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: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-left: 3px solid #d4a55e;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #d4a55e;
        }
        .hero {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            border-radius: 10px;
            margin-bottom: 3rem;
            border: 1px solid #3a2a15;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: #f0c070;
            text-shadow: 0 3px 10px rgba(0,0,0,0.7);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ccc;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background-color: #141414;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #2a2a2a;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .main-article h2 {
            font-size: 2.2rem;
            color: #e6b85c;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #3a2a15;
        }
        .main-article h3 {
            font-size: 1.7rem;
            color: #d4a55e;
            margin: 2rem 0 1rem;
        }
        .main-article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2a1f0f;
            border-left: 5px solid #d4a55e;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
        }
        .featured-image img {
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            border: 3px solid #3a2a15;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.01);
            box-shadow: 0 20px 40px rgba(0,0,0,0.7);
        }
        .featured-image figcaption {
            font-style: italic;
            color: #999;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .side-panel {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .search-widget, .rating-widget, .comments-widget {
            background-color: #141414;
            padding: 1.8rem;
            border-radius: 12px;
            border: 1px solid #2a2a2a;
        }
        .widget-title {
            font-size: 1.5rem;
            color: #e6b85c;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .widget-title i {
            color: #d4a55e;
        }
        .search-form input {
            width: 100%;
            padding: 0.9rem 1rem;
            background-color: #1f1f1f;
            border: 1px solid #444;
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to right, #d4a55e, #b8860b);
            border: none;
            border-radius: 6px;
            color: #0d0d0d;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .search-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(212, 165, 94, 0.3);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: #2a2a2a;
            border: 1px solid #444;
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .rating-form button:hover {
            background-color: #3a3a3a;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background-color: #1f1f1f;
            border: 1px solid #444;
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 1rem;
            min-height: 150px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background-color: #1a3a2a;
            border: 1px solid #2a5a3a;
            border-radius: 6px;
            color: #e0e0e0;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .comment-form button:hover {
            background-color: #2a4a3a;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            padding: 3rem 0;
            border-top: 2px solid #3a2a15;
            border-bottom: 1px solid #333;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #141414;
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid #2a2a2a;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #d4a55e;
        }
        .web-link a {
            display: block;
            font-weight: 600;
            color: #ccc;
        }
        .web-link a:hover {
            color: #f0c070;
        }
        .site-footer {
            text-align: center;
            padding: 2rem 0;
            color: #999;
            font-size: 0.95rem;
            border-top: 1px solid #333;
        }
        .copyright {
            margin-bottom: 1rem;
        }
        .footer-nav a {
            color: #999;
            margin: 0 0.8rem;
            font-size: 0.9rem;
        }
        .footer-nav a:hover {
            color: #d4a55e;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .main-article {
                padding: 1.5rem;
            }
            .main-article h2 {
                font-size: 1.9rem;
            }
            .main-article h3 {
                font-size: 1.5rem;
            }
        }
        .bold {
            font-weight: 800;
            color: #f0c070;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .pt-2 { padding-top: 2rem; }
        .pb-2 { padding-bottom: 2rem; }
