        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf8f5;
            color: #1e2a32;
            line-height: 1.7;
            padding: 0 1rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e0e;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #1a2a1f;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #b45309;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e6d5c3;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2d4a3a;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d5a4a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border-radius: 20px;
            padding: 1.8rem 2.2rem;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0 1.2rem 0;
            border-bottom: 1px solid #e6d5c3;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #1a2a1f;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            color: #b45309;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #b45309;
        }
        .my-logo span {
            font-weight: 300;
            color: #6b7c6b;
            font-size: 0.9rem;
            margin-left: 0.2rem;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 500;
            color: #2d4a3a;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        nav a:hover {
            border-bottom-color: #b45309;
            color: #b45309;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #1a2a1f;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #f4efe9;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            margin: 1rem 0 1.8rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #5a6b5a;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb span {
            color: #8a9a8a;
        }
        .search-wrap {
            background: #f4efe9;
            padding: 1.2rem 1.5rem;
            border-radius: 60px;
            margin: 1.5rem 0 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-wrap label {
            font-weight: 600;
            color: #2d4a3a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-wrap input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            background: white;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }
        .search-wrap input[type="text"]:focus {
            outline: 2px solid #b45309;
            outline-offset: 2px;
        }
        .search-wrap button {
            background: #b45309;
            color: white;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-wrap button:hover {
            background: #7a2e0e;
            transform: scale(1.02);
        }
        .user-feedback {
            background: #f4efe9;
            padding: 1.8rem 2rem;
            border-radius: 24px;
            margin: 2.5rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
        }
        .feedback-block {
            flex: 1 1 240px;
        }
        .feedback-block h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4a373;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #b45309;
        }
        .feedback-block form {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-top: 0.8rem;
        }
        .feedback-block form input,
        .feedback-block form textarea {
            padding: 0.6rem 1rem;
            border: 1px solid #d6c8b8;
            border-radius: 30px;
            font-size: 0.95rem;
            background: white;
            resize: vertical;
        }
        .feedback-block form textarea {
            min-height: 70px;
            border-radius: 20px;
        }
        .feedback-block form button {
            background: #2d4a3a;
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-block form button:hover {
            background: #1a2a1f;
        }
        .feature-img {
            margin: 2rem 0;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            background: #e6d5c3;
        }
        .feature-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 1200/600;
        }
        .feature-img figcaption {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #5a6b5a;
            background: #f4efe9;
            font-style: italic;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        .styled-table thead {
            background: #2d4a3a;
            color: white;
        }
        .styled-table th,
        .styled-table td {
            padding: 0.8rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #e6d5c3;
        }
        .styled-table tbody tr:nth-child(even) {
            background: #faf8f5;
        }
        .styled-table tbody tr:hover {
            background: #f0ebe3;
        }
        friend-link {
            display: block;
            background: #f4efe9;
            padding: 1.2rem 1.8rem;
            border-radius: 40px;
            margin: 2rem 0 1rem 0;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: white;
            border-radius: 30px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #e6d5c3;
            text-decoration: none;
        }
        footer {
            border-top: 1px solid #e6d5c3;
            padding: 1.8rem 0 1rem 0;
            margin-top: 2.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: #6b7c6b;
        }
        footer p {
            margin-bottom: 0.4rem;
        }
        @media (max-width: 820px) {
            .container {
                padding: 1rem 1.2rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                padding: 1rem 0 0.4rem 0;
                border-top: 1px solid #e6d5c3;
                margin-top: 0.6rem;
            }
            #nav-toggle:checked~nav {
                display: flex;
            }
            .search-wrap {
                flex-direction: column;
                align-items: stretch;
                border-radius: 30px;
                padding: 1rem;
            }
            .search-wrap button {
                justify-content: center;
            }
            .user-feedback {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.2rem;
            }
            .styled-table {
                font-size: 0.8rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 0.5rem 0.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.4rem;
            }
            .container {
                padding: 0.8rem 0.8rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            h3 {
                font-size: 1.05rem;
            }
            .feature-img {
                border-radius: 14px;
            }
            .feedback-block form button {
                width: 100%;
                text-align: center;
            }
        }
        .highlight {
            background: #fdf0e0;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            font-weight: 500;
        }
        .badge {
            display: inline-block;
            background: #b45309;
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .quote {
            border-left: 4px solid #b45309;
            padding: 0.8rem 1.2rem;
            background: #faf8f5;
            border-radius: 0 16px 16px 0;
            margin: 1.2rem 0;
            font-style: italic;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 1.2rem 0;
        }
        @media (max-width: 600px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
        }
        .last-updated {
            display: inline-block;
            background: #e6d5c3;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #3d5a4a;
        }
