        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #38bdf8;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid #334155;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #fbbf24, #ef4444, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        .my-logo a i {
            margin-right: 10px;
            font-size: 2.2rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .desktop-nav a:hover {
            background-color: rgba(96, 165, 250, 0.15);
            color: #60a5fa;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #cbd5e1;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            position: fixed;
            top: 80px;
            right: -100%;
            width: 280px;
            height: calc(100vh - 80px);
            background-color: #1e293b;
            padding: 30px;
            transition: right 0.4s ease;
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .mobile-nav a {
            color: #cbd5e1;
            font-size: 1.2rem;
            padding: 10px;
            display: block;
            border-radius: 6px;
        }
        .mobile-nav a:hover {
            background-color: rgba(96, 165, 250, 0.15);
        }
        .breadcrumb {
            background-color: #1e293b;
            padding: 15px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #64748b;
        }
        .hero {
            background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.2), transparent 50%),
                        radial-gradient(circle at bottom left, rgba(239, 68, 68, 0.15), transparent 50%);
            text-align: center;
            padding: 80px 0;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cbd5e1;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto 0;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            background-color: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            padding: 0 30px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #2563eb, #7c3aed);
            transform: scale(1.02);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 50px;
            padding: 30px 0;
        }
        .content-block {
            background-color: rgba(30, 41, 59, 0.6);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 5px solid #8b5cf6;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #93c5fd;
            border-bottom: 2px solid #475569;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 25px 0 15px;
            color: #c4b5fd;
        }
        h4 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: #fbcfe8;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(245, 158, 11, 0.15);
            border-left: 4px solid #f59e0b;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }
        .link-list a {
            background-color: #334155;
            padding: 12px 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #e2e8f0;
        }
        .link-list a:hover {
            background-color: #475569;
        }
        .link-list i {
            color: #60a5fa;
        }
        .image-block {
            float: right;
            margin: 0 0 20px 30px;
            max-width: 400px;
            shape-outside: rectangle;
        }
        .image-block img {
            border: 3px solid #475569;
        }
        .caption {
            font-size: 0.9rem;
            color: #94a3b8;
            text-align: center;
            margin-top: 8px;
            font-style: italic;
        }
        aside {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-widget {
            background-color: rgba(30, 41, 59, 0.8);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #475569;
        }
        .rating-widget h3, .comment-widget h3 {
            color: #86efac;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 20px 0;
        }
        .stars i {
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #fbbf24;
        }
        .rating-form input, .comment-form input,
        .rating-form textarea, .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background-color: #1e293b;
            border: 1px solid #475569;
            border-radius: 6px;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: linear-gradient(90deg, #059669, #047857);
        }
        .update-time {
            font-size: 0.9rem;
            color: #94a3b8;
            text-align: center;
            background-color: rgba(30, 41, 59, 0.8);
            padding: 15px;
            border-radius: 8px;
            border: 1px dashed #475569;
        }
        .update-time i {
            color: #60a5fa;
            margin-right: 8px;
        }
        footer {
            background-color: #1e293b;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #60a5fa;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background-color: #334155;
            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: 1024px) {
            .hero h1 { font-size: 3rem; }
            main { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .desktop-nav { display: none; }
            .mobile-nav-toggle { display: block; }
            .header-container { padding: 0 15px; }
            .image-block {
                float: none;
                margin: 0 auto 20px;
                max-width: 100%;
            }
            .link-list { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero { padding: 60px 0; }
            .content-block, .sidebar-widget { padding: 20px; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            section { padding: 40px 0; }
        }
