        * { 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.8;
            color: #f0f0f0;
            background: #121212;
            background-image: radial-gradient(circle at 15% 50%, #2a0a0a 0%, #121212 40%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #e53935; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ff6b6b; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(20, 20, 20, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid #e53935; position: sticky; top: 0; z-index: 1000; }
        .header-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .my-logo { font-family: 'Impact', 'Arial Black', sans-serif; font-size: 2.2rem; color: #e53935; text-shadow: 0 0 10px #ff0000; letter-spacing: 2px; }
        .my-logo:hover { color: #ff8a80; }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; gap: 30px; }
        .nav-links a { font-weight: 600; font-size: 1.1rem; padding: 8px 12px; border-radius: 4px; }
        .nav-links a:hover { background: rgba(229, 57, 53, 0.2); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #e53935; }
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; background: #1a1a1a; }
        .breadcrumb a { color: #bbb; }
        .breadcrumb a:hover { color: #fff; }
        .breadcrumb span { color: #e53935; }
        main { flex: 1; padding: 40px 0; }
        article { background: rgba(30, 30, 30, 0.8); border-radius: 12px; padding: 40px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7); margin-bottom: 40px; }
        h1 { font-size: 3.5rem; color: #e53935; margin-bottom: 25px; text-align: center; text-shadow: 0 0 15px #ff5252; line-height: 1.2; }
        h2 { font-size: 2.5rem; color: #ff8a80; margin: 50px 0 20px; border-left: 5px solid #e53935; padding-left: 15px; }
        h3 { font-size: 1.8rem; color: #ffab91; margin: 30px 0 15px; }
        h4 { font-size: 1.4rem; color: #ffccbc; margin: 20px 0 10px; }
        p { margin-bottom: 25px; font-size: 1.15rem; text-align: justify; }
        .highlight { background: rgba(229, 57, 53, 0.1); border-left: 4px solid #e53935; padding: 20px; margin: 25px 0; border-radius: 0 8px 8px 0; }
        .emoji { font-size: 1.3rem; margin-right: 8px; }
        .last-updated { text-align: right; font-style: italic; color: #aaa; margin-bottom: 30px; font-size: 0.95rem; }
        .featured-image { width: 80%; margin: 30px auto; border: 5px solid #e53935; border-radius: 10px; overflow: hidden; box-shadow: 0 15px 25px rgba(0, 0, 0, 0.9); }
        .featured-image img { width: 100%; transition: transform 0.5s; }
        .featured-image img:hover { transform: scale(1.03); }
        .interactive-section { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 50px 0; }
        .search-box, .comment-box, .rating-box { background: #1e1e1e; padding: 25px; border-radius: 10px; border: 2px solid #333; }
        .search-box h3, .comment-box h3, .rating-box h3 { color: #4fc3f7; }
        form { display: flex; flex-direction: column; gap: 15px; }
        input, textarea, select { padding: 12px; border-radius: 6px; border: 1px solid #555; background: #2a2a2a; color: #fff; font-size: 1rem; }
        button { padding: 12px 24px; background: linear-gradient(45deg, #e53935, #ff5252); color: white; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; transition: background 0.3s, transform 0.2s; }
        button:hover { background: linear-gradient(45deg, #ff5252, #e53935); transform: scale(1.05); }
        .stars { display: flex; gap: 10px; font-size: 2rem; color: #ffd740; cursor: pointer; }
        .stars i:hover { transform: scale(1.2); }
        footer { background: #0f0f0f; padding: 40px 0 20px; border-top: 2px solid #e53935; }
        friend-link { display: block; margin: 20px 0; }
        friend-link a { display: inline-block; margin: 0 15px 10px 0; padding: 8px 15px; background: #2a2a2a; border-radius: 5px; }
        friend-link a:hover { background: #e53935; color: #fff; }
        .copyright { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #333; color: #888; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-links { display: none; flex-direction: column; width: 100%; background: rgba(20, 20, 20, 0.98); position: absolute; top: 100%; left: 0; padding: 20px; gap: 15px; }
            .nav-links.active { display: flex; }
            .hamburger { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 25px; }
            .interactive-section { grid-template-columns: 1fr; }
        }
