        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e63946;
            --gold: #fca311;
            --text: #f1faee;
            --text-secondary: #a8dadc;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border: #2d4059;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            min-height: 100vh;
            padding-bottom: 2rem;
        }
        a { color: var(--gold); text-decoration: none; transition: color 0.3s, transform 0.3s; }
        a:hover { color: var(--accent); transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header { background: rgba(22, 33, 62, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--gold); }
        .header-top { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(to right, var(--gold), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .search-form { display: flex; }
        .search-form input {
            padding: 0.7rem 1rem;
            border: 1px solid var(--border);
            border-radius: 4px 0 0 4px;
            background: var(--card-bg);
            color: var(--text);
            width: 250px;
        }
        .search-form button {
            background: var(--gold);
            color: var(--primary);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #e68900; }
        nav { border-top: 1px solid var(--border); }
        .nav-desktop { display: flex; justify-content: center; gap: 2rem; padding: 1rem 0; }
        .nav-desktop a { font-weight: 600; padding: 0.5rem 1rem; border-radius: 4px; }
        .nav-desktop a:hover { background: rgba(252, 163, 17, 0.1); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: var(--gold); }
        .nav-mobile { display: none; flex-direction: column; background: var(--secondary); padding: 1rem; border-top: 1px solid var(--border); }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { padding: 0.8rem; border-bottom: 1px solid var(--border); }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; }
        .breadcrumb a { color: var(--text-secondary); }
        .breadcrumb span { color: var(--gold); }
        main { padding: 2rem 0; }
        article { background: var(--card-bg); border-radius: 12px; padding: 2.5rem; margin-bottom: 2rem; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
        h1 { font-size: 3.2rem; margin-bottom: 1.5rem; color: var(--gold); text-align: center; border-bottom: 3px solid var(--accent); padding-bottom: 1rem; }
        h2 { font-size: 2.2rem; margin: 2.5rem 0 1.2rem; color: var(--text-secondary); border-left: 5px solid var(--gold); padding-left: 1rem; }
        h3 { font-size: 1.8rem; margin: 2rem 0 1rem; color: var(--gold); }
        h4 { font-size: 1.4rem; margin: 1.5rem 0 0.8rem; color: var(--text-secondary); }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; }
        strong { color: var(--gold); font-weight: 700; }
        em { color: var(--text-secondary); }
        .highlight-box {
            background: linear-gradient(90deg, rgba(252,163,17,0.1) 0%, rgba(22,33,62,0.5) 100%);
            border-left: 4px solid var(--gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .content-img {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 8px;
            border: 3px solid var(--border);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            transition: transform 0.5s;
        }
        .content-img:hover { transform: scale(1.02); }
        .img-caption { text-align: center; font-style: italic; color: var(--text-secondary); margin-top: 0.5rem; font-size: 0.95rem; }
        .link-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; margin: 2rem 0; }
        .link-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s;
            text-align: center;
        }
        .link-card:hover { border-color: var(--gold); transform: translateY(-5px); background: rgba(252,163,17,0.05); }
        .update-time {
            text-align: right;
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--border);
        }
        .interactive-section { margin: 3rem 0; }
        .comment-form, .rating-form {
            background: rgba(22, 33, 62, 0.7);
            padding: 2rem;
            border-radius: 8px;
            margin-top: 1.5rem;
        }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: var(--card-bg);
            color: var(--text);
            font-size: 1rem;
        }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .star-rating { display: flex; gap: 0.5rem; font-size: 1.8rem; color: var(--border); cursor: pointer; margin: 1rem 0; }
        .star-rating .star:hover, .star-rating .star.active { color: var(--gold); }
        .submit-btn {
            background: linear-gradient(to right, var(--gold), #ffba08);
            color: var(--primary);
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover { background: linear-gradient(to right, #ffba08, var(--gold)); box-shadow: 0 5px 15px rgba(252,163,17,0.4); }
        footer {
            background: rgba(10, 15, 30, 0.95);
            margin-top: 4rem;
            padding: 3rem 0;
            border-top: 2px solid var(--gold);
        }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
        .footer-section h3 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.5rem; }
        .friend-links { display: flex; flex-wrap: wrap; gap: 1rem; }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 0.7rem 1.2rem;
            border-radius: 4px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }
        friend-link:hover { border-color: var(--gold); background: rgba(252,163,17,0.1); }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top { flex-direction: column; gap: 1rem; }
            .my-logo { font-size: 2rem; }
            .search-form input { width: 200px; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            article { padding: 1.5rem; }
            .link-list { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; }
        }
