        * {
            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.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #80ccff;
            text-shadow: 0 0 8px rgba(77, 166, 255, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-2 { margin-top: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, rgba(255,215,0,0.15), rgba(255,140,0,0.15));
            padding: 2px 6px;
            border-radius: 4px;
        }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: rgba(10, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #4da6ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, gold, #ff8c00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            animation: logo-glow 1s ease-in-out infinite alternate;
        }
        @keyframes logo-glow {
            from { text-shadow: 0 0 5px gold; }
            to { text-shadow: 0 0 15px gold, 0 0 20px #ff8c00; }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #fff;
            background: rgba(77, 166, 255, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: rgba(20, 20, 50, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #fff; }
        .breadcrumb span { color: #4da6ff; }
        .search-section {
            background: rgba(30, 30, 60, 0.7);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid #4da6ff;
            border-radius: 8px 0 0 8px;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
        }
        .search-button {
            background: linear-gradient(90deg, #4da6ff, #0066cc);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.2s;
        }
        .search-button:hover {
            transform: scale(1.05);
        }
        .content {
            padding: 2rem 0;
        }
        article {
            background: rgba(25, 25, 45, 0.8);
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.2rem;
            color: gold;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 2px 10px rgba(255,215,0,0.3);
        }
        h2 {
            font-size: 2.4rem;
            color: #80ccff;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(128, 204, 255, 0.3);
        }
        h3 {
            font-size: 1.8rem;
            color: #ffb366;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #cc99ff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        .article-intro {
            font-size: 1.3rem;
            color: #d9d9d9;
            background: rgba(77, 166, 255, 0.05);
            padding: 1.5rem;
            border-left: 5px solid #4da6ff;
            margin-bottom: 2.5rem;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            float: right;
            margin: 0 0 2rem 2rem;
            width: 45%;
            max-width: 500px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: translateY(-10px) rotate(1deg);
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            margin: 2rem 0;
            background: rgba(255, 215, 0, 0.08);
            border-left: 4px solid gold;
            border-radius: 0 12px 12px 0;
            font-size: 1.2rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(40, 40, 70, 0.5);
        }
        .data-table th, .data-table td {
            border: 1px solid #555;
            padding: 1rem;
            text-align: left;
        }
        .data-table th {
            background: rgba(77, 166, 255, 0.3);
            color: #fff;
        }
        .data-table tr:nth-child(even) {
            background: rgba(255,255,255,0.03);
        }
        .update-time {
            display: inline-block;
            background: #333;
            color: #aaa;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        .interactive-section {
            background: rgba(30, 30, 60, 0.7);
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            direction: rtl; 
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: gold;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            background: #1a1a2e;
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            font-family: inherit;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00cc66, #00994d);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            justify-self: start;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #00e673, #00b359);
            box-shadow: 0 0 15px rgba(0, 204, 102, 0.5);
        }
        .site-footer {
            background: rgba(5, 5, 20, 0.95);
            border-top: 2px solid #4da6ff;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dotted #444;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            article { padding: 2rem; }
            .featured-image {
                float: none;
                width: 80%;
                margin: 2rem auto;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-input, .search-button { border-radius: 8px; margin-bottom: 0.5rem; }
            .footer-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            article { padding: 1.5rem; }
            h1 { font-size: 1.9rem; }
            .article-intro { font-size: 1.1rem; }
        }
