        * { 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, #f5f7fa 0%, #e4edf5 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #0066cc; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #e6007e; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; }
        .highlight { background: linear-gradient(120deg, #ffdeeb80 0%, #e6f3ff80 100%); padding: 0.2em 0.5em; border-radius: 4px; }
        .last-update { font-size: 0.9em; color: #666; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #ccc; }
        header { background: linear-gradient(90deg, #0d1b3e 0%, #1a3a8f 100%); color: white; padding: 1rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-family: 'Brush Script MT', cursive; font-size: 2.8rem; font-weight: bold; background: linear-gradient(to right, #ff6b9d, #4dc2f8); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 2px 4px rgba(0,0,0,0.2); letter-spacing: 1px; }
        .my-logo:hover { transform: scale(1.05); }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; gap: 1.8rem; }
        .nav-links a { color: #fff; font-weight: 500; padding: 0.5rem 0.8rem; border-radius: 4px; }
        .nav-links a:hover { background: rgba(255,255,255,0.15); color: #ffde59; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: white; }
        .breadcrumb { background: #f0f7ff; padding: 0.8rem 0; font-size: 0.9rem; border-bottom: 1px solid #d1e3ff; }
        .breadcrumb ol { display: flex; list-style: none; flex-wrap: wrap; gap: 0.5rem; }
        .breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 0.5rem; color: #888; }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #e6007e; }
        main { flex: 1; padding: 2rem 0; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
        h1 { font-size: 2.8rem; color: #0d1b3e; margin-bottom: 1.5rem; line-height: 1.2; border-bottom: 3px solid #e6007e; padding-bottom: 0.5rem; }
        h2 { font-size: 2rem; color: #1a3a8f; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px dashed #cce0ff; }
        h3 { font-size: 1.6rem; color: #2a4eb3; margin: 2rem 0 1rem; }
        h4 { font-size: 1.3rem; color: #3a5cc9; margin: 1.5rem 0 0.8rem; }
        p, li { margin-bottom: 1.2rem; font-size: 1.1rem; color: #444; text-align: justify; }
        ul, ol { padding-left: 1.8rem; margin-bottom: 1.5rem; }
        blockquote { border-left: 4px solid #e6007e; padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: #555; background: #f9f9ff; padding: 1.5rem; border-radius: 0 8px 8px 0; }
        .interactive-links { background: #f0f8ff; padding: 1.5rem; border-radius: 10px; margin: 2rem 0; border-left: 5px solid #4dc2f8; }
        aside { background: white; padding: 1.8rem; border-radius: 15px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); align-self: start; position: sticky; top: 120px; }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 { font-size: 1.4rem; color: #0d1b3e; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #eee; }
        .search-box, .comment-form, .rating-form { display: flex; flex-direction: column; gap: 1rem; }
        input, textarea, select { padding: 0.9rem; border: 1px solid #ccc; border-radius: 8px; font-family: inherit; font-size: 1rem; transition: border 0.3s, box-shadow 0.3s; }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #4dc2f8; box-shadow: 0 0 0 3px rgba(77, 194, 248, 0.2); }
        button, .btn {
            background: linear-gradient(90deg, #e6007e, #ff3366);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover { background: linear-gradient(90deg, #cc006f, #e62e5c); transform: translateY(-3px); box-shadow: 0 7px 14px rgba(230, 0, 126, 0.3); }
        .stars { display: flex; gap: 0.5rem; justify-content: center; font-size: 1.8rem; color: #ffd700; cursor: pointer; margin: 1rem 0; }
        .stars i:hover { transform: scale(1.2); }
        footer { background: #0d1b3e; color: #d1e3ff; padding: 3rem 0 1.5rem; margin-top: 3rem; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
        friend-link { display: block; margin: 0.8rem 0; color: #a3c8ff; }
        friend-link:hover { color: #ffde59; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #2a4eb3; font-size: 0.9rem; color: #8ca3d8; }
        @media (max-width: 768px) {
            .header-content { flex-direction: column; gap: 1rem; }
            .my-logo { font-size: 2.2rem; }
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a3a8f;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #2a4eb3;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active { display: flex; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article, aside { padding: 1.8rem; }
        }
