        * { 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: #333;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            color: #f0f0f0;
            overflow-x: hidden;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.3s; }
        a:hover { color: #ffd43b; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .header-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
        .my-logo { font-family: 'Arial Black', sans-serif; font-size: 2.2rem; background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .my-logo:hover { transform: scale(1.05); }
        nav ul { display: flex; list-style: none; gap: 25px; }
        nav a { font-weight: 600; padding: 8px 12px; border-radius: 5px; }
        nav a:hover { background: rgba(255, 212, 59, 0.1); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ffd43b; }
        .breadcrumb { padding: 15px 20px; background: rgba(30, 30, 46, 0.8); font-size: 0.9rem; }
        .breadcrumb a:not(:last-child)::after { content: ' › '; margin: 0 8px; color: #888; }
        .hero { text-align: center; padding: 60px 20px; background: radial-gradient(circle at center, #2d3436, #0a0a0a); border-bottom: 2px solid #ffd43b; }
        .hero h1 { font-size: 3.5rem; margin-bottom: 20px; background: linear-gradient(90deg, #ffd43b, #ff6b6b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; color: #ccc; }
        main { padding: 40px 0; display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
        .content-area { background: rgba(26, 26, 46, 0.7); padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        article h2, article h3, article h4 { margin-top: 30px; margin-bottom: 15px; color: #ffd43b; }
        article h2 { font-size: 2.2rem; border-left: 5px solid #ff6b6b; padding-left: 15px; }
        article h3 { font-size: 1.8rem; }
        article h4 { font-size: 1.4rem; color: #48dbfb; }
        article p { margin-bottom: 20px; text-align: justify; }
        article ul, article ol { margin-left: 30px; margin-bottom: 20px; }
        article li { margin-bottom: 10px; }
        .highlight { background: rgba(255, 212, 59, 0.1); border-left: 4px solid #ffd43b; padding: 15px; border-radius: 0 8px 8px 0; margin: 20px 0; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .feature-img { margin: 30px auto; box-shadow: 0 15px 35px rgba(0,0,0,0.7); border: 3px solid #444; transition: transform 0.5s; }
        .feature-img:hover { transform: scale(1.02); }
        .sidebar { background: rgba(26, 26, 46, 0.7); padding: 25px; border-radius: 15px; height: fit-content; }
        .widget { margin-bottom: 30px; }
        .widget h3 { color: #ff9ff3; border-bottom: 2px solid; padding-bottom: 10px; margin-bottom: 15px; }
        .search-box form { display: flex; }
        .search-box input { flex: 1; padding: 12px; border: 1px solid #444; background: #1a1a2e; color: white; border-radius: 5px 0 0 5px; }
        .search-box button { background: #ff6b6b; border: none; color: white; padding: 0 20px; cursor: pointer; border-radius: 0 5px 5px 0; transition: background 0.3s; }
        .search-box button:hover { background: #ff4757; }
        .rating-widget, .comment-widget { display: flex; flex-direction: column; gap: 15px; }
        .stars { display: flex; gap: 5px; font-size: 1.5rem; color: #ddd; }
        .stars i { cursor: pointer; transition: color 0.2s; }
        .stars i:hover, .stars i.active { color: #ffd43b; }
        .rating-widget textarea, .comment-widget textarea { width: 100%; padding: 12px; background: #1a1a2e; border: 1px solid #444; color: white; border-radius: 5px; resize: vertical; }
        .rating-widget button, .comment-widget button { padding: 12px; background: #4dabf7; color: white; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s; }
        .rating-widget button:hover, .comment-widget button:hover { background: #339af0; }
        footer { background: #0a0a0a; padding: 40px 20px 20px; margin-top: 50px; border-top: 2px solid #333; }
        .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .footer-section h4 { color: #ffd43b; margin-bottom: 20px; font-size: 1.3rem; }
        friend-link { display: block; padding: 8px 0; border-bottom: 1px dashed #444; }
        friend-link:last-child { border-bottom: none; }
        .copyright { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #444; color: #888; font-size: 0.9rem; }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
            .sidebar { order: -1; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            nav { width: 100%; order: 3; margin-top: 15px; display: none; }
            nav.active { display: block; }
            nav ul { flex-direction: column; gap: 10px; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1rem; }
            article h2 { font-size: 1.8rem; }
        }
