        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 0.75rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            color: #0f172a;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
            border-bottom: 4px solid #58cc02;
            padding-bottom: 0.3em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #58cc02;
            padding-left: 0.75rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1e293b;
        }
        h4 {
            font-size: 1.15rem;
            color: #334155;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin-bottom: 1.5rem;
            padding-left: 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            font-weight: 700;
            color: #0f172a;
        }
        .container {
            background: #ffffff;
            border-radius: 1.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            padding: 1.5rem 2rem 2.5rem;
            margin: 1.5rem 0 2.5rem;
        }
        .section-spacing {
            margin-top: 2.5rem;
            padding-top: 1rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #58cc02, #1cb0f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #58cc02;
            margin-right: 0.25rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #cbd5e1;
            border-radius: 0.5rem;
            padding: 0.4rem 0.7rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: #0f172a;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f1f5f9;
        }
        .primary-nav {
            display: flex;
            gap: 1.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            font-weight: 600;
            color: #1e293b;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .primary-nav a:hover {
            border-bottom-color: #58cc02;
            color: #0f172a;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 0.3rem;
            color: #58cc02;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #64748b;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            margin-bottom: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #2563eb;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #0f172a;
            font-weight: 600;
        }
        .search-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1.2rem 0 1.8rem;
            background: #f1f5f9;
            padding: 0.7rem 1rem;
            border-radius: 2rem;
            align-items: center;
            border: 1px solid #e2e8f0;
        }
        .search-bar i {
            color: #94a3b8;
            font-size: 1.1rem;
        }
        .search-bar input {
            flex: 1;
            border: none;
            background: transparent;
            font-size: 1rem;
            padding: 0.4rem 0;
            outline: none;
            min-width: 120px;
            color: #1e293b;
        }
        .search-bar input::placeholder {
            color: #94a3b8;
        }
        .search-bar button {
            background: #58cc02;
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 0.5rem 1.4rem;
            border-radius: 2rem;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.2s, transform 0.1s;
        }
        .search-bar button:hover {
            background: #46a302;
            transform: scale(0.97);
        }
        .feature-image {
            margin: 1.8rem 0;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .feature-image img {
            width: 100%;
            height: auto;
            max-height: 460px;
            object-fit: cover;
        }
        .feature-image figcaption {
            font-size: 0.85rem;
            color: #64748b;
            padding: 0.5rem 1rem;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        .rating-section {
            background: #f0fdf4;
            border-radius: 1rem;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border: 1px solid #bbf7d0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #fbbf24;
            cursor: pointer;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f59e0b;
            transform: scale(1.1);
            transition: transform 0.15s;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
            flex: 1;
        }
        .rating-form input[type="number"] {
            width: 80px;
            padding: 0.4rem 0.6rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            font-size: 1rem;
        }
        .rating-form button {
            background: #1cb0f6;
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 0.5rem 1.4rem;
            border-radius: 2rem;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #0d8bd0;
        }
        .comments-area {
            margin: 2.5rem 0;
            border-top: 2px solid #e2e8f0;
            padding-top: 1.8rem;
        }
        .comments-area h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.75rem;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #58cc02;
            outline: none;
            box-shadow: 0 0 0 3px rgba(88, 204, 2, 0.12);
        }
        .comment-form input[type="text"] {
            padding: 0.6rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            font-size: 1rem;
            max-width: 320px;
        }
        .comment-form input[type="text"]:focus {
            border-color: #58cc02;
            outline: none;
            box-shadow: 0 0 0 3px rgba(88, 204, 2, 0.12);
        }
        .comment-form button {
            align-self: flex-start;
            background: #58cc02;
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 0.6rem 2rem;
            border-radius: 2rem;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #46a302;
        }
        .comment-list {
            list-style: none;
            padding-left: 0;
        }
        .comment-list li {
            background: #f8fafc;
            padding: 1rem 1.2rem;
            border-radius: 0.75rem;
            margin-bottom: 0.8rem;
            border-left: 4px solid #58cc02;
        }
        .comment-list .author {
            font-weight: 700;
            color: #0f172a;
        }
        .comment-list .date {
            font-size: 0.8rem;
            color: #64748b;
            margin-left: 0.8rem;
        }
        friend-link {
            display: block;
            background: #f1f5f9;
            border-radius: 1rem;
            padding: 1.5rem 2rem;
            margin: 2rem 0 1rem;
            border: 1px solid #e2e8f0;
        }
        friend-link::before {
            content: "🔗 Friends & Resources";
            display: block;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: #0f172a;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            padding: 0.2rem 0;
            font-weight: 500;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            border-top: 2px solid #e2e8f0;
            padding: 1.8rem 0 2.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #64748b;
        }
        .site-footer .copyright {
            font-weight: 600;
            color: #1e293b;
            margin-top: 0.5rem;
        }
        .site-footer .last-updated {
            display: inline-block;
            background: #f1f5f9;
            padding: 0.2rem 1rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 480px;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        th {
            background: #f1f5f9;
            font-weight: 700;
            color: #0f172a;
        }
        tr:hover td {
            background: #f8fafc;
        }
        @media (max-width: 820px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1rem 1rem 1.8rem;
                border-radius: 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.2rem;
                padding: 1rem 0 0.4rem;
                border-top: 1px solid #e2e8f0;
                margin-top: 0.6rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.6rem 0;
                border-bottom: 1px solid #f1f5f9;
            }
            .rating-section {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.2rem;
            }
            .rating-form {
                width: 100%;
            }
            .rating-form input[type="number"] {
                width: 70px;
            }
            .search-bar {
                flex-wrap: wrap;
            }
            .search-bar button {
                width: 100%;
            }
            .feature-image img {
                max-height: 240px;
            }
            friend-link {
                padding: 1rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
                padding-left: 0.5rem;
            }
            .container {
                padding: 0.8rem 0.8rem 1.4rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
            border-left: 6px solid #58cc02;
            padding: 1.2rem 1.8rem;
            border-radius: 0.75rem;
            margin: 1.8rem 0;
        }
        .tip-icon {
            color: #58cc02;
            margin-right: 0.4rem;
        }
        .inline-icon {
            margin-right: 0.3rem;
        }
        .btn-outline {
            display: inline-block;
            border: 2px solid #58cc02;
            color: #58cc02;
            font-weight: 700;
            padding: 0.4rem 1.2rem;
            border-radius: 2rem;
            transition: background 0.2s, color 0.2s;
        }
        .btn-outline:hover {
            background: #58cc02;
            color: #fff;
            text-decoration: none;
        }
        .tag {
            display: inline-block;
            background: #e2e8f0;
            padding: 0.1rem 0.8rem;
            border-radius: 2rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: #475569;
            margin-right: 0.3rem;
        }
