        * { 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, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4da6ff; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #80c1ff; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 { color: #fff; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; }
        h1 { font-size: 2.8rem; margin-top: 1.5rem; text-align: center; color: #ffcc00; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
        h2 { font-size: 2.2rem; border-left: 5px solid #ff9900; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: #ffcc80; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #b3d9ff; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; color: #b3d9ff; font-weight: 300; }
        .highlight { background-color: rgba(255, 204, 0, 0.15); padding: 2px 6px; border-radius: 3px; font-weight: bold; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        header { background: rgba(12, 26, 45, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 2rem; font-weight: 900; color: #ffcc00; text-decoration: none; display: flex; align-items: center; }
        .logo i { margin-right: 10px; color: #ff6600; }
        .logo span { text-shadow: 1px 1px 3px #000; }
        nav ul { display: flex; list-style: none; }
        nav ul li { margin-left: 2rem; }
        nav ul li a { color: #e0e0e0; font-weight: 500; padding: 8px 5px; border-bottom: 2px solid transparent; }
        nav ul li a:hover, nav ul li a.active { color: #ffcc00; border-bottom-color: #ffcc00; }
        .hamburger { display: none; font-size: 1.8rem; color: #fff; cursor: pointer; background: none; border: none; }
        .breadcrumb { padding: 1rem 0; background: rgba(255,255,255,0.05); margin-bottom: 2rem; }
        .breadcrumb ol { display: flex; list-style: none; flex-wrap: wrap; }
        .breadcrumb li:not(:last-child)::after { content: '/'; margin: 0 10px; color: #888; }
        .breadcrumb a { color: #b3d9ff; }
        .breadcrumb a:hover { color: #fff; }
        main { flex: 1; padding: 2rem 0; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article { background: rgba(30, 50, 80, 0.7); padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
        aside { background: rgba(20, 35, 60, 0.8); padding: 2rem; border-radius: 15px; align-self: start; position: sticky; top: 120px; }
        .widget { margin-bottom: 2.5rem; }
        .widget-title { font-size: 1.4rem; color: #ffcc00; margin-bottom: 1.2rem; padding-bottom: 8px; border-bottom: 2px solid #334d66; }
        .search-box, .comment-form, .rating-form { margin-bottom: 2rem; }
        .search-box input, .comment-form textarea, .comment-form input, .rating-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #446688;
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        .search-box input:focus, .comment-form textarea:focus, .comment-form input:focus, .rating-form select:focus { outline: none; border-color: #ffcc00; box-shadow: 0 0 8px rgba(255,204,0,0.5); }
        button, .btn {
            background: linear-gradient(to right, #ff9900, #ffcc00);
            color: #1a3a5f;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }
        button:hover, .btn:hover { background: linear-gradient(to right, #ffcc00, #ffcc00); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255,204,0,0.4); }
        .star-rating { direction: rtl; display: inline-block; }
        .star-rating input { display: none; }
        .star-rating label { font-size: 1.8rem; color: #555; cursor: pointer; padding: 0 3px; }
        .star-rating label:hover, .star-rating label:hover ~ label, .star-rating input:checked ~ label { color: #ffcc00; }
        .featured-img { margin: 2.5rem 0; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.6); }
        .featured-img figcaption { text-align: center; font-style: italic; padding: 10px; background: rgba(0,0,0,0.5); color: #ccc; }
        .comments-list { margin-top: 2rem; }
        .comment { background: rgba(255,255,255,0.05); padding: 1.5rem; border-radius: 10px; margin-bottom: 1.5rem; border-left: 4px solid #ff9900; }
        .comment-author { font-weight: bold; color: #ffcc80; }
        .comment-date { font-size: 0.9rem; color: #aaa; margin-left: 10px; }
        .content-links { margin: 1.5rem 0; }
        .content-links ul { list-style: none; padding-left: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
        .content-links li { background: rgba(60, 100, 150, 0.3); padding: 15px; border-radius: 8px; transition: transform 0.3s; }
        .content-links li:hover { transform: translateX(5px); background: rgba(80, 130, 200, 0.4); }
        .content-links li a { color: #b3d9ff; display: block; font-weight: 500; }
        footer { background: #0a1520; padding: 3rem 0 1.5rem; margin-top: 3rem; }
        .footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; }
        .footer-section { flex: 1; min-width: 250px; margin-bottom: 2rem; }
        .footer-section h3 { color: #ffcc00; font-size: 1.4rem; margin-bottom: 1.5rem; }
        friend-link { display: block; margin-bottom: 1rem; }
        friend-link a { color: #80c1ff; }
        .copyright { text-align: center; padding-top: 2rem; border-top: 1px solid #334d66; color: #aaa; font-size: 0.9rem; width: 100%; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-direction: column; }
            nav ul { flex-direction: column; width: 100%; display: none; margin-top: 1rem; }
            nav ul.active { display: flex; }
            nav ul li { margin: 0; text-align: center; border-bottom: 1px solid #334d66; }
            nav ul li a { display: block; padding: 12px; }
            .hamburger { display: block; }
            .content-links ul { grid-template-columns: 1fr; }
            article { padding: 1.5rem; }
        }
