*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a2a3a;
            --primary-light: #2c3e50;
            --accent: #e67e22;
            --accent-light: #f39c12;
            --gold: #f1c40f;
            --bg: #faf8f5;
            --card-bg: #ffffff;
            --text: #1e1e1e;
            --text-light: #5a5a5a;
            --border: #e0dcd6;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--accent-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            display: block;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 16px;
        }
        header {
            background: var(--primary);
            color: #fff;
            border-radius: 0 0 var(--radius) var(--radius);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 16px;
            gap: 8px 16px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: var(--accent);
        }
        .my-logo span {
            font-weight: 300;
            color: #fff;
            font-size: 0.7rem;
            letter-spacing: 2px;
            display: block;
            margin-top: -4px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px 16px;
            flex-wrap: wrap;
        }
        .nav-list a {
            color: #eee;
            font-weight: 500;
            font-size: 0.92rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-list a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: var(--gold);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: var(--card-bg);
            padding: 10px 20px;
            border-radius: var(--radius);
            margin: 16px 0 8px;
            box-shadow: var(--shadow);
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .sep {
            color: var(--text-light);
            font-weight: 300;
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }
        main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 20px 0 40px;
        }
        article {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 28px 24px 40px;
            margin-bottom: 32px;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: var(--accent);
            margin-right: 10px;
        }
        .subhead {
            font-size: 1.1rem;
            color: var(--text-light);
            border-left: 4px solid var(--accent);
            padding-left: 18px;
            margin-bottom: 24px;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: var(--bg);
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.82rem;
            color: var(--text-light);
            margin-bottom: 20px;
            border: 1px solid var(--border);
        }
        .last-updated i {
            margin-right: 6px;
            color: var(--accent);
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--primary-light);
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-light);
            margin: 20px 0 8px;
        }
        p {
            margin-bottom: 16px;
            font-size: 1rem;
            color: var(--text);
        }
        p b,
        p strong {
            color: var(--primary);
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
        }
        li {
            margin-bottom: 8px;
            font-size: 0.98rem;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 5px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 20px 0;
        }
        .highlight-box i {
            color: var(--accent);
            margin-right: 8px;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .feature-image {
            margin: 24px 0 28px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #eee;
        }
        .feature-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--text-light);
            background: var(--bg);
            border-top: 1px solid var(--border);
        }
        .search-section {
            background: var(--primary);
            color: #fff;
            padding: 24px 28px;
            border-radius: var(--radius);
            margin: 32px 0 24px;
            box-shadow: var(--shadow);
        }
        .search-section h3 {
            color: var(--gold);
            margin-top: 0;
            font-size: 1.3rem;
        }
        .search-section p {
            color: #ddd;
            font-size: 0.95rem;
            margin-bottom: 14px;
        }
        .search-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1 1 220px;
            padding: 12px 18px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            background: #fff;
            color: var(--text);
            min-width: 140px;
        }
        .search-form button {
            padding: 12px 28px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--accent-light);
            transform: scale(1.02);
        }
        .rating-area {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin: 24px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px 28px;
        }
        .rating-area label {
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .rating-area select {
            padding: 8px 14px;
            border-radius: 8px;
            border: 1px solid var(--border);
            font-size: 1rem;
            background: #fff;
        }
        .rating-area button {
            padding: 8px 24px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-area button:hover {
            background: var(--primary-light);
        }
        .comments-section {
            margin: 32px 0 16px;
            background: var(--bg);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid var(--border);
        }
        .comments-section h3 {
            margin-top: 0;
            color: var(--primary);
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: var(--font);
            resize: vertical;
            min-height: 90px;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: var(--accent);
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 10px;
            align-items: center;
        }
        .comment-form input[type="text"] {
            flex: 1 1 180px;
            padding: 10px 14px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 0.95rem;
            background: #fff;
        }
        .comment-form input[type="text"]:focus {
            border-color: var(--accent);
            outline: none;
        }
        .comment-form button {
            padding: 10px 28px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: var(--accent-light);
        }
        friend-link {
            display: block;
            background: var(--primary);
            color: #fff;
            padding: 20px 24px;
            border-radius: var(--radius);
            margin: 32px 0 16px;
            text-align: center;
        }
        friend-link a {
            color: var(--gold);
            margin: 0 10px;
            font-weight: 500;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        friend-link::before {
            content: "🔗 Friends & Resources";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--gold);
            letter-spacing: 1px;
        }
        footer {
            background: var(--primary);
            color: #bbb;
            border-radius: var(--radius) var(--radius) 0 0;
            padding: 24px 20px 18px;
            text-align: center;
            font-size: 0.88rem;
            margin-top: 12px;
        }
        footer .copyright {
            font-size: 0.82rem;
            color: #888;
            border-top: 1px solid #2a3a4a;
            padding-top: 14px;
            margin-top: 14px;
        }
        footer a {
            color: var(--gold);
        }
        footer a:hover {
            color: #fff;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            .header-inner {
                padding: 0 10px;
            }
            article {
                padding: 20px 14px 30px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--primary-light);
                padding: 12px 16px;
                border-radius: 0 0 var(--radius) var(--radius);
                gap: 4px;
                margin-top: 8px;
            }
            .nav-list a {
                padding: 8px 12px;
                font-size: 0.95rem;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .breadcrumb {
                font-size: 0.78rem;
                padding: 8px 12px;
            }
            .search-section {
                padding: 18px 16px;
            }
            .rating-area {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            .rating-area select,
            .rating-area button {
                width: 100%;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form input[type="text"] {
                width: 100%;
            }
            .feature-image img {
                max-height: 260px;
            }
            friend-link {
                padding: 16px 14px;
            }
            friend-link a {
                display: inline-block;
                margin: 4px 6px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.4rem;
            }
            .subhead {
                font-size: 0.95rem;
                padding-left: 12px;
            }
            article {
                padding: 14px 10px 24px;
            }
            .search-form input[type="text"],
            .search-form button {
                width: 100%;
                flex: 1 1 100%;
            }
            .nav-list a {
                font-size: 0.85rem;
                padding: 6px 10px;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            .nav-list {
                display: flex !important;
            }
        }
        .schema-hidden {
            display: none;
        }
