        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #93c5fd;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #cbd5e1;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        nav a:hover, nav a.active {
            background-color: #334155;
            color: #fbbf24;
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: #94a3b8;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 5px solid #f59e0b;
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #93c5fd;
            margin: 35px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px dashed #475569;
        }
        h3 {
            font-size: 1.6rem;
            color: #cbd5e1;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #e2e8f0;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(251, 191, 36, 0.1);
            border-left: 4px solid #fbbf24;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .caption {
            font-style: italic;
            color: #94a3b8;
            margin-top: 8px;
            font-size: 0.95rem;
        }
        .internal-links {
            background-color: #334155;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .internal-links h3 {
            margin-top: 0;
            color: #fbbf24;
        }
        .internal-links ul {
            columns: 2;
            list-style: none;
        }
        .internal-links li {
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .internal-links ul {
                columns: 1;
            }
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .widget h3 {
            color: #fbbf24;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        #search-form {
            display: flex;
        }
        #search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: #e2e8f0;
            border-radius: 6px 0 0 6px;
            outline: none;
        }
        #search-button {
            background-color: #f59e0b;
            color: #0f172a;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        #search-button:hover {
            background-color: #fbbf24;
        }
        .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background-color: #0f172a;
            border: 1px solid #475569;
            border-radius: 6px;
            color: #e2e8f0;
            resize: vertical;
        }
        .form-button {
            background-color: #3b82f6;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .form-button:hover {
            background-color: #60a5fa;
        }
        .stars {
            color: #fbbf24;
            font-size: 1.5rem;
            margin: 10px 0;
        }
        .update-time {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #334155;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        footer {
            background-color: #1e293b;
            border-top: 2px solid #334155;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #fbbf24;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            background-color: #334155;
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 6px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: #475569;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1e293b;
                padding: 20px;
                border-top: 1px solid #334155;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, .widget {
                padding: 20px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .widget {
            animation: fadeIn 0.8s ease-out;
        }
