        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #2a9d8f;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e76f51;
        }
        header {
            background: #264653;
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: bold;
            color: #e9c46a;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            color: #f4a261;
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links li a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .nav-links li a:hover {
            background: #2a9d8f;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #e9c46a;
        }
        .breadcrumb {
            padding: 0.8rem 2rem;
            background: #e9f5db;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        .breadcrumb a {
            color: #457b9d;
        }
        main {
            flex: 1;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            width: 100%;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        aside {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        h1 {
            color: #264653;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #e9c46a;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #2a9d8f;
            font-size: 2rem;
            margin: 2rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #f4a261;
        }
        h3 {
            color: #e76f51;
            font-size: 1.6rem;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            color: #457b9d;
            font-size: 1.3rem;
            margin: 1.2rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        emoji {
            font-size: 1.2rem;
            margin-right: 0.3rem;
        }
        .highlight {
            background: #fffacd;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-weight: bold;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .widget {
            margin-bottom: 2rem;
            padding: 1.5rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: white;
        }
        .widget h3 {
            margin-top: 0;
            color: #264653;
        }
        input, textarea, select, button {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        button {
            background: #2a9d8f;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        button:hover {
            background: #21867a;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        footer {
            background: #264653;
            color: white;
            padding: 2rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #e9c46a;
            margin-bottom: 1rem;
        }
        .friend-links {
            list-style: none;
        }
        .friend-links li {
            margin-bottom: 0.5rem;
        }
        .friend-links a {
            color: #a8dadc;
        }
        .friend-links a:hover {
            color: #f4a261;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #457b9d;
            font-size: 0.9rem;
            color: #b7b7b7;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .top-bar { flex-direction: column; align-items: flex-start; }
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            .breadcrumb { padding: 0.8rem 1rem; }
            main { padding: 0 1rem; }
            article { padding: 1.5rem; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .footer-content { flex-direction: column; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, .widget {
            animation: fadeIn 0.8s ease-out;
        }
