        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #f0f0f0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #ff6b6b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9f43;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #ff9f43);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: 600;
        }
        nav ul li a:hover {
            background: rgba(255, 107, 107, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b6b;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ff9f43;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            background: rgba(20, 20, 35, 0.9);
            border-radius: 15px;
            margin: 30px auto;
            box-shadow: inset 0 0 30px rgba(0,0,0,0.7);
        }
        article {
            padding: 20px;
        }
        h1 {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 30px;
            color: #ff9f43;
            text-shadow: 0 0 15px rgba(255, 159, 67, 0.7);
            border-bottom: 3px solid #ff6b6b;
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.5rem;
            margin: 40px 0 20px;
            color: #ff6b6b;
            padding-left: 10px;
            border-left: 5px solid #ff9f43;
        }
        h3 {
            font-size: 2rem;
            margin: 30px 0 15px;
            color: #ff9f43;
        }
        h4 {
            font-size: 1.5rem;
            margin: 25px 0 10px;
            color: #6bc5ff;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0 10px;
        }
        strong {
            color: #ff9f43;
            font-weight: 700;
        }
        em {
            color: #6bc5ff;
            font-style: italic;
        }
        .highlight {
            background: rgba(255, 107, 107, 0.2);
            padding: 20px;
            border-left: 5px solid #ff6b6b;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
            position: relative;
        }
        .image-container img {
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .box {
            background: rgba(30, 30, 50, 0.8);
            padding: 25px;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #444;
        }
        .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
        }
        .box i {
            font-size: 3rem;
            color: #ff6b6b;
            margin-bottom: 20px;
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px dashed #444;
        }
        .interactive-section {
            background: rgba(10, 20, 30, 0.8);
            padding: 40px;
            border-radius: 20px;
            margin: 60px 0;
        }
        .search-form, .comment-form, .rating-form {
            margin-bottom: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ff9f43;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #444;
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff6b6b;
        }
        button {
            background: linear-gradient(90deg, #ff6b6b, #ff9f43);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            font-weight: 700;
        }
        button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.5);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star-rating i {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ff9f43;
        }
        footer {
            background: rgba(5, 5, 15, 0.95);
            padding: 50px 0 20px;
            margin-top: 60px;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 30px 0;
            padding: 20px;
            background: rgba(255, 107, 107, 0.1);
            border-radius: 10px;
        }
        friend-link a {
            display: inline-block;
            margin: 0 15px;
            font-size: 1.1rem;
            padding: 10px 20px;
            border: 1px solid #ff6b6b;
            border-radius: 5px;
        }
        friend-link a:hover {
            background: rgba(255, 107, 107, 0.3);
        }
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.8rem; }
            .feature-box { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            nav ul { flex-direction: column; display: none; width: 100%; margin-top: 20px; }
            nav ul.active { display: flex; }
            nav ul li { width: 100%; text-align: center; }
            .hamburger { display: block; position: absolute; top: 30px; right: 30px; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            p { font-size: 1rem; }
            .interactive-section { padding: 20px; }
            .box { padding: 20px; }
        }
        @media (max-width: 480px) {
            .my-logo { font-size: 2rem; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            .breadcrumb { font-size: 0.8rem; }
            button { width: 100%; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .feature-box, .interactive-section {
            animation: fadeIn 1s ease-out;
        }
