        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff9f0;
            padding: 0;
            margin: 0;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #e67e22;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #d35400;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #e67e22, #d35400);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        .my-logo:hover {
            color: #ffeb3b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-links li a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .breadcrumb {
            padding: 10px 20px;
            background: #fdebd0;
            font-size: 0.9rem;
            border-bottom: 1px solid #f5b041;
        }
        .breadcrumb a {
            color: #e67e22;
        }
        .breadcrumb span {
            color: #7d6608;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 30px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        .sidebar {
            background: #fff8e1;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #d35400;
            margin-bottom: 20px;
            line-height: 1.3;
            text-align: center;
            border-bottom: 3px solid #f5b041;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #e67e22;
            margin-top: 40px;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 5px solid #f5b041;
        }
        h3 {
            font-size: 1.6rem;
            color: #f39c12;
            margin-top: 30px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #f5b041;
            margin-top: 20px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .highlight {
            background: #fffacd;
            padding: 15px;
            border-left: 4px solid #f5b041;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        strong {
            color: #d35400;
        }
        em {
            color: #7d6608;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 8px;
        }
        .feature-img {
            width: 80%;
            margin: 25px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid #f5b041;
        }
        .feature-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .feature-img:hover img {
            transform: scale(1.03);
        }
        .widget {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #d35400;
            margin-bottom: 15px;
            text-align: center;
        }
        .widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .widget input, .widget textarea, .widget select {
            padding: 12px;
            border: 1px solid #f5b041;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
            transition: border 0.3s ease;
        }
        .widget input:focus, .widget textarea:focus, .widget select:focus {
            outline: none;
            border-color: #e67e22;
            box-shadow: 0 0 5px rgba(230, 126, 34, 0.5);
        }
        .widget button {
            background: linear-gradient(to right, #e67e22, #d35400);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .widget button:hover {
            background: linear-gradient(to right, #d35400, #e67e22);
            transform: translateY(-2px);
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #f5b041;
        }
        friend-link {
            display: block;
            background: #fef9e7;
            padding: 25px;
            margin-top: 40px;
            border-radius: 12px;
            border: 2px dashed #f5b041;
        }
        .friend-links-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            list-style: none;
            margin-top: 15px;
        }
        .friend-links-list li a {
            display: block;
            padding: 12px;
            background: white;
            border-radius: 8px;
            border: 1px solid #f5b041;
            transition: all 0.3s ease;
            color: #e67e22;
            font-weight: 500;
        }
        .friend-links-list li a:hover {
            background: #e67e22;
            color: white;
            transform: translateX(5px);
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 40px 20px;
            margin-top: 50px;
            text-align: center;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #bdc3c7;
            border-top: 1px solid #34495e;
            padding-top: 20px;
        }
        .last-updated {
            font-size: 0.95rem;
            color: #f5b041;
            margin-top: 10px;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            nav {
                width: 100%;
                display: none;
                margin-top: 15px;
            }
            .nav-links {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }
            .nav-links li a {
                display: block;
                padding: 12px;
                background: rgba(255, 255, 255, 0.1);
            }
            #nav-toggle:checked ~ nav {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            main {
                padding: 20px 10px;
            }
            .content, .sidebar {
                padding: 20px;
            }
        }
        @media print {
            header, footer, .sidebar, .widget, friend-link {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .content {
                box-shadow: none;
                padding: 0;
            }
        }
