        * {
            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-color: #f8f9fa;
            background-image: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            color: #1a237e;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid #ff9800;
            padding-bottom: 0.5rem;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            padding-left: 1rem;
            border-left: 5px solid #3949ab;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            color: #5c6bc0;
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 2rem;
            color: #7986cb;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            background-color: #e3f2fd;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 6px solid #2196f3;
        }
        emoji {
            font-style: normal;
            margin-right: 0.5rem;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .last-updated {
            font-style: italic;
            color: #777;
            text-align: right;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #ccc;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        header {
            background: linear-gradient(to right, #1a237e, #283593);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffeb3b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo i {
            font-size: 2rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            display: flex;
            gap: 2rem;
        }
        nav a {
            color: #e8eaf6;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffcc80;
        }
        nav a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background-color: #ffcc80;
        }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background-color: #e8eaf6;
            color: #5c6bc0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #3949ab;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #283593;
                padding: 1.5rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            nav.open {
                display: flex;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            height: fit-content;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #ff9800;
            color: #1a237e;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input:focus, .comment-form input:focus, .comment-form textarea:focus, .rating-form select:focus {
            border-color: #3949ab;
            outline: none;
            box-shadow: 0 0 0 3px rgba(57, 73, 171, 0.2);
        }
        .btn {
            background: linear-gradient(to right, #ff9800, #ff5722);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
        }
        .btn:hover {
            background: linear-gradient(to right, #f57c00, #e64a19);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 87, 34, 0.3);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: #ffc107;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        .link-list a {
            color: #3949ab;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: color 0.3s;
        }
        .link-list a:hover {
            color: #ff9800;
        }
        .link-list i {
            color: #ff9800;
        }
        .content {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.75rem;
            padding: 0.5rem;
            background-color: #f5f5f5;
            border-radius: 0 0 12px 12px;
        }
        .content-link {
            color: #d84315;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px dotted #ffab91;
            transition: all 0.3s;
        }
        .content-link:hover {
            color: #bf360c;
            border-bottom-style: solid;
            background-color: #ffecb3;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
        }
        .info-box {
            background: #e8f5e9;
            border-left: 6px solid #4caf50;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #555;
            padding: 2rem;
            background-color: #f3e5f5;
            border-radius: 10px;
            margin: 2.5rem 0;
            border-left: 6px solid #9c27b0;
        }
        footer {
            background: linear-gradient(to right, #1a237e, #0d153a);
            color: #e8eaf6;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: #ffeb3b;
            margin-bottom: 1.5rem;
            display: block;
        }
        .footer-links a {
            color: #c5cae9;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ffcc80;
            padding-left: 0.5rem;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffcc80;
            padding: 0.5rem 1.2rem;
            margin: 0.5rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        friend-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #3949ab;
            color: #9fa8da;
            font-size: 0.95rem;
        }
