* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a2c42;
            --secondary-dark: #2d4368;
            --accent-red: #c53030;
            --accent-gold: #d4af37;
            --light-bg: #f5f7fa;
            --text-light: #e8eaed;
            --text-dark: #2c3e50;
            --border-color: #3a506b;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--accent-gold), #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0.5rem;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--accent-gold);
            transform: translateY(-2px);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 2rem;
            font-size: 0.9rem;
            max-width: 1300px;
            margin: 0 auto;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--secondary-dark);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #666;
        }
        main {
            max-width: 1300px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        article {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        aside {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            color: var(--primary-dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--secondary-dark);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h3 {
            color: var(--secondary-dark);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #444;
            font-size: 1.3rem;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--secondary-dark);
            font-weight: 500;
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid var(--accent-gold);
            border-radius: 5px;
            margin-bottom: 2.5rem;
        }
        .search-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2.5rem;
            border: 1px solid #ddd;
        }
        .search-box h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #ccc;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--accent-red);
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #a02626;
        }
        .rating-comment-section {
            margin: 3rem 0;
            padding: 2.5rem;
            background-color: #f8f9fa;
            border-radius: 12px;
            border: 1px solid #dee2e6;
        }
        .rating-form, .comment-form {
            margin-bottom: 2.5rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: var(--accent-gold);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary-dark);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent-red);
            outline: none;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--secondary-dark);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2.5rem 0;
            border: 5px solid white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }
        .content-links {
            background-color: #f1f8ff;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 5px solid #4dabf7;
        }
        .content-links h4 {
            margin-top: 0;
            color: #1864ab;
        }
        .content-links ul {
            list-style: none;
            columns: 2;
        }
        .content-links li {
            margin-bottom: 0.8rem;
            break-inside: avoid;
        }
        .content-links a {
            color: #1c7ed6;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-links a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        .internal-link {
            color: var(--accent-red);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px dotted var(--accent-red);
            padding-bottom: 2px;
        }
        .internal-link:hover {
            border-bottom-style: solid;
        }
        .highlight {
            background-color: #fff9db;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #fab005;
            margin: 2rem 0;
        }
        .warning {
            background-color: #fff5f5;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid var(--accent-red);
            margin: 2rem 0;
        }
        .update-time {
            display: inline-block;
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.7rem;
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #a5d8ff;
            text-decoration: none;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1100px) {
            main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
            .content-links ul {
                columns: 1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--secondary-dark);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav a {
                padding: 1rem 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 2rem;
            }
            .lead {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .header-container, main, .breadcrumb, .footer-content {
                padding-left: 1.2rem;
                padding-right: 1.2rem;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.8s ease-out;
        }
