        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4a6ee0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #2a4ec4;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(135deg, #2c3e50, #4a6ee0);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            color: white;
        }
        .my-logo span {
            color: #ffdd40;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            text-decoration: none;
            color: #ffdd40;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffdd40;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #e9ecef;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #4a6ee0;
        }
        .content-wrapper {
            flex: 1;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
        }
        article h1 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 5px solid #4a6ee0;
            padding-bottom: 1rem;
        }
        article h2 {
            font-size: 2.2rem;
            color: #34495e;
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
        }
        article h3 {
            font-size: 1.8rem;
            color: #4a6ee0;
            margin: 2rem 0 1rem;
        }
        article h4 {
            font-size: 1.4rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: #2c3e50;
            font-weight: 700;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed #ddd;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .hero-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin: 2.5rem 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .inline-link-list {
            background: #f1f8ff;
            border-left: 5px solid #4a6ee0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .inline-link-list h4 {
            margin-top: 0;
            color: #2c3e50;
        }
        .inline-link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
        }
        .inline-link-list li a {
            display: block;
            padding: 0.5rem;
            border-radius: 5px;
            background: white;
            transition: all 0.3s;
        }
        .inline-link-list li a:hover {
            background: #e3eeff;
            transform: translateX(5px);
            text-decoration: none;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffdd40;
        }
        .search-form input[type="search"] {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 0.8rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background: #4a6ee0;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #2a4ec4;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #ffc107;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            min-height: 120px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            padding: 0.8rem 1.8rem;
            background: #28a745;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #218838;
        }
        .site-footer {
            background: #2c3e50;
            color: #bdc3c7;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #bdc3c7;
        }
        .footer-links a:hover {
            color: #ffdd40;
        }
        friend-link {
            display: block;
            background: #34495e;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        friend-link a {
            color: #4a6ee0;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            .content-wrapper {
                padding: 0 1rem;
                margin: 1rem auto;
            }
            article {
                padding: 2rem 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
        .highlight {
            background: linear-gradient(120deg, #ffdd40 0%, #ffdd40 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .update-time {
            color: #e74c3c;
            font-weight: bold;
        }
