        * { 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;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a { color: #2c5aa0; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #e63946; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            background: linear-gradient(to right, #1e3c72, #2a5298);
            color: white;
            padding: 1.5rem 0;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.8rem;
            font-weight: bold;
            color: #ffd166;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
        }
        .my-logo i { margin-right: 10px; color: #06d6a0; }
        .my-logo a { color: inherit; text-decoration: none; }
        .my-logo a:hover { color: #ffd166; text-shadow: 0 0 10px #ffd166; }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9f1fa;
            border-radius: 8px;
            margin-bottom: 2rem;
            padding-left: 1.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #2c5aa0; }
        .breadcrumb a:hover { color: #e63946; }
        .breadcrumb i { margin: 0 8px; color: #666; }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #2a5298;
            margin: 2.5rem 0 1.2rem;
            padding-left: 15px;
            border-left: 6px solid #06d6a0;
        }
        h3 {
            font-size: 1.6rem;
            color: #e63946;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #1d3557;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #2c5aa0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff9db;
            padding: 1.5rem;
            border-radius: 10px;
            border: 2px dashed #ffd166;
            margin: 2rem 0;
        }
        .bold { font-weight: 800; color: #1d3557; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .last-updated {
            background-color: #e9f7ef;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            margin: 2rem 0;
            font-style: italic;
            color: #2d6a4f;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
        }
        .img-container img:hover { transform: scale(1.02); }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background-color: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #1e3c72;
            margin-bottom: 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffd166;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #ccc;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background-color: #2c5aa0;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover { background-color: #e63946; }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars i:hover,
        .stars i:hover ~ i { color: #ffd700; }
        .stars i.active { color: #ffd700; }
        .rating-widget input, .rating-widget textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            width: 100%;
        }
        .rating-widget button, .comment-form button {
            background: linear-gradient(to right, #06d6a0, #04b586);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-widget button:hover, .comment-form button:hover {
            background: linear-gradient(to right, #04b586, #038c6a);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(4, 181, 134, 0.4);
        }
        .comment { border-bottom: 1px solid #eee; padding: 1rem 0; }
        .comment:last-child { border-bottom: none; }
        .comment-author { font-weight: bold; color: #2a5298; }
        .comment-date { font-size: 0.85rem; color: #888; margin-left: 10px; }
        footer {
            background: linear-gradient(to right, #1d3557, #2a5298);
            color: white;
            padding: 3rem 0 1.5rem;
            border-radius: 15px 15px 0 0;
            margin-top: 3rem;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 2rem 0;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .friend-links a {
            color: #ffd166;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 10px 20px;
            border-radius: 25px;
            border: 1px solid rgba(255, 209, 102, 0.3);
        }
        .friend-links a:hover {
            background-color: rgba(255, 209, 102, 0.2);
            color: white;
            text-decoration: none;
            transform: scale(1.05);
        }
        .copyright {
            font-size: 0.9rem;
            color: #ccc;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
            aside { position: static; }
            h1 { font-size: 2.4rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            nav { width: 100%; margin-top: 1.5rem; }
            nav ul {
                flex-direction: column;
                gap: 0;
                display: none;
                width: 100%;
            }
            nav ul.active { display: flex; }
            nav a { padding: 12px 20px; border-radius: 8px; margin-bottom: 5px; }
            .hamburger { display: block; position: absolute; top: 1.5rem; right: 20px; }
            article { padding: 1.8rem; }
            .friend-links { flex-direction: column; align-items: center; }
        }
