        * { 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: #f0f0f0;
            background: linear-gradient(135deg, #0f1923 0%, #1a2b3c 70%, #2a3d52 100%);
            background-attachment: fixed;
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Tungsten-Bold', 'Impact', sans-serif; color: #ff4655; margin-bottom: 1rem; letter-spacing: 0.05em; }
        h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); margin-top: 1.5rem; text-align: center; text-transform: uppercase; }
        h2 { font-size: clamp(2rem, 4vw, 3rem); border-bottom: 2px solid #ff4655; padding-bottom: 0.5rem; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #ece8e1; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #b8b8b8; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto; }
        a { color: #00cfc8; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ff4655; transform: translateY(-2px); }
        strong { color: #ffcc00; font-weight: 700; }
        em { font-style: italic; color: #a0d2ff; }
        .highlight { background-color: rgba(255, 70, 85, 0.1); padding: 0.2rem 0.5rem; border-radius: 3px; }
        .last-updated { text-align: right; font-size: 0.9rem; color: #8b9aaa; margin-bottom: 2rem; }
        header { padding: 1.5rem 0; border-bottom: 1px solid #2a3d52; margin-bottom: 2rem; }
        .header-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .my-logo { font-family: 'Tungsten-Bold', sans-serif; font-size: 2.8rem; color: #ff4655; text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em; }
        .my-logo span { color: #00cfc8; }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; gap: 2rem; }
        .nav-links a { color: #ece8e1; font-weight: 600; padding: 0.5rem 1rem; border-radius: 4px; }
        .nav-links a:hover { background: rgba(255, 70, 85, 0.2); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ece8e1; }
        .breadcrumb { margin: 1rem 0; font-size: 0.9rem; color: #8b9aaa; }
        .breadcrumb a { color: #8b9aaa; }
        .breadcrumb a:hover { color: #ff4655; }
        .search-container { margin: 2rem auto; max-width: 600px; }
        .search-form { display: flex; }
        .search-input { flex-grow: 1; padding: 0.8rem 1.2rem; border: 2px solid #2a3d52; border-radius: 30px 0 0 30px; background: #1a2b3c; color: #f0f0f0; font-size: 1rem; }
        .search-button { padding: 0.8rem 1.5rem; background: linear-gradient(to right, #00cfc8, #009c96); border: none; border-radius: 0 30px 30px 0; color: white; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .search-button:hover { background: linear-gradient(to right, #009c96, #007772); }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article { background: rgba(26, 43, 60, 0.7); padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        aside { background: rgba(15, 25, 35, 0.8); padding: 1.5rem; border-radius: 10px; align-self: start; position: sticky; top: 2rem; }
        .sidebar-list { list-style: none; }
        .sidebar-list li { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px dashed #2a3d52; }
        .sidebar-list a { display: block; color: #a0d2ff; }
        .rating-comment-section { margin-top: 4rem; padding-top: 2rem; border-top: 2px solid #2a3d52; }
        .rating-form, .comment-form { background: rgba(42, 61, 82, 0.5); padding: 1.5rem; border-radius: 10px; margin-bottom: 2rem; }
        .stars { display: flex; gap: 0.5rem; margin: 1rem 0; font-size: 1.8rem; cursor: pointer; }
        .star { color: #555; }
        .star:hover, .star.active { color: #ffcc00; }
        textarea, input[type="text"], input[type="email"] {
            width: 100%; padding: 0.8rem; margin-bottom: 1rem; background: #1a2b3c; border: 1px solid #2a3d52; border-radius: 5px; color: #f0f0f0;
        }
        button[type="submit"] { background: linear-gradient(to right, #ff4655, #cc2a3a); color: white; border: none; padding: 0.8rem 2rem; border-radius: 5px; cursor: pointer; font-weight: bold; transition: transform 0.2s; }
        button[type="submit"]:hover { transform: scale(1.05); }
        footer { margin-top: 4rem; padding: 3rem 0; border-top: 1px solid #2a3d52; text-align: center; color: #8b9aaa; }
        .friend-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin: 2rem 0; }
        .friend-links a { color: #00cfc8; font-size: 1.1rem; }
        .copyright { font-size: 0.9rem; margin-top: 2rem; }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3rem; }
            .nav-links {
                display: none; flex-direction: column; width: 100%; margin-top: 1rem; background: #1a2b3c; padding: 1rem; border-radius: 10px;
            }
            .nav-links.active { display: flex; }
            .nav-links li { margin: 0.5rem 0; }
            article, aside { padding: 1.5rem; }
        }
