        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #ff9a3c;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffcc5c;
            text-shadow: 0 0 8px rgba(255, 154, 60, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid #333;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(to right, #ff9a3c, #ffcc5c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            animation: glow 1.5s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 0 0 5px #ff9a3c; }
            to { text-shadow: 0 0 15px #ffcc5c, 0 0 20px #ff9a3c; }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background: rgba(255, 154, 60, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff9a3c;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(30, 30, 46, 0.7);
            border-bottom: 1px solid #444;
        }
        .breadcrumb a { color: #ccc; }
        .breadcrumb a:hover { color: #ff9a3c; }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(circle at center, rgba(26, 26, 46, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
            margin-bottom: 40px;
            border-bottom: 3px solid #333;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff9a3c, #ffcc5c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .search-form {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
        }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #444;
            border-radius: 50px 0 0 50px;
            background: #222;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-form button {
            padding: 0 30px;
            background: linear-gradient(to right, #ff9a3c, #ff6f3c);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #ff6f3c, #ff9a3c);
            box-shadow: 0 0 15px rgba(255, 111, 60, 0.6);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        .article-content {
            background: rgba(22, 33, 62, 0.7);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 154, 60, 0.2);
        }
        h1, h2, h3, h4 {
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            color: #ffcc5c;
            line-height: 1.3;
        }
        h1 { font-size: 3rem; }
        h2 {
            font-size: 2.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 154, 60, 0.4);
        }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; color: #ff9a3c; }
        p {
            margin-bottom: 1.5em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 154, 60, 0.1);
            border-left: 5px solid #ff9a3c;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .info-box {
            background: rgba(26, 26, 46, 0.9);
            border: 2px solid #394989;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
        }
        .img-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
            border: 3px solid #444;
        }
        .caption {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 10px;
            font-style: italic;
        }
        .link-list {
            background: rgba(30, 30, 46, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list h3 { margin-top: 0; }
        .link-list ul {
            list-style: none;
            columns: 2;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .link-list li:before {
            content: '➔';
            position: absolute;
            left: 0;
            color: #ff9a3c;
        }
        .sidebar {
            background: rgba(22, 33, 62, 0.7);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            border: 1px solid rgba(255, 154, 60, 0.2);
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffcc5c;
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
        }
        .comment-form, .rating-form {
            background: rgba(26, 26, 46, 0.9);
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ccc;
        }
        input[type="text"],
        input[type="email"],
        textarea,
        select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #555;
            border-radius: 6px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            margin: 10px 0;
        }
        .stars label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input {
            display: none;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #ffcc5c;
        }
        .submit-btn {
            background: linear-gradient(to right, #ff9a3c, #ff6f3c);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #ff6f3c, #ff9a3c);
            box-shadow: 0 0 20px rgba(255, 111, 60, 0.7);
        }
        .site-footer {
            background: rgba(10, 10, 10, 0.98);
            border-top: 3px solid #333;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffcc5c;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 12px;
            background: rgba(255, 154, 60, 0.1);
            border-radius: 4px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 154, 60, 0.25);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        .update-time {
            color: #ff9a3c;
            font-weight: bold;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                padding: 20px;
                border-top: 2px solid #333;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .link-list ul {
                columns: 1;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 2rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 { font-size: 1.6rem; }
            h3 { font-size: 1.4rem; }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="search"] {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 50px;
                padding: 15px;
            }
        }
