        * {
            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.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffcc00;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #ffdd44;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #2c3e50;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem;
            display: block;
            border-bottom: 1px solid #4a6491;
        }
        .mobile-nav a:hover {
            background-color: #4a6491;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #e9ecef;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1a73e8;
        }
        main {
            flex: 1;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        article {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #ffcc00;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #4a6491;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        h3 {
            font-size: 1.5rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #777;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 4px solid #ffcc00;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }
        strong {
            color: #2c3e50;
            font-weight: 700;
        }
        .article-img {
            float: right;
            margin: 0 0 1.5rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            max-width: 400px;
        }
        .update-time {
            font-style: italic;
            color: #888;
            font-size: 0.9rem;
            margin-top: 2rem;
            text-align: right;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: #4a6491;
            margin-bottom: 1rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #1a73e8;
            box-shadow: 0 0 5px rgba(26,115,232,0.3);
        }
        button {
            background: linear-gradient(to right, #1a73e8, #0d47a1);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
        }
        button:hover {
            background: linear-gradient(to right, #0d47a1, #1a73e8);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 2rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .friend-links {
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid #4a6491;
        }
        friend-link a {
            color: #ffcc00;
        }
        friend-link a:hover {
            color: #ffdd44;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #4a6491;
            font-size: 0.9rem;
            color: #ccc;
            grid-column: 1 / -1;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .article-img {
                float: none;
                margin: 1.5rem auto;
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-nav {
                position: static;
                display: none;
            }
            #nav-toggle:checked ~ .mobile-nav {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            main {
                padding: 0 1rem;
            }
            article, aside {
                padding: 1.5rem;
            }
        }
