        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a365d;
            --primary-gold: #d4af37;
            --secondary-blue: #2d5a8c;
            --accent-red: #c53030;
            --light-bg: #f7fafc;
            --dark-text: #2d3748;
            --light-text: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--secondary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
        }
        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; }
        .text-gold { color: var(--primary-gold); }
        .text-bold { font-weight: 700; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .p-2 { padding: 2rem; }
        .rounded { border-radius: 8px; }
        .shadow { box-shadow: var(--shadow); }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2d3748 100%);
            color: var(--light-text);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary-gold), #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--light-text);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--primary-gold);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #718096;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(45, 90, 140, 0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 4rem 1rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .update-time {
            font-style: italic;
            background: rgba(0,0,0,0.3);
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        main {
            flex: 1;
            padding: 3rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article h1 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        article h2 {
            font-size: 2rem;
            color: var(--secondary-blue);
            margin: 2.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid var(--accent-red);
        }
        article h3 {
            font-size: 1.6rem;
            color: var(--primary-dark);
            margin: 2rem 0 1rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: #4a5568;
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight-box {
            background: linear-gradient(to right, #feffdf, #fffef2);
            border-left: 5px solid var(--primary-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link {
            color: var(--accent-red);
            font-weight: 600;
            border-bottom: 1px dashed;
        }
        .inline-link:hover {
            border-bottom-style: solid;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #718096;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-gold);
        }
        .widget {
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #cbd5e0;
            border-right: none;
            border-radius: 5px 0 0 5px;
        }
        .search-form button {
            background: var(--secondary-blue);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            color: #e2e8f0;
            cursor: pointer;
        }
        .stars .active {
            color: #f6ad55;
        }
        .btn {
            background: var(--primary-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: #b8941f;
            transform: translateY(-2px);
        }
        .comment-widget textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 5px;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 1rem;
        }
        .site-footer {
            background: var(--primary-dark);
            color: var(--light-text);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links h4 {
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin: 0.3rem;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #90cdf4;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 500px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem;
                border-radius: 5px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .content-grid {
                gap: 2rem;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
        }
