        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        body {
            background-color: #fef9f3;
            color: #333;
            line-height: 1.7;
            font-size: 18px;
        }
        a {
            text-decoration: none;
            color: #e35a47;
            transition: color 0.3s;
        }
        a:hover {
            color: #c44a3a;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #ff9966, #ff5e62);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo span {
            color: #fffacd;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
            display: block;
        }
        nav ul li a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #fff5e6;
            border-bottom: 1px solid #ffd9b3;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 10px;
            font-size: 0.95rem;
        }
        .breadcrumb li:after {
            content: "›";
            margin-left: 10px;
            color: #ff9966;
        }
        .breadcrumb li:last-child:after {
            content: "";
        }
        main {
            padding: 40px 0;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            margin-top: 20px;
        }
        article {
            padding: 0 30px;
        }
        h1 {
            color: #d35400;
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            color: #e67e22;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            border-left: 6px solid #ff9966;
            padding-left: 15px;
        }
        h3 {
            color: #f39c12;
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fff9e6;
            border-left: 5px solid #f1c40f;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
        }
        .article-img {
            text-align: center;
            margin: 40px 0;
        }
        .article-img img {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 5px solid #ffecd2;
        }
        .search-box, .comment-form, .rating-form {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 15px;
            margin: 50px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }
        .search-box h2, .comment-form h2, .rating-form h2 {
            border: none;
            padding: 0;
            margin-top: 0;
        }
        form label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #555;
        }
        form input, form textarea, form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        form input:focus, form textarea:focus, form select:focus {
            border-color: #ff9966;
            outline: none;
        }
        form button {
            background: linear-gradient(to right, #ff9966, #ff5e62);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 94, 98, 0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: #fff5e6;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #ffd9b3;
        }
        .web-link a {
            font-weight: 600;
            font-size: 1.1rem;
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding-right: 30px;
        }
        .footer-section h3 {
            color: #ff9966;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section ul li a {
            color: #bdc3c7;
        }
        .footer-section ul li a:hover {
            color: #ff9966;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #95a5a6;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .header-container { padding: 0 15px; }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #ff5e62;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .footer-container {
                flex-direction: column;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 0 15px; }
            .search-box, .comment-form, .rating-form {
                padding: 20px;
            }
        }
