        * { 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, #0a2a4a 0%, #1a3a5f 100%);
            color: #e0e0e0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #a5d8ff; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header { background: rgba(10, 25, 47, 0.95); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .my-logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo a:hover { background: linear-gradient(to right, #00c6ff, #0072ff); -webkit-background-clip: text; }
        nav ul { display: flex; list-style: none; }
        nav ul li { margin-left: 2rem; }
        nav ul li a { font-weight: 600; font-size: 1.1rem; padding: 0.5rem 0; position: relative; }
        nav ul li a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: #4dabf7; transition: width 0.3s; }
        nav ul li a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #fff; }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; background: rgba(255,255,255,0.05); }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #fff; }
        .breadcrumb span { color: #4dabf7; }
        main { flex: 1; padding: 2rem 0; }
        .content-wrapper { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        @media (max-width: 992px) { .content-wrapper { grid-template-columns: 1fr; } }
        article { background: rgba(20, 40, 70, 0.8); padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
        h1 { font-size: 3rem; margin-bottom: 1.5rem; color: #ffcc00; text-align: center; border-bottom: 3px solid #4dabf7; padding-bottom: 1rem; }
        h2 { font-size: 2.2rem; margin: 2rem 0 1rem; color: #4dabf7; border-left: 5px solid #ffcc00; padding-left: 15px; }
        h3 { font-size: 1.8rem; margin: 1.5rem 0 0.8rem; color: #a5d8ff; }
        h4 { font-size: 1.4rem; margin: 1.2rem 0 0.6rem; color: #ffb142; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; }
        .highlight { background: rgba(255, 204, 0, 0.1); border-left: 4px solid #ffcc00; padding: 1rem; margin: 1.5rem 0; font-weight: bold; }
        b, strong { color: #ffcc00; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .last-updated { text-align: right; font-style: italic; color: #aaa; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #555; }
        aside { background: rgba(25, 50, 90, 0.8); padding: 1.5rem; border-radius: 15px; height: fit-content; }
        .widget { margin-bottom: 2rem; }
        .widget h3 { color: #ffcc00; font-size: 1.5rem; margin-bottom: 1rem; }
        .search-form { display: flex; }
        .search-form input { flex: 1; padding: 0.8rem; border: 2px solid #4dabf7; border-radius: 5px 0 0 5px; background: #112240; color: #fff; }
        .search-form button { padding: 0.8rem 1.5rem; background: #4dabf7; color: white; border: none; border-radius: 0 5px 5px 0; cursor: pointer; transition: background 0.3s; }
        .search-form button:hover { background: #0072ff; }
        .comment-form, .rating-form { background: rgba(255,255,255,0.05); padding: 1.5rem; border-radius: 10px; margin-top: 2rem; }
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; color: #a5d8ff; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%; padding: 0.8rem; border: 1px solid #555; border-radius: 5px; background: #112240; color: #fff;
        }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .rating-stars { display: flex; gap: 10px; font-size: 1.8rem; color: #ffcc00; cursor: pointer; }
        .rating-stars i:hover { transform: scale(1.2); }
        .submit-btn { background: linear-gradient(to right, #00c6ff, #0072ff); color: white; padding: 0.8rem 2rem; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; transition: transform 0.3s; }
        .submit-btn:hover { transform: translateY(-3px); }
        footer { background: rgba(10, 20, 40, 0.95); padding: 2rem 0; margin-top: 3rem; }
        .footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #ffcc00; margin-bottom: 1rem; }
        friend-link { display: block; background: rgba(255,255,255,0.05); padding: 0.8rem; margin-bottom: 0.5rem; border-radius: 5px; transition: background 0.3s; }
        friend-link:hover { background: rgba(77, 171, 247, 0.2); }
        .copyright { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #444; color: #aaa; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            nav ul { display: none; flex-direction: column; width: 100%; background: rgba(10, 25, 47, 0.98); position: absolute; top: 100%; left: 0; padding: 1rem; }
            nav ul.active { display: flex; }
            nav ul li { margin: 0.5rem 0; }
            .hamburger { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            article { padding: 1.5rem; }
        }
