        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-blue: #1a2b4c;
            --secondary-gold: #d4af37;
            --accent-red: #c33c54;
            --light-bg: #f0f2f5;
            --dark-text: #2c3e50;
            --light-text: #ecf0f1;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0d1529 100%);
            color: var(--light-text);
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: linear-gradient(to right, var(--secondary-gold), #f7ef8a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none !important;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none !important;
            color: transparent;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: var(--light-text);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-blue);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--light-text);
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: var(--primary-blue);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary-gold);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin: 2.5rem 0 1.2rem 0;
            padding-left: 0.5rem;
            border-left: 5px solid var(--accent-red);
        }
        h3 {
            font-size: 1.6rem;
            color: #34495e;
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--secondary-gold);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 2px dashed var(--secondary-gold);
            margin: 2rem 0;
            font-weight: 600;
        }
        .update-time {
            display: inline-block;
            background-color: var(--accent-red);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: var(--primary-blue);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, select, textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-size: 1rem;
            width: 100%;
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-blue), #2c3e50);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, var(--accent-red), #a52a3a);
            transform: translateY(-3px);
            text-decoration: none;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            margin: 1rem 0;
            color: #ffc107;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.3);
        }
        .article-image {
            margin: 2.5rem auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            max-width: 800px;
        }
        .article-image img {
            width: 100%;
            transition: var(--transition);
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            padding: 0.8rem;
            background: #f8f9fa;
            font-size: 0.95rem;
        }
        footer {
            background-color: var(--primary-blue);
            color: var(--light-text);
            padding: 3rem 0 1.5rem 0;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--secondary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        friend-link a {
            color: #bdc3c7;
        }
        friend-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #95a5a6;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 800; color: var(--primary-blue); }
        .clear { clear: both; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article, aside { padding: 1.5rem; }
        }
