        * { 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: #f0e6d2;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            background-attachment: fixed;
            min-height: 100vh;
            padding-bottom: 3rem;
        }
        a { color: #c8a165; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #e6c068; text-shadow: 0 0 8px rgba(200, 161, 101, 0.7); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(10, 10, 20, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid #c8a165; position: sticky; top: 0; z-index: 1000; padding: 1rem 0; }
        .header-top { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 700; color: #c8a165; text-transform: uppercase; letter-spacing: 2px; }
        .my-logo span { color: #b02e2e; }
        .breadcrumb { padding: 0.8rem 0; font-size: 0.9rem; color: #aaa; }
        .breadcrumb a { color: #ddd; }
        .breadcrumb a:hover { color: #c8a165; }
        nav { display: flex; align-items: center; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a { font-weight: 600; text-transform: uppercase; font-size: 0.95rem; padding: 0.5rem 0; position: relative; }
        .nav-desktop a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #c8a165; transition: width 0.3s; }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: #f0e6d2; cursor: pointer; }
        .nav-mobile { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(20, 20, 35, 0.98); flex-direction: column; padding: 1rem; border-top: 1px solid #333; }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { padding: 0.8rem 0; border-bottom: 1px solid #2a2a40; font-size: 1.1rem; }
        .hero { text-align: center; padding: 4rem 2rem; background: radial-gradient(circle at center, rgba(42, 42, 66, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat; margin-bottom: 3rem; border-bottom: 3px solid #b02e2e; }
        .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; color: #f0e6d2; text-shadow: 3px 3px 6px #000; }
        .hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 2rem; color: #d4c4a9; }
        .search-box { max-width: 600px; margin: 2rem auto; display: flex; }
        .search-box input { flex-grow: 1; padding: 1rem; border: 2px solid #c8a165; border-radius: 4px 0 0 4px; background: #222235; color: #fff; font-size: 1rem; }
        .search-box button { background: #c8a165; color: #1a1a2e; border: none; padding: 1rem 1.5rem; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .search-box button:hover { background: #e6c068; }
        main { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        .content { background: rgba(30, 30, 50, 0.7); padding: 2.5rem; border-radius: 8px; border-left: 5px solid #b02e2e; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        .sidebar { background: rgba(25, 25, 40, 0.8); padding: 1.5rem; border-radius: 8px; border-top: 3px solid #c8a165; }
        .update-time { font-size: 0.9rem; color: #aaa; text-align: right; margin-bottom: 2rem; font-style: italic; }
        article h1 { font-size: 2.8rem; color: #f0e6d2; margin-bottom: 1.5rem; border-bottom: 2px solid #c8a165; padding-bottom: 0.5rem; }
        article h2 { font-size: 2rem; color: #e6c068; margin: 2.5rem 0 1rem; padding-left: 0.5rem; border-left: 4px solid #b02e2e; }
        article h3 { font-size: 1.6rem; color: #d4b97a; margin: 2rem 0 1rem; }
        article h4 { font-size: 1.3rem; color: #b5a270; margin: 1.5rem 0 0.8rem; }
        article p { margin-bottom: 1.5rem; text-align: justify; color: #d4c4a9; }
        article strong { color: #e6c068; font-weight: 700; }
        article em { color: #b5a270; }
        article ul, article ol { margin: 1rem 0 1rem 2rem; color: #d4c4a9; }
        article blockquote { border-left: 4px solid #c8a165; padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: #b5a270; background: rgba(200, 161, 101, 0.05); padding: 1rem; }
        .highlight-box { background: linear-gradient(to right, #2a2a40, #1a1a2e); padding: 1.5rem; border-radius: 6px; border: 1px solid #c8a165; margin: 2rem 0; }
        .img-container { margin: 2.5rem auto; text-align: center; }
        .img-container img { border-radius: 6px; border: 3px solid #555; box-shadow: 0 5px 15px rgba(0,0,0,0.7); max-width: 900px; }
        .img-caption { font-size: 0.9rem; color: #aaa; margin-top: 0.5rem; font-style: italic; }
        .link-list { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; padding: 1rem; background: rgba(42, 42, 66, 0.5); border-radius: 6px; }
        .link-list a { background: #2a2a40; padding: 0.5rem 1rem; border-radius: 4px; border: 1px solid #444; }
        .link-list a:hover { background: #3a3a55; border-color: #c8a165; }
        .interactive { background: rgba(35, 35, 55, 0.8); padding: 2rem; border-radius: 8px; margin-top: 3rem; }
        .interactive h3 { color: #e6c068; }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; color: #d4c4a9; }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.8rem; border: 1px solid #555; border-radius: 4px; background: #222235; color: #fff; font-size: 1rem; }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .rating { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .rating input { display: none; }
        .rating label { font-size: 1.8rem; color: #555; cursor: pointer; transition: color 0.3s; }
        .rating input:checked ~ label { color: #555; }
        .rating label:hover, .rating label:hover ~ label { color: #ffcc00; }
        .rating input:checked + label { color: #ffcc00; }
        .btn { background: linear-gradient(to bottom, #c8a165, #b08c44); color: #1a1a2e; padding: 0.8rem 1.5rem; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; font-size: 1rem; transition: all 0.3s; }
        .btn:hover { background: linear-gradient(to bottom, #e6c068, #c8a165); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(200, 161, 101, 0.4); }
        .sidebar h3 { color: #e6c068; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #444; }
        .sidebar ul { list-style: none; }
        .sidebar li { margin-bottom: 0.8rem; padding-bottom: 0.8rem; border-bottom: 1px dashed #444; }
        .sidebar a { display: block; padding: 0.3rem 0; }
        footer { margin-top: 5rem; padding-top: 2rem; border-top: 2px solid #c8a165; background: rgba(10, 10, 20, 0.9); }
        .footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h4 { color: #c8a165; margin-bottom: 1rem; }
        friend-link { display: block; background: #2a2a40; margin: 0.5rem 0; padding: 0.8rem; border-radius: 4px; border: 1px solid #444; }
        friend-link:hover { background: #3a3a55; border-color: #c8a165; }
        .copyright { text-align: center; padding: 1.5rem; margin-top: 2rem; color: #888; font-size: 0.9rem; border-top: 1px solid #333; }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.8rem; }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            article h1 { font-size: 2.2rem; }
            article h2 { font-size: 1.8rem; }
            .header-top { flex-wrap: wrap; }
            .footer-content { flex-direction: column; }
        }
        @media (max-width: 480px) {
            .hero { padding: 3rem 1rem; }
            .content, .sidebar { padding: 1.5rem; }
            .hero h1 { font-size: 1.8rem; }
            .search-box { flex-direction: column; }
            .search-box input, .search-box button { border-radius: 4px; margin-bottom: 0.5rem; }
        }
