        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #58cc02;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #3ca500;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1cb0f6, #58cc02);
            color: white;
            padding: 1.5rem 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;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #ffd700;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #58cc02;
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #dee2e6;
            border-radius: 50px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #58cc02;
        }
        .search-btn {
            padding: 0 30px;
            background: linear-gradient(to right, #58cc02, #1cb0f6);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(88, 204, 2, 0.4);
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.06);
            margin-bottom: 2rem;
        }
        h1 {
            color: #1a1a1a;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #58cc02;
            padding-left: 20px;
        }
        h2 {
            color: #2d3436;
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #1cb0f6;
        }
        h3 {
            color: #3c3c3c;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #e1f5fe 0%, #f1f8e9 100%);
            border-left: 5px solid #1cb0f6;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
            font-style: italic;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 10px;
        }
        .link-list a {
            display: block;
            padding: 12px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            text-align: center;
            font-weight: 600;
        }
        .link-list a:hover {
            background: #58cc02;
            color: white;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .form-title {
            color: #1cb0f6;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        textarea, select, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            margin-bottom: 1.2rem;
            border: 2px solid #dee2e6;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        textarea:focus, select:focus, input:focus {
            outline: none;
            border-color: #58cc02;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #ffd700;
            cursor: pointer;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(to right, #58cc02, #1cb0f6);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(88, 204, 2, 0.3);
        }
        footer {
            background: #2d3436;
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            background: #3c4245;
            padding: 12px;
            margin-bottom: 10px;
            border-radius: 6px;
            color: #58cc02;
            text-align: center;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #58cc02;
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #495057;
            font-size: 0.9rem;
            color: #868e96;
        }
        .update-time {
            color: #ff6b6b;
            font-weight: 600;
            background: #fff5f5;
            padding: 5px 10px;
            border-radius: 5px;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1cb0f6;
                flex-direction: column;
                padding: 2rem;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                padding: 15px;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
            article {
                padding: 1.5rem;
            }
        }
