        * { 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.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a { color: #f8c555; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ffdd80; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 3fr 1fr;
            }
        }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #b8860b;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, #d4af37, #f8c555, #ffdf91);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .logo a:hover { transform: scale(1.05); }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(184, 134, 11, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f8c555;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            background: rgba(20, 20, 30, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .nav-mobile.active { display: block; }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            display: block;
            padding: 12px;
            border-left: 4px solid #b8860b;
            background: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #ccc; }
        .breadcrumb span { color: #f8c555; }
        .content-main {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        .sidebar {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 2.8rem;
            color: #f8c555;
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 3px dashed #b8860b;
            padding-bottom: 20px;
            text-shadow: 2px 2px 4px #000;
        }
        h2 {
            font-size: 2rem;
            color: #e6b84c;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 6px solid #b8860b;
        }
        h3 {
            font-size: 1.6rem;
            color: #d4d4d4;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #bbb;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #f0f0f0;
            background: rgba(184, 134, 11, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #f8c555;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(184,134,11,0.2), transparent);
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 600;
        }
        strong { color: #f8c555; }
        em { color: #aaa; font-style: italic; }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li { margin-bottom: 10px; }
        .featured-image {
            width: 80%;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 5px solid #333;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .search-widget {
            margin-bottom: 30px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 14px 18px;
            background: rgba(255,255,255,0.1);
            border: 2px solid #444;
            border-right: none;
            border-radius: 8px 0 0 8px;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(to bottom, #b8860b, #8b6508);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(to bottom, #d4af37, #b8860b);
        }
        .rating-widget, .comment-widget {
            background: rgba(30, 30, 40, 0.9);
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
            border: 1px solid #444;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            justify-content: center;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: gold; }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .rating-form input,
        .comment-form input,
        .comment-form textarea {
            padding: 12px 15px;
            background: rgba(255,255,255,0.08);
            border: 1px solid #555;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #1e90ff, #0066cc);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #4aa8ff, #1e90ff);
        }
        .site-footer {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #444;
            text-align: center;
            color: #888;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 10px 20px;
            border-radius: 6px;
            border: 1px solid #555;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(184, 134, 11, 0.2);
            border-color: #b8860b;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 20px;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 20px;
            font-style: italic;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #b8860b, transparent);
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .header-container { padding: 0 15px; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            .content-main, .sidebar { padding: 20px; }
            .featured-image { width: 100%; }
            .friend-links { flex-direction: column; align-items: center; }
        }
