        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f9fc;
            color: #1e293b;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #1d4ed8;
            text-decoration: underline;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.25rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f172a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #2563eb20;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #1e293b;
        }
        h4 {
            font-size: 1.1rem;
            color: #334155;
        }
        p {
            margin-bottom: 1.15rem;
        }
        hr {
            border: none;
            border-top: 2px solid #e2e8f0;
            margin: 2.5rem 0;
        }
        .container {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.8rem 2rem 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            margin: 1.5rem 0 2.5rem;
        }
        .badge {
            display: inline-block;
            background: #2563eb10;
            color: #2563eb;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .emoji-lg {
            font-size: 1.5rem;
            vertical-align: middle;
            margin-right: 0.25rem;
        }
        .text-muted {
            color: #64748b;
            font-size: 0.92rem;
        }
        .last-updated {
            background: #f1f5f9;
            display: inline-block;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #475569;
            margin-bottom: 1.5rem;
        }
        header {
            padding: 1.2rem 0 0.6rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem 1.5rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.7rem;
            -webkit-text-fill-color: initial;
            color: #2563eb;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            -webkit-text-fill-color: initial;
            color: #64748b;
            margin-left: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            cursor: pointer;
            color: #1e293b;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f1f5f9;
        }
        .nav-toggle .fa-times {
            display: none;
        }
        .nav-toggle.active .fa-bars {
            display: none;
        }
        .nav-toggle.active .fa-times {
            display: inline;
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem 1.2rem;
        }
        .navbar a {
            font-weight: 500;
            padding: 0.35rem 0.1rem;
            border-bottom: 2px solid transparent;
            font-size: 0.95rem;
            color: #334155;
        }
        .navbar a:hover {
            border-bottom-color: #2563eb;
            color: #0f172a;
            text-decoration: none;
        }
        .navbar .nav-active {
            border-bottom-color: #2563eb;
            color: #0f172a;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.6rem;
            font-size: 0.85rem;
            color: #64748b;
            padding: 0.6rem 0 0.2rem;
            width: 100%;
        }
        .breadcrumb a {
            color: #475569;
        }
        .breadcrumb a:hover {
            color: #2563eb;
        }
        .breadcrumb .sep {
            color: #94a3b8;
            font-weight: 300;
        }
        .search-form,
        .comment-form,
        .score-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin: 1.2rem 0 1.8rem;
            padding: 1.5rem 1.8rem;
            background: #f8fafc;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            align-items: center;
        }
        .search-form input[type="text"],
        .comment-form textarea,
        .comment-form input[type="text"],
        .score-form select {
            flex: 1 1 220px;
            padding: 0.7rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fff;
            transition: 0.2s;
            font-family: inherit;
        }
        .search-form input[type="text"]:focus,
        .comment-form textarea:focus,
        .comment-form input[type="text"]:focus,
        .score-form select:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px #2563eb20;
            outline: none;
        }
        .comment-form textarea {
            min-height: 90px;
            flex-basis: 100%;
            resize: vertical;
        }
        .search-form button,
        .comment-form button,
        .score-form button {
            padding: 0.7rem 1.8rem;
            background: #2563eb;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .score-form button:hover {
            background: #1d4ed8;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px #2563eb30;
        }
        .search-form button i,
        .comment-form button i,
        .score-form button i {
            font-size: 0.9rem;
        }
        .form-label {
            font-weight: 600;
            font-size: 0.9rem;
            color: #334155;
            display: block;
            width: 100%;
            margin-bottom: -0.3rem;
        }
        .score-stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #f59e0b;
        }
        .score-stars i {
            cursor: pointer;
            transition: 0.15s;
        }
        .score-stars i:hover {
            transform: scale(1.2);
            color: #d97706;
        }
        .featured-figure {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
        }
        .featured-figure img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            background: #f1f5f9;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #475569;
            text-align: center;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem 1rem;
            margin: 1.5rem 0 2rem;
        }
        .link-grid a {
            display: block;
            padding: 0.7rem 1.1rem;
            background: #f8fafc;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            font-weight: 500;
            font-size: 0.92rem;
            transition: 0.2s;
        }
        .link-grid a:hover {
            background: #eef2ff;
            border-color: #2563eb50;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
        }
        .link-grid a i {
            color: #2563eb;
            margin-right: 0.4rem;
            font-size: 0.8rem;
        }
        footer {
            margin-top: 3rem;
            padding: 2rem 0 1.5rem;
            border-top: 1px solid #e2e8f0;
        }
        friend-link {
            display: block;
            margin-bottom: 1.5rem;
            padding: 1.2rem 1.8rem;
            background: #f1f5f9;
            border-radius: 16px;
            font-size: 0.92rem;
        }
        friend-link::before {
            content: "🔗 Friends & Resources";
            display: block;
            font-weight: 700;
            font-size: 1.05rem;
            color: #0f172a;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: #ffffff;
            border-radius: 30px;
            border: 1px solid #e2e8f0;
            font-size: 0.85rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #eef2ff;
            border-color: #2563eb40;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }
        .copyright strong {
            color: #334155;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1.2rem 1rem 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            header {
                padding: 0.8rem 0 0.4rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: inline-block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.2rem;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid #e2e8f0;
                margin-top: 0.4rem;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                width: 100%;
                padding: 0.5rem 0.2rem;
                border-bottom: none;
            }
            .navbar a:hover {
                background: #f1f5f9;
                border-bottom: none;
                border-radius: 6px;
                padding-left: 0.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .search-form,
            .comment-form,
            .score-form {
                padding: 1rem 1.2rem;
                flex-direction: column;
                align-items: stretch;
            }
            .search-form input[type="text"],
            .comment-form textarea,
            .comment-form input[type="text"],
            .score-form select {
                flex-basis: auto;
                width: 100%;
            }
            .search-form button,
            .comment-form button,
            .score-form button {
                justify-content: center;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
            .score-stars {
                font-size: 1.3rem;
            }
            friend-link a {
                display: block;
                margin: 0.3rem 0;
            }
        }
        @media (max-width: 480px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0.8rem 0.8rem 1.4rem;
                border-radius: 14px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .text-sm {
            font-size: 0.88rem;
        }
        .fw-600 {
            font-weight: 600;
        }
        .highlight {
            background: #fef9c3;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #f8fafc;
            border-radius: 14px;
            padding: 1.4rem 1.6rem;
            border: 1px solid #e2e8f0;
            transition: 0.2s;
        }
        .card:hover {
            border-color: #2563eb30;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
        }
        .card i {
            font-size: 1.6rem;
            color: #2563eb;
            margin-bottom: 0.5rem;
        }
        .quote-block {
            background: #eef2ff;
            border-left: 4px solid #2563eb;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
            font-style: italic;
            color: #1e293b;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            font-style: normal;
            color: #475569;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        th {
            background: #f1f5f9;
            font-weight: 600;
            color: #0f172a;
        }
        tr:hover td {
            background: #f8fafc;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #2563eb;
            color: #fff !important;
            padding: 0.5rem 1.2rem;
            border-radius: 0 0 8px 8px;
            z-index: 999;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
            text-decoration: none;
        }
