* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #faf6f0;
            color: #2d2a24;
            line-height: 1.8;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 24px 32px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #e8e0d6;
            position: relative;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #b3472b;
            background: linear-gradient(145deg, #b3472b, #d46a4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo span {
            font-weight: 300;
            color: #7a6b5a;
            -webkit-text-fill-color: #7a6b5a;
        }
        nav {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            text-decoration: none;
            color: #4a3f35;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 14px;
            border-radius: 40px;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #b3472b;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: #4a3f35;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-menu {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 8px;
            font-size: 13px;
            color: #8a7e72;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b3472b;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-section {
            margin: 28px 0 20px;
            display: flex;
            justify-content: center;
        }
        .search-form {
            display: flex;
            width: 100%;
            max-width: 600px;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e0d8ce;
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            font-size: 16px;
            outline: none;
            background: #fff;
            color: #2d2a24;
        }
        .search-form button {
            background: #b3472b;
            color: #fff;
            border: none;
            padding: 0 28px;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #8c3720;
        }
        h1 {
            font-size: 36px;
            font-weight: 800;
            color: #2d2a24;
            margin: 20px 0 8px;
            line-height: 1.2;
        }
        h1 i {
            color: #b3472b;
            margin-right: 8px;
        }
        .last-updated {
            font-size: 14px;
            color: #8a7e72;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #b3472b;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
            color: #2d2a24;
            margin: 40px 0 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #e8e0d6;
        }
        h2 i {
            color: #b3472b;
            margin-right: 10px;
        }
        h3 {
            font-size: 22px;
            font-weight: 600;
            color: #3d352c;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #4a3f35;
            margin: 20px 0 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 17px;
            color: #3a342e;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            border-radius: 20px;
            margin: 24px auto;
            display: block;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
            font-size: 17px;
            color: #3a342e;
        }
        li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #f9f3ec;
            border-left: 6px solid #b3472b;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #b3472b;
        }
        .btn-link {
            display: inline-block;
            background: #b3472b;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.2s, transform 0.1s;
            margin: 4px 0;
        }
        .btn-link:hover {
            background: #8c3720;
            transform: translateY(-2px);
        }
        .btn-link i {
            margin-right: 8px;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            margin: 20px 0;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            color: #b3472b;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .link-list li a:hover {
            border-bottom-color: #b3472b;
        }
        .link-list li a i {
            margin-right: 6px;
            font-size: 14px;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0 28px;
        }
        .card {
            background: #fcf9f5;
            border-radius: 20px;
            padding: 24px 28px;
            border: 1px solid #ece4da;
            transition: box-shadow 0.2s;
        }
        .card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }
        .card h3 {
            margin-top: 0;
            font-size: 20px;
        }
        .card h3 i {
            color: #b3472b;
            margin-right: 8px;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #ddd;
            cursor: pointer;
            margin: 12px 0;
        }
        .star-rating .fas.fa-star {
            color: #f5b342;
        }
        .star-rating .far.fa-star {
            color: #ccc;
            transition: color 0.2s;
        }
        .star-rating .far.fa-star:hover,
        .star-rating .far.fa-star:hover~.far.fa-star {
            color: #f5b342;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid #dcd2c6;
            font-size: 15px;
            resize: vertical;
            min-height: 100px;
            background: #fff;
            color: #2d2a24;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #b3472b;
            box-shadow: 0 0 0 3px rgba(179, 71, 43, 0.1);
        }
        .form-actions {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .form-actions button {
            background: #b3472b;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .form-actions button:hover {
            background: #8c3720;
        }
        .form-actions .btn-outline {
            background: transparent;
            color: #b3472b;
            border: 2px solid #b3472b;
        }
        .form-actions .btn-outline:hover {
            background: #b3472b;
            color: #fff;
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #e8e0d6;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            font-style: normal;
        }
        friend-link::before {
            content: "🔗 Friendly Links: ";
            font-weight: 700;
            color: #2d2a24;
            font-size: 16px;
        }
        friend-link a {
            color: #b3472b;
            text-decoration: none;
            margin: 0 6px;
            font-weight: 500;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 8px;
            font-size: 14px;
            color: #8a7e72;
        }
        .copyright strong {
            color: #4a3f35;
        }
        @media (max-width: 768px) {
            .container {
                padding: 16px;
                margin-top: 12px;
                border-radius: 16px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 18px;
            }
            p {
                font-size: 16px;
            }
            header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #fff;
                padding: 16px 0 8px;
                gap: 6px;
                order: 2;
                border-top: 1px solid #e8e0d6;
                margin-top: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 10px 16px;
                border-radius: 8px;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                padding: 12px 16px;
                font-size: 15px;
            }
            .search-form button {
                padding: 0 18px;
            }
            .feature-img {
                border-radius: 14px;
            }
            .link-list {
                flex-direction: column;
                gap: 6px;
            }
            friend-link {
                font-size: 14px;
                line-height: 2;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 12px;
            }
            h1 {
                font-size: 22px;
            }
            h2 {
                font-size: 19px;
            }
            .card {
                padding: 16px 18px;
            }
            .star-rating {
                font-size: 24px;
            }
            .my-logo {
                font-size: 22px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .content-section {
            max-width: 900px;
            margin: 0 auto;
        }
        .inline-link {
            color: #b3472b;
            font-weight: 500;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .inline-link:hover {
            border-bottom-color: #b3472b;
        }
        .emoji-big {
            font-size: 1.2em;
            margin-right: 4px;
        }
