        * {
            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.7;
            color: #333;
            background-color: #f9f9f9;
            background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
            background-size: 20px 20px;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease, background-color 0.3s ease;
        }
        a:hover {
            color: #ff9900;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; }
        .highlight {
            background-color: #fffacd;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .site-header {
            background-color: #1a1a2e;
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            color: #ffcc00;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            color: #ff9900;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ddd;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: #ffcc00;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #2d2d44;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #ddd;
            padding: 0.8rem 20px;
            border-bottom: 1px solid #3a3a5e;
        }
        .mobile-nav a:hover {
            background-color: #3a3a5e;
            color: #ffcc00;
        }
        .breadcrumb {
            background-color: #2d2d44;
            color: #aaa;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #fff;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 5px solid #ffcc00;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #2d2d44;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e0e0e0;
        }
        h3 {
            font-size: 1.6rem;
            color: #3a3a5e;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.2rem;
            color: #444;
            font-weight: 500;
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid #ffcc00;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border: 8px solid #fff;
            max-height: 500px;
            object-fit: cover;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 4px solid #ffcc00;
            padding-left: 2rem;
            margin: 2.5rem 0;
            font-style: italic;
            color: #555;
            background-color: #fcf8e3;
            padding: 1.5rem 2rem;
            border-radius: 0 8px 8px 0;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        .content-link {
            font-weight: 700;
            color: #d35400;
            border-bottom: 1px dotted #d35400;
        }
        .content-link:hover {
            color: #a04000;
            border-bottom-style: solid;
        }
        .sidebar {
            background-color: #fff;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #1a1a2e;
            margin-top: 0;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #ffcc00;
            margin-bottom: 1.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #ffcc00;
            color: #1a1a2e;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #ff9900;
        }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .rating-widget .star {
            color: #ddd;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .star:hover,
        .rating-widget .star.active {
            color: #ffcc00;
        }
        .rating-form input, .rating-form select,
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
        }
        .rating-form button, .comment-form button {
            background-color: #1a1a2e;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background-color 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #2d2d44;
        }
        .update-time {
            background-color: #e8f4fc;
            padding: 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            color: #2c3e50;
        }
        .update-time i {
            color: #3498db;
            margin-right: 8px;
        }
        .site-footer {
            background-color: #1a1a2e;
            color: #ccc;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: #ffcc00;
        }
        friend-link {
            display: block;
            background-color: #2d2d44;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
        }
        friend-link h4 {
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1rem;
            margin-bottom: 0.5rem;
            color: #aaa;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2d2d44;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .main-nav ul { display: none; }
            .hamburger { display: block; }
            .header-content { padding: 0 15px; }
            article { padding: 2rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .sidebar { position: static; }
        }
