        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #00adb5; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-family: 'Minecraft', monospace; font-size: 2rem; font-weight: bold; color: #00ff88; text-decoration: none; text-shadow: 0 0 10px #00ff88; transition: all 0.3s ease; }
        .my-logo:hover { color: #ffffff; text-shadow: 0 0 15px #00ff88, 0 0 25px #00ff88; }
        .my-logo i { margin-right: 8px; color: #00adb5; }
        nav ul { display: flex; list-style: none; gap: 1.5rem; }
        nav a { color: #cbd5e1; text-decoration: none; padding: 0.5rem 1rem; border-radius: 4px; transition: all 0.3s; font-weight: 500; }
        nav a:hover, nav a.active { background: #00adb5; color: #0f172a; }
        .hamburger { display: none; font-size: 1.8rem; color: #00ff88; cursor: pointer; background: none; border: none; }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #94a3b8; }
        .breadcrumb a { color: #00adb5; text-decoration: none; }
        .breadcrumb span { color: #cbd5e1; }
        .hero { text-align: center; padding: 3rem 1rem; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover; border-radius: 10px; margin: 2rem 0; }
        h1 { font-size: 3.2rem; margin-bottom: 1rem; color: #00ff88; text-shadow: 2px 2px 4px #000; }
        .subtitle { font-size: 1.3rem; color: #94a3b8; max-width: 800px; margin: 0 auto 2rem; }
        .meta-info { display: flex; justify-content: center; gap: 2rem; color: #00adb5; font-size: 0.9rem; margin-top: 1.5rem; }
        .meta-info i { margin-right: 5px; }
        .content-area { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; margin: 3rem 0; }
        main { background: rgba(30, 41, 59, 0.7); padding: 2.5rem; border-radius: 15px; border: 1px solid #334155; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }
        h2 { color: #00adb5; border-left: 5px solid #00ff88; padding-left: 15px; margin: 2.5rem 0 1.5rem; font-size: 2.2rem; }
        h3 { color: #38bdf8; margin: 2rem 0 1rem; font-size: 1.8rem; }
        h4 { color: #cbd5e1; margin: 1.5rem 0 1rem; font-size: 1.4rem; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; color: #e2e8f0; }
        strong { color: #00ff88; font-weight: 700; }
        em { color: #fbbf24; font-style: italic; }
        .highlight-box { background: linear-gradient(90deg, #1e3a8a, #1e40af); border-left: 5px solid #00ff88; padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
        .image-container { text-align: center; margin: 2.5rem 0; }
        .article-img { max-width: 100%; height: auto; border-radius: 10px; border: 3px solid #00adb5; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7); transition: transform 0.5s ease; }
        .article-img:hover { transform: scale(1.02); }
        .img-caption { font-style: italic; color: #94a3b8; margin-top: 0.5rem; font-size: 0.95rem; }
        .internal-links { background: rgba(15, 23, 42, 0.6); padding: 1.5rem; border-radius: 10px; margin: 2rem 0; border: 1px dashed #00adb5; }
        .internal-links h4 { color: #00ff88; }
        .internal-links ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 0.8rem; margin-top: 1rem; }
        .internal-links li a { color: #38bdf8; text-decoration: none; transition: color 0.3s; display: block; padding: 0.3rem 0; }
        .internal-links li a:hover { color: #00ff88; text-decoration: underline; }
        .internal-links li a:before { content: '▶'; margin-right: 8px; font-size: 0.8rem; color: #00adb5; }
        aside { background: rgba(30, 41, 59, 0.7); padding: 1.5rem; border-radius: 15px; border: 1px solid #334155; align-self: start; position: sticky; top: 120px; }
        .widget { margin-bottom: 2rem; }
        .widget-title { color: #00ff88; border-bottom: 2px solid #00adb5; padding-bottom: 0.5rem; margin-bottom: 1rem; font-size: 1.4rem; }
        .search-box { display: flex; margin-bottom: 1.5rem; }
        .search-box input { flex-grow: 1; padding: 0.8rem; border: 1px solid #475569; background: #1e293b; color: white; border-radius: 5px 0 0 5px; }
        .search-box button { background: #00adb5; color: white; border: none; padding: 0.8rem 1.2rem; border-radius: 0 5px 5px 0; cursor: pointer; transition: background 0.3s; }
        .search-box button:hover { background: #00ff88; }
        .rating-widget, .comment-widget { background: rgba(15, 23, 42, 0.6); padding: 1.5rem; border-radius: 10px; }
        .stars { display: flex; gap: 5px; margin: 1rem 0; font-size: 1.8rem; color: #475569; }
        .stars a { color: #475569; transition: color 0.2s, transform 0.2s; text-decoration: none; }
        .stars a:hover { color: #fbbf24; transform: scale(1.2); }
        .comment-widget textarea { width: 100%; padding: 0.8rem; background: #1e293b; border: 1px solid #475569; color: white; border-radius: 5px; margin-bottom: 1rem; min-height: 120px; resize: vertical; }
        .comment-widget button { width: 100%; padding: 0.8rem; background: linear-gradient(90deg, #00adb5, #0097a7); color: white; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .comment-widget button:hover { background: linear-gradient(90deg, #00ff88, #00adb5); }
        footer { background: rgba(15, 23, 42, 0.98); margin-top: 4rem; padding: 3rem 0 1.5rem; border-top: 2px solid #00adb5; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #00ff88; margin-bottom: 1.5rem; font-size: 1.5rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #cbd5e1; text-decoration: none; transition: color 0.3s; }
        .footer-links a:hover { color: #00ff88; padding-left: 5px; }
        friend-link { display: block; margin: 1rem 0; padding: 0.8rem; background: rgba(0, 173, 181, 0.1); border-left: 4px solid #00ff88; }
        friend-link a { color: #38bdf8; font-weight: bold; text-decoration: none; }
        friend-link a:hover { text-decoration: underline; }
        .copyright { text-align: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #334155; color: #94a3b8; font-size: 0.9rem; }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
            aside { position: static; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            nav ul { flex-direction: column; position: fixed; top: 80px; right: -100%; background: rgba(15, 23, 42, 0.98); width: 80%; height: calc(100vh - 80px); padding: 2rem; transition: right 0.5s ease; backdrop-filter: blur(10px); }
            nav ul.active { right: 0; }
            .hamburger { display: block; }
            .header-content { flex-wrap: wrap; }
            .meta-info { flex-direction: column; gap: 0.5rem; }
            .internal-links ul { grid-template-columns: 1fr; }
        }
