        * {
            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;
        }
        a {
            text-decoration: none;
            color: #e67e22;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #d35400;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #ff7e00, #ff4d00);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 2.5rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #f1f2f6;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #666;
        }
        main {
            padding: 2rem 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #ff7e00;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
        }
        .content-section {
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2rem;
            color: #e67e22;
            margin-bottom: 1.2rem;
            border-left: 5px solid #e67e22;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.6rem;
            color: #3498db;
            margin: 1.5rem 0 1rem 0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 4px solid #f1c40f;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 0.5rem;
        }
        .image-wrapper {
            text-align: center;
            margin: 2rem 0;
            position: relative;
        }
        .image-wrapper img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            max-height: 500px;
            object-fit: cover;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .search-box, .comment-form, .rating-form {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #ddd;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        form {
            display: grid;
            gap: 1.2rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #e67e22;
            outline: none;
            box-shadow: 0 0 5px rgba(230, 126, 34, 0.5);
        }
        button {
            background: linear-gradient(to right, #e67e22, #d35400);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            width: fit-content;
        }
        button:hover {
            background: linear-gradient(to right, #d35400, #e67e22);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #f1c40f;
            cursor: pointer;
        }
        .stars i:hover {
            color: #f39c12;
        }
        .long-tail-links {
            background-color: #2c3e50;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .long-tail-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #34495e;
            padding: 1.2rem;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #3b5998;
        }
        .web-link a {
            color: #ecf0f1;
            font-size: 1rem;
            display: block;
            line-height: 1.5;
        }
        footer {
            background-color: #1a252f;
            color: #bdc3c7;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .copyright a {
            color: #3498db;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 1rem;
            }
            .article-header h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #ff7e00;
                padding: 1rem;
                border-top: 1px solid rgba(255,255,255,0.2);
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links a {
                justify-content: center;
                padding: 1rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1rem;
            }
            .long-tail-links .container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            button {
                width: 100%;
            }
        }
