        * {
            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: #f0e6d6;
            background-color: #0d0d0d;
            background-image: radial-gradient(circle at 15% 50%, rgba(40, 10, 2, 0.9) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(2, 15, 40, 0.7) 0%, transparent 20%);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .site-header {
            padding: 1.5rem 0;
            border-bottom: 2px solid #3c2a1a;
            margin-bottom: 2rem;
            position: relative;
            background: linear-gradient(to bottom, #1a1a1a 0%, #0d0d0d 100%);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Cinzel', 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #d4af37, #ffd700, #b8860b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
            padding: 5px 0;
        }
        .my-logo a:hover {
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.3rem;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover {
            border-bottom-color: #d4af37;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e6d6;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: #666;
        }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            border: 2px solid #3c2a1a;
            border-radius: 30px;
            overflow: hidden;
            background: rgba(30, 30, 30, 0.9);
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.5rem;
            border: none;
            background: transparent;
            color: #f0e6d6;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            background: rgba(40, 40, 40, 0.9);
        }
        .search-button {
            background: #3c2a1a;
            color: #f0e6d6;
            border: none;
            padding: 0 1.8rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #5a3a22;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 15, 10, 0.85);
            padding: 2.5rem;
            border-radius: 10px;
            border-left: 5px solid #d4af37;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #444;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
            border-bottom: 3px solid #3c2a1a;
            padding-bottom: 0.7rem;
        }
        h2 {
            font-size: 2rem;
            color: #e6c068;
            margin-top: 3rem;
            margin-bottom: 1.2rem;
            padding-left: 10px;
            border-left: 4px solid #b8860b;
        }
        h3 {
            font-size: 1.6rem;
            color: #d4af37;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #c0a050;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.2rem;
            color: #f8e8c8;
            background: rgba(60, 42, 26, 0.3);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #d4af37;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #3c2a1a;
            margin: 2rem 0;
        }
        .tip {
            background: rgba(30, 50, 80, 0.3);
            border-left: 5px solid #4a8cc7;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
        }
        em {
            color: #ffcc99;
        }
        strong {
            color: #ffd700;
            font-weight: 700;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(25, 20, 15, 0.9);
            padding: 2rem;
            border-radius: 10px;
            height: fit-content;
            border-top: 3px solid #b8860b;
        }
        .sidebar h3 {
            margin-top: 0;
            color: #e6c068;
            border-bottom: 2px solid #444;
            padding-bottom: 0.5rem;
        }
        .sidebar ul {
            list-style: none;
            margin-left: 0;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
            border-bottom: 1px dashed #444;
            padding-bottom: 0.8rem;
        }
        .sidebar li:last-child {
            border-bottom: none;
        }
        .user-interaction {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #3c2a1a;
        }
        .interaction-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .comment-form, .rating-form {
            background: rgba(30, 25, 20, 0.9);
            padding: 1.8rem;
            border-radius: 8px;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #d4af37;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            background: rgba(50, 40, 30, 0.8);
            border: 1px solid #5a3a22;
            border-radius: 5px;
            color: #f0e6d6;
            font-family: inherit;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            margin: 0.5rem 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffd700;
        }
        .submit-btn {
            background: linear-gradient(to bottom, #5a3a22, #3c2a1a);
            color: #f0e6d6;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
        }
        .submit-btn:hover {
            background: linear-gradient(to bottom, #6a4a32, #4c3a2a);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
        }
        .site-footer {
            background: linear-gradient(to top, #1a1a1a, #0d0d0d);
            padding: 3rem 0 2rem;
            border-top: 3px solid #3c2a1a;
            margin-top: 4rem;
            text-align: center;
        }
        friend-link {
            display: block;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        friend-link a {
            margin: 0 1rem;
        }
        .copyright {
            color: #777;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                margin-bottom: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 15px;
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
                background: rgba(20, 15, 10, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 1000;
                padding: 1rem;
                border-radius: 0 0 10px 10px;
                display: none;
                box-shadow: 0 10px 20px rgba(0,0,0,0.8);
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, .sidebar {
                padding: 1.5rem;
            }
        }
