        * { 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: #e0e0e0;
            background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
            background-attachment: fixed;
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        a { color: #5d8aff; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #ffcc5d; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 2rem; margin: 1rem 0; }
        h1, h2, h3, h4 { font-family: 'Arial Black', Gadget, sans-serif; color: #ffcc5d; margin: 2rem 0 1rem; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; border-bottom: 3px solid #5d8aff; padding-bottom: 1rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-left: 5px solid #ff5d8f; padding-left: 1rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: #5d8aff; }
        h4 { font-size: 1.3rem; color: #8aff5d; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .highlight { background-color: rgba(255, 204, 93, 0.1); padding: 0.2rem 0.5rem; border-radius: 4px; }
        .lead { font-size: 1.2rem; font-weight: bold; color: #ffcc5d; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .container { display: grid; grid-template-columns: 1fr; gap: 2rem; }
        @media (min-width: 992px) {
            .container { grid-template-columns: 3fr 1fr; }
        }
        header { background: rgba(10, 14, 23, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; padding: 1rem 0; border-bottom: 2px solid #5d8aff; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .my-logo { font-family: 'Trebuchet MS', sans-serif; font-size: 2rem; font-weight: 900; color: #ffcc5d; text-shadow: 0 0 10px rgba(255, 204, 93, 0.5); }
        .my-logo a:hover { color: #ffcc5d; }
        .mobile-toggle { display: none; font-size: 1.5rem; background: none; border: none; color: #ffcc5d; cursor: pointer; }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            nav ul { display: none; flex-direction: column; width: 100%; background: rgba(26, 31, 46, 0.98); position: absolute; top: 100%; left: 0; padding: 1rem; border-top: 1px solid #5d8aff; }
            nav ul.active { display: flex; }
        }
        nav ul { display: flex; list-style: none; gap: 2rem; }
        nav a { padding: 0.5rem 1rem; border-radius: 5px; }
        nav a:hover { background: rgba(93, 138, 255, 0.2); }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #aaa; }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ffcc5d; }
        main { background: rgba(26, 31, 46, 0.7); padding: 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        article section { margin-bottom: 3rem; }
        .featured-image { text-align: center; margin: 2rem 0; }
        .featured-image img { border-radius: 10px; border: 3px solid #5d8aff; box-shadow: 0 5px 15px rgba(93, 138, 255, 0.3); transition: transform 0.5s; }
        .featured-image img:hover { transform: scale(1.02); }
        .caption { font-style: italic; color: #aaa; margin-top: 0.5rem; }
        aside { background: rgba(10, 14, 23, 0.8); padding: 1.5rem; border-radius: 15px; align-self: start; }
        .widget { margin-bottom: 2rem; }
        .widget h3 { border-bottom: 2px solid #ff5d8f; padding-bottom: 0.5rem; margin-bottom: 1rem; }
        .search-form, .comment-form, .rating-form { display: flex; flex-direction: column; gap: 1rem; }
        .search-form { flex-direction: row; }
        .search-form input { flex-grow: 1; padding: 0.8rem; border: 2px solid #5d8aff; border-radius: 5px; background: rgba(255, 255, 255, 0.1); color: #fff; }
        .search-form button { padding: 0.8rem 1.5rem; background: #5d8aff; color: white; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s; }
        .search-form button:hover { background: #ffcc5d; color: #0a0e17; }
        textarea, input[type="text"], input[type="email"], select {
            width: 100%; padding: 0.8rem; border: 2px solid #444; border-radius: 5px; background: rgba(255, 255, 255, 0.1); color: #fff;
        }
        textarea { min-height: 150px; resize: vertical; }
        .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
        .star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; font-size: 1.5rem; }
        .star-rating input { display: none; }
        .star-rating label { color: #555; cursor: pointer; transition: color 0.3s; }
        .star-rating label:hover, .star-rating label:hover ~ label, .star-rating input:checked ~ label { color: #ffcc5d; }
        .btn-submit { padding: 1rem; background: linear-gradient(to right, #ff5d8f, #ffcc5d); color: #0a0e17; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; transition: transform 0.3s; }
        .btn-submit:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 93, 143, 0.4); }
        .comments-list, .ratings-summary { list-style: none; }
        .comment-item, .rating-item { background: rgba(255, 255, 255, 0.05); padding: 1rem; margin-bottom: 1rem; border-radius: 10px; border-left: 4px solid #5d8aff; }
        .comment-author { font-weight: bold; color: #ffcc5d; }
        .comment-date { font-size: 0.8rem; color: #aaa; }
        .avg-rating { font-size: 2rem; color: #ffcc5d; text-align: center; }
        .internal-links { background: rgba(93, 138, 255, 0.1); padding: 1.5rem; border-radius: 10px; margin: 2rem 0; }
        .internal-links ul { columns: 2; list-style: none; }
        .internal-links li { margin-bottom: 0.8rem; }
        .internal-links a:before { content: "🔗"; margin-right: 0.5rem; }
        footer { margin-top: 3rem; padding: 2rem 0; border-top: 2px solid #5d8aff; text-align: center; color: #aaa; }
        .friend-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin: 1.5rem 0; }
        .friend-links a { padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.05); border-radius: 5px; }
        .copyright { font-size: 0.9rem; margin-top: 1.5rem; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .last-updated { color: #ff5d8f; font-weight: bold; }
