        * { 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: #333;
            background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
            color: #e0e0e0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #ffaa33; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ffcc66; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', Times, serif; color: #f0c674; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-bottom: 3px solid #8b4513; padding-bottom: 10px; margin-top: 2rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-left: 10px; border-left: 5px solid #8b4513; }
        h3 { font-size: 1.8rem; margin-top: 2rem; color: #d7ba7d; }
        h4 { font-size: 1.4rem; margin-top: 1.5rem; color: #b8a05c; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead { font-size: 1.3rem; font-weight: 300; color: #cccccc; }
        .highlight { background-color: rgba(139, 69, 19, 0.2); padding: 2px 6px; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .site-header {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #8b4513;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, #f0c674, #8b4513);
            -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.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(139, 69, 19, 0.3);
            color: #ffcc66;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0c674;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #ccc; }
        .breadcrumb a:hover { color: #ffaa33; }
        .breadcrumb span { color: #ffaa33; }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 25px 0;
            border: 3px solid #8b4513;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0;
            flex-grow: 1;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        main article { background: rgba(30, 35, 48, 0.8); padding: 30px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .sidebar {
            background: rgba(25, 30, 42, 0.9);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 { margin-top: 0; }
        .widget { margin-bottom: 30px; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            background: rgba(40, 45, 60, 0.7);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group.horizontal { flex-direction: row; align-items: center; gap: 10px; flex-wrap: wrap; }
        label { font-weight: bold; margin-bottom: 5px; color: #d7ba7d; }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #555;
            border-radius: 6px;
            background-color: #2a2f3f;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #ffaa33; box-shadow: 0 0 0 2px rgba(255,170,51,0.2); }
        textarea { min-height: 120px; resize: vertical; }
        button, .btn {
            background: linear-gradient(to bottom, #8b4513, #5d2d0c);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to bottom, #a0522d, #8b4513);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
        }
        .stars { display: flex; gap: 5px; direction: rtl; }
        .stars input { display: none; }
        .stars label { font-size: 2rem; color: #555; cursor: pointer; transition: color 0.2s; }
        .stars label:hover, .stars label:hover ~ label, .stars input:checked ~ label { color: #ffaa33; }
        .comments-list { margin-top: 30px; }
        .comment {
            background: rgba(40, 45, 60, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #8b4513;
        }
        .comment-meta { font-size: 0.9rem; color: #aaa; margin-bottom: 10px; }
        .comment-author { font-weight: bold; color: #f0c674; }
        .site-footer {
            background: rgba(10, 14, 23, 0.95);
            border-top: 2px solid #8b4513;
            margin-top: 60px;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #f0c674; margin-bottom: 20px; font-size: 1.5rem; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(139, 69, 19, 0.3); }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-content { flex-wrap: wrap; }
            .main-nav { order: 3; width: 100%; margin-top: 15px; display: none; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 10px; }
            .hamburger { display: block; }
            .content-wrapper { gap: 20px; }
            main article, .sidebar { padding: 20px; }
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .last-updated { font-style: italic; color: #aaa; font-size: 0.9rem; margin-bottom: 2rem; }
        .tag { display: inline-block; background: #8b4513; color: white; padding: 3px 10px; border-radius: 12px; font-size: 0.8rem; margin-right: 8px; margin-bottom: 8px; }
