/* ── Directory Page Scoped Styles ── */

        /* Widen container for the grid */
        .dir-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem 6rem;
            position: relative;
            z-index: 10;
        }

        /* Header */
        .dir-hero {
            text-align: center;
            margin-bottom: 4rem;
            padding-top: 2rem;
        }

        .dir-eye {
            width: 100px;
            height: 100px;
            margin: 0 auto 2.5rem;
            background: radial-gradient(circle at center, #ff2a2a 10%, #7c0000 60%, #150002 100%);
            border-radius: 50%;
            border: 2px solid rgba(225, 29, 72, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 0 30px rgba(225, 29, 72, 0.45),
                inset 0 0 15px rgba(0, 0, 0, 0.8);
            animation: dir-eye-pulse 4s ease-in-out infinite alternate;
            position: relative;
            overflow: hidden;
        }

        .dir-eye::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
            pointer-events: none;
        }

        .dir-eye .pupil {
            width: 16px;
            height: 56px;
            background: #000;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0,0,0,0.9);
            transition: var(--mr-transition);
        }

        @keyframes dir-eye-pulse {
            0%  { transform: scale(1);    box-shadow: 0 0 20px rgba(225, 29, 72, 0.35), inset 0 0 15px rgba(0,0,0,0.8); }
            100%{ transform: scale(1.05); box-shadow: 0 0 45px rgba(225, 29, 72, 0.75), 0 0 15px rgba(245, 158, 11, 0.2), inset 0 0 15px rgba(0,0,0,0.8); }
        }

        .dir-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.25rem;
            background: linear-gradient(135deg, #ffffff, #f59e0b, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.01em;
            text-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
        }

        /* LCP Optimization: Ensure header is visible immediately */
        .dir-hero, .dir-seo-intro {
            opacity: 1 !important;
            transform: none !important;
            visibility: visible !important;
        }

        /* Initial state for Scroll Reveal (Moved to static CSS to eliminate reflow) */
        .dir-card, .dir-sub-card {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .dir-revealed {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        .dir-tagline {
            font-size: 1.05rem;
            color: var(--mr-text-muted);
            letter-spacing: 5px;
            text-transform: uppercase;
            font-weight: 300;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* SEO intro */
        .dir-seo-intro {
            max-width: 850px;
            margin: 0 auto 3rem;
            text-align: center;
            background: rgba(255, 255, 255, 0.012);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 2.25rem 2.5rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }
        .dir-seo-intro p {
            color: var(--mr-text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }
        .dir-seo-intro strong { color: var(--mr-text-main); }

        /* Search */
        .dir-search-wrap {
            max-width: 600px;
            margin: 0 auto 3.5rem;
        }

        #community-search {
            width: 100%;
            padding: 1.15rem 2rem;
            background: rgba(15, 8, 28, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 9999px;
            color: var(--mr-text-main);
            font-family: var(--mr-font-family);
            font-size: 1.1rem;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            transition: var(--mr-transition);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
        }

        #community-search:focus {
            outline: none;
            border-color: var(--mr-purple);
            background: rgba(20, 10, 35, 0.75);
            box-shadow: 0 0 30px rgba(124, 58, 237, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.4);
            transform: scale(1.015);
        }

        #community-search::placeholder { color: var(--mr-text-muted); }

        /* Grid */
        .dir-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 1.75rem;
            contain: layout; /* Silence cascading reflows during shuffle */
        }

        /* Cards */
        .dir-card {
            text-decoration: none;
            color: inherit;
            display: block;
            border-radius: var(--mr-border-radius);
            background: linear-gradient(135deg, rgba(20, 10, 35, 0.4) 0%, rgba(10, 4, 18, 0.7) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        /* Category Color-Themed Card Hover Glows */
        .dir-card:hover {
            transform: translateY(-6px) scale(1.01);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
        }
        .dir-card:has(.pb-purple):hover {
            border-color: rgba(168, 85, 247, 0.45);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(168, 85, 247, 0.18);
        }
        .dir-card:has(.pb-gold):hover {
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(245, 158, 11, 0.18);
        }
        .dir-card:has(.pb-crimson):hover {
            border-color: rgba(225, 29, 72, 0.5);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(225, 29, 72, 0.18);
        }
        .dir-card:has(.pb-blue):hover {
            border-color: rgba(52, 152, 219, 0.5);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(52, 152, 219, 0.18);
        }
        .dir-card:has(.pb-green):hover {
            border-color: rgba(46, 204, 113, 0.5);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(46, 204, 113, 0.18);
        }
        .dir-card:has(.pb-violet):hover {
            border-color: rgba(155, 89, 182, 0.5);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(155, 89, 182, 0.18);
        }
        .dir-card:has(.pb-magenta):hover {
            border-color: rgba(190, 24, 209, 0.5);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(190, 24, 209, 0.18);
        }

        .dir-card, .dir-sub-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .dir-card-inner, .dir-sub-inner {
            padding: 2.25rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .dir-sub-inner {
            padding: 1.75rem;
        }

        .dir-pfp-wrap { 
            margin-bottom: 1.75rem; 
            overflow: hidden;
            border-radius: 50%;
            width: 76px;
            height: 76px;
        }

        .dir-pfp {
            width: 76px;
            height: 76px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            background-color: #0a020f;
            transition: var(--mr-transition);
        }

        .dir-card:hover .dir-pfp {
            transform: scale(1.08) rotate(3deg);
        }

        /* pfp border variants */
        .pb-purple  { border: 2px solid var(--mr-purple); box-shadow: 0 0 15px rgba(124, 58, 237, 0.5); }
        .pb-gold    { border: 2px solid var(--mr-accent); box-shadow: 0 0 15px rgba(245, 158, 11, 0.5); }
        .pb-crimson { border: 2px solid var(--mr-primary); box-shadow: 0 0 15px rgba(225, 29, 72, 0.5); }
        .pb-blue    { border: 2px solid #3498db; box-shadow: 0 0 15px rgba(52, 152, 219, 0.5); }
        .pb-green   { border: 2px solid #2ecc71; box-shadow: 0 0 15px rgba(46, 204, 113, 0.5); }
        .pb-violet  { border: 2px solid #9b59b6; box-shadow: 0 0 15px rgba(155, 89, 182, 0.5); }
        .pb-magenta { border: 2px solid #BE18D1; box-shadow: 0 0 15px rgba(190, 24, 209, 0.5); }

        .dir-tag {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--mr-text-muted);
            margin-bottom: 0.5rem;
            display: block;
        }

        .dir-card-content { display: flex; flex-direction: column; flex: 1; }

        .dir-card-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.45rem;
            margin-bottom: 0.85rem;
            color: #fff;
            line-height: 1.2;
        }

        .dir-card-desc {
            color: var(--mr-text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.75rem;
            flex-grow: 1;
            line-height: 1.65;
        }

        .dir-card-action {
            font-family: 'Cinzel Decorative', cursive;
            font-weight: 700;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.65rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            color: #fff !important; /* Force white for signature look */
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--mr-transition);
            margin-top: auto;
            background: rgba(255, 255, 255, 0.04);
            cursor: pointer;
            width: fit-content;
        }

        .dir-card:hover .dir-card-action {
            background: #fff;
            color: #050209 !important;
            border-color: #fff;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

        /* Action color variants */
        .ac-purple  { color: #A855F7; }
        .ac-gold    { color: #ffcc00; }
        .ac-crimson { color: #d91c1c; }
        .ac-blue    { color: #3498db; }
        .ac-green   { color: #2ecc71; }
        .ac-violet  { color: #9b59b6; }
        .ac-magenta { color: #BE18D1; }

        /* Footer */
        .dir-footer {
            margin-top: 8rem;
            padding-top: 4rem;
            padding-bottom: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .dir-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #d91c1c, #BE18D1);
            margin: 2rem auto;
            border-radius: 2px;
        }

        .dir-back {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--mr-text-muted);
            font-weight: 600;
            transition: var(--mr-transition);
        }

        .dir-back:hover {
            color: var(--mr-accent);
            text-shadow: var(--mr-glow-gold);
        }

        .dir-back:hover .dir-arrow {
            transform: translateY(-4px);
        }
        .dir-back:hover { color: #ffcc00; }

        /* Visually hidden */
        .sr-only {
            position: absolute;
            width: 1px; height: 1px;
            padding: 0; margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

        
        /* ── Super Feature (Malleable Reality hero card) ── */
        .dir-super-card {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 2.5rem;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 3.5rem;
            margin-bottom: 2.5rem;
            text-decoration: none;
            color: inherit;
            transition: var(--mr-transition);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-color: rgba(10, 5, 20, 0.60);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.65);
        }
        .dir-super-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.12) 0%, transparent 60%);
            pointer-events: none;
            z-index: 1;
        }
        .dir-super-card > * {
            position: relative;
            z-index: 2;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 1);
        }
        .dir-super-card > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
        }
        .dir-super-card.mr-featured {
            border-color: rgba(124, 58, 237, 0.4);
            background-image: linear-gradient(135deg, rgba(10, 5, 20, 0.75), rgba(5, 2, 9, 0.95)), url('directory-assets/malleable-reality-bg.webp');
        }
        .dir-super-card.mr-featured:hover {
            border-color: var(--mr-purple);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(124, 58, 237, 0.25);
        }
        .dir-super-card.mr-featured .dir-super-action {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.15);
        }
        .dir-super-card.mr-featured:hover .dir-super-action {
            background: #fff;
            color: #050209;
            border-color: #fff;
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
        }
        .dir-super-card.divinity-featured {
            background-image: linear-gradient(135deg, rgba(10, 5, 20, 0.75), rgba(5, 2, 9, 0.95)), url('directory-assets/divinity.gif');
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
        }
        .dir-super-card.divinity-featured .dir-super-badge {
            color: #fff;
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.25);
        }
        .dir-super-card.divinity-featured .dir-super-title {
            color: #fff;
        }
        .dir-super-card.divinity-featured .dir-super-desc {
            color: rgba(255,255,255,0.85);
        }
        .dir-super-card.divinity-featured .dir-super-pfp {
            border-color: #fff;
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
        }

        .dir-super-card:hover {
            transform: translateY(-6px) scale(1.005);
            border-color: rgba(255, 255, 255, 0.18);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
        }
        .dir-super-card.divinity-featured:hover {
            border-color: rgba(255, 255, 255, 0.45);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 255, 255, 0.15);
        }
        .dir-super-pfp {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 3px solid var(--mr-purple);
            box-shadow: 0 0 25px rgba(124, 58, 237, 0.5);
            transition: var(--mr-transition);
        }
        .dir-super-card:hover .dir-super-pfp {
            transform: scale(1.05) rotate(-2deg);
        }

        .dir-super-badge {
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--mr-purple);
            background: rgba(124, 58, 237, 0.15);
            border: 1px solid rgba(124, 58, 237, 0.3);
            border-radius: 6px;
            padding: 0.35rem 0.85rem;
            display: inline-block;
            margin-bottom: 0.85rem;
            transition: var(--mr-transition);
        }
        .dir-super-card:hover .dir-super-badge {
            background: rgba(124, 58, 237, 0.25);
            border-color: rgba(124, 58, 237, 0.6);
        }
        .dir-super-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: #fff;
            margin-bottom: 0.75rem;
            line-height: 1.15;
        }
        .dir-super-desc {
            color: var(--mr-text-muted);
            font-size: 1.05rem;
            line-height: 1.65;
            margin-bottom: 1.5rem;
            max-width: 520px;
        }
        .dir-super-action {
            font-family: 'Cinzel Decorative', cursive;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 0.8rem 2rem;
            transition: var(--mr-transition);
            margin-top: 1rem;
            cursor: pointer;
        }
        .dir-super-card:hover .dir-super-action {
            background: #fff;
            color: #050209;
            border-color: #fff;
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }
        /* ── Sub-Features (4 pinned servers) ── */
        .dir-sub-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }
        .dir-sub-card {
            text-decoration: none;
            color: inherit;
            display: block;
            border-radius: var(--mr-border-radius);
            background: rgba(15, 8, 28, 0.5);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
            transition: var(--mr-transition);
            overflow: hidden;
        }
        .dir-sub-card:hover {
            transform: translateY(-5px) scale(1.02);
            border-color: rgba(124, 58, 237, 0.4);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(124, 58, 237, 0.15);
        }
        .dir-sub-inner {
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .dir-sub-pfp-wrap { margin-bottom: 1.25rem; }
        .dir-sub-pfp {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            background-color: #0a020f;
            transition: var(--mr-transition);
        }
        .dir-sub-card:hover .dir-sub-pfp {
            transform: scale(1.06);
        }
        /* ── Section label ── */
        .dir-section-label {
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--mr-text-muted);
            margin-bottom: 1rem;
            padding-left: 2px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .dir-section-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255,255,255,0.06);
        }
        /* Responsive */
        @media (max-width: 900px) {
            .dir-sub-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .dir-container { padding: 1.5rem 1rem 4rem; }
            .dir-hero { margin-bottom: 2.5rem; }
            .dir-grid { grid-template-columns: 1fr; }
            .dir-card-inner { padding: 1.6rem; }
            .dir-super-card { flex-direction: column; text-align: center; padding: 2rem; gap: 1.5rem; }
            .dir-super-desc { max-width: 100%; }
            .dir-sub-grid { grid-template-columns: 1fr; }
            
            /* Performance Fixes */
            .dir-card, .dir-sub-card, .dir-admin-card, #community-search {
                backdrop-filter: blur(10px) !important;
                -webkit-backdrop-filter: blur(10px) !important;
                background: rgba(15, 8, 28, 0.94) !important;
            }
        }

        /* About / Admin section */
        .dir-about-section {
            margin-top: 5rem;
            margin-bottom: 2rem;
        }
        .dir-about-intro {
            max-width: 620px;
            margin: 0 auto 3rem;
            text-align: center;
            color: var(--mr-text-muted);
            font-size: 0.97rem;
            line-height: 1.75;
        }
        .dir-admin-card {
            max-width: 480px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(20, 8, 35, 0.8) 0%, rgba(10, 3, 20, 0.95) 100%);
            border: 1px solid rgba(225, 29, 72, 0.3);
            border-radius: 24px;
            padding: 3.5rem 2.5rem;
            text-align: center;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), 0 0 40px rgba(225, 29, 72, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: var(--mr-transition);
        }
        .dir-admin-card:hover {
            transform: translateY(-4px);
            border-color: var(--mr-primary);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 50px rgba(225, 29, 72, 0.2);
        }
        .dir-admin-avatar-wrap {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            border: 2px solid var(--mr-primary);
            box-shadow: 0 0 25px rgba(225, 29, 72, 0.5);
            overflow: hidden;
            transition: var(--mr-transition);
        }
        .dir-admin-card:hover .dir-admin-avatar-wrap {
            transform: scale(1.04) rotate(4deg);
            box-shadow: 0 0 35px rgba(225, 29, 72, 0.7);
        }
        .dir-admin-avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .dir-admin-name {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        .dir-admin-role {
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--mr-accent);
            margin-bottom: 1.5rem;
        }
        .dir-admin-bio {
            color: var(--mr-text-muted);
            font-size: 0.95rem;
            line-height: 1.65;
            margin-bottom: 1.75rem;
        }
        .dir-admin-discord {
            font-size: 0.9rem;
            color: var(--mr-text-muted);
        }
        .dir-admin-discord strong {
            color: var(--mr-purple);
            font-weight: 700;
        }

        /* ── New Homepage CSS additions ── */
        .mr-home-hero {
            text-align: center;
            margin-bottom: 5rem;
            padding-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .mr-home-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: clamp(2.3rem, 7vw, 4.2rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, #f59e0b, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 0.05em;
            text-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
        }
        .mr-home-kicker {
            font-size: 0.95rem;
            color: var(--mr-accent);
            letter-spacing: 5px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: var(--mr-glow-gold);
        }
        .mr-home-desc {
            font-size: 1.15rem;
            color: var(--mr-text-main);
            line-height: 1.75;
            margin-bottom: 2.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .mr-home-ctas {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .mr-home-btn {
            padding: 1rem 2.5rem;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 9999px;
            text-decoration: none;
            cursor: pointer;
            transition: var(--mr-transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        }
        .mr-home-btn-primary {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(225, 29, 72, 0.85));
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        .mr-home-btn-primary:hover {
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.35);
            transform: translateY(-3px);
        }
        .mr-home-btn-secondary {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--mr-text-main);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .mr-home-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--mr-accent);
            box-shadow: var(--mr-glow-gold);
            color: var(--mr-accent);
            transform: translateY(-3px);
        }
        
        /* Three paths grid */
        .mr-paths-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
            margin-bottom: 6rem;
        }
        .mr-path-card {
            background: var(--mr-bg-panel);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-decoration: none;
            color: inherit;
            transition: var(--mr-transition);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .mr-path-card:hover {
            transform: translateY(-6px);
            border-color: rgba(124, 58, 237, 0.4);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 20px rgba(124, 58, 237, 0.1);
        }
        .mr-path-icon {
            font-size: 2.2rem;
            color: var(--mr-accent);
            margin-bottom: 1.5rem;
            text-shadow: var(--mr-glow-gold);
        }
        .mr-path-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.35rem;
            color: #fff;
            margin-bottom: 0.85rem;
            font-weight: 700;
        }
        .mr-path-desc {
            color: var(--mr-text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        .mr-path-action {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--mr-accent);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: auto;
        }
        .mr-path-card:hover .mr-path-action {
            color: #fff;
            text-shadow: 0 0 10px rgba(255,255,255,0.5);
        }

        /* Explainer Section */
        .mr-explainer-section {
            background: linear-gradient(135deg, rgba(15, 8, 28, 0.35) 0%, rgba(5, 2, 9, 0.65) 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 4rem 3rem;
            margin-bottom: 6rem;
            box-shadow: 0 20px 50px rgba(0,0,0,0.55);
        }
        .mr-explainer-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2rem;
            color: #fff;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        .mr-explainer-subtitle {
            color: var(--mr-text-muted);
            font-size: 1rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3.5rem;
            line-height: 1.6;
        }
        .mr-explainer-flow {
            display: grid;
            grid-template-columns: repeat(5, 1fr); /* 5-column clean wrapping grid */
            gap: 1.25rem;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 1200px) {
            .mr-explainer-flow {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .mr-explainer-flow {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .mr-explainer-flow {
                grid-template-columns: 1fr;
            }
        }
        .mr-explainer-card {
            background: rgba(10, 5, 20, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 1.75rem 1.5rem;
            position: relative;
            transition: var(--mr-transition);
        }
        .mr-explainer-card:hover {
            border-color: var(--mr-accent);
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.08);
        }
        .mr-explainer-num {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.7rem;
            color: var(--mr-accent);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: var(--mr-glow-gold);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mr-explainer-arrow {
            display: none; /* Removed the arrows */
        }
        .mr-explainer-step {
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
        }
        .mr-explainer-text {
            color: var(--mr-text-muted);
            font-size: 0.92rem; /* Slightly larger text size */
            line-height: 1.55;
        }

        /* Banner CTA */
        .mr-banner-cta {
            background: linear-gradient(135deg, rgba(20, 8, 35, 0.8) 0%, rgba(10, 3, 20, 0.95) 100%);
            border: 1px solid rgba(124, 58, 237, 0.35);
            border-radius: 24px;
            padding: 3.5rem;
            text-align: center;
            margin-bottom: 6rem;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 35px rgba(124, 58, 237, 0.1);
        }

        /* Directory Section Wrapper */
        .mr-directory-wrapper {
            margin-top: 4rem;
            padding-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        /* Footer links styling */
        .mr-footer-nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
        }
        .mr-footer-link {
            color: var(--mr-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: var(--mr-transition);
        }
        .mr-footer-link:hover {
            color: var(--mr-accent);
            text-shadow: var(--mr-glow-gold);
        }

        /* Modals style */
        .mr-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(5, 2, 9, 0.85);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .mr-modal-overlay.active {
            display: flex;
            opacity: 1;
        }
        .mr-modal {
            background: linear-gradient(135deg, #0f0720, #050209);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            width: min(500px, 90%);
            padding: 2.5rem;
            position: relative;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(124, 58, 237, 0.15);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        .mr-modal-overlay.active .mr-modal {
            transform: translateY(0);
        }
        .mr-modal-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            background: none;
            border: none;
            color: var(--mr-text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--mr-transition);
        }
        .mr-modal-close:hover {
            color: #fff;
        }
        .mr-modal-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 1.25rem;
            letter-spacing: 0.5px;
        }
        .mr-modal-input {
            width: 100%;
            padding: 0.9rem 1.25rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            color: #fff;
            font-family: var(--mr-font-family);
            font-size: 0.95rem;
            margin-bottom: 1.25rem;
            transition: var(--mr-transition);
        }
        .mr-modal-input:focus {
            outline: none;
            border-color: var(--mr-accent);
            box-shadow: var(--mr-glow-gold);
        }
        .mr-modal-textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        /* Toast style */
        .mr-toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(225, 29, 72, 0.9));
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
            padding: 1rem 1.75rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            font-family: var(--mr-font-family);
            font-size: 0.95rem;
            font-weight: 600;
            z-index: 10000;
            opacity: 0;
            transform: translateY(20px);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
            pointer-events: none;
        }
        .mr-toast.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Directory Filters ── */
        .dir-filters-container {
            margin-bottom: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            background: rgba(15, 8, 28, 0.4);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 16px;
        }
        .dir-filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }
        .dir-filter-heading {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--mr-text-muted);
            font-weight: 700;
            margin-right: 0.5rem;
            min-width: 105px;
        }
        .dir-filter-btn {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--mr-text-muted);
            padding: 0.35rem 0.95rem;
            border-radius: 9999px;
            font-size: 0.78rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--mr-transition);
        }
        .dir-filter-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.12);
        }
        .dir-filter-btn.active {
            color: #fff;
            background: linear-gradient(135deg, rgba(225, 29, 72, 0.5), rgba(124, 58, 237, 0.5));
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
        }

        /* Badge details on cards */
        .dir-card-meta-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.4rem;
            margin-bottom: 1.25rem;
            border-top: 1px dashed rgba(255, 255, 255, 0.05);
            padding-top: 0.85rem;
            font-size: 0.78rem;
            color: var(--mr-text-muted);
        }
        .dir-card-meta-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .dir-card-meta-icon {
            color: var(--mr-accent);
        }
        .dir-card-badges-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-bottom: 0.85rem;
        }
        .dir-card-badge {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.15rem 0.45rem;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .dir-card-badge.badge-18 {
            color: var(--mr-primary);
            background: rgba(225, 29, 72, 0.08);
            border-color: rgba(225, 29, 72, 0.25);
        }
        .dir-card-badge.badge-sfw {
            color: #10b981;
            background: rgba(16, 185, 129, 0.08);
            border-color: rgba(16, 185, 129, 0.25);
        }
        .dir-card-badge.badge-beginner {
            color: var(--mr-accent);
            background: rgba(245, 158, 11, 0.08);
            border-color: rgba(245, 158, 11, 0.25);
        }

        .dir-card-report-btn {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--mr-text-muted);
            background: none;
            border: none;
            cursor: pointer;
            transition: var(--mr-transition);
            margin-top: 0.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.25rem 0;
            width: fit-content;
        }
        .dir-card-report-btn:hover {
            color: var(--mr-primary);
        }

        /* Latest Essays Preview */
        .mr-essays-section {
            margin-bottom: 6rem;
        }
        .mr-essays-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2rem;
            color: #fff;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        .mr-essays-subtitle {
            color: var(--mr-text-muted);
            font-size: 1rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
            line-height: 1.6;
        }
        .mr-essays-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
        }
        @media (max-width: 900px) {
            .mr-essays-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .mr-essays-grid {
                grid-template-columns: 1fr;
            }
        }
        .mr-essay-card {
            background: var(--mr-bg-panel);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
            transition: var(--mr-transition);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
        }
        .mr-essay-card:hover {
            transform: translateY(-5px);
            border-color: rgba(245, 158, 11, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 15px rgba(245, 158, 11, 0.05);
        }
        .mr-essay-img-wrap {
            width: 100%;
            height: 180px;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .mr-essay-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--mr-transition);
        }
        .mr-essay-card:hover .mr-essay-img {
            transform: scale(1.05);
        }
        .mr-essay-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .mr-essay-meta {
            font-size: 0.75rem;
            color: var(--mr-text-muted);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .mr-essay-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }
        .mr-essay-excerpt {
            font-size: 0.85rem;
            color: var(--mr-text-muted);
            line-height: 1.5;
            margin-bottom: 1rem;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .mr-essay-action {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--mr-accent);
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        /* ── New Depth Section Styles ── */
        .mr-depth-section {
            margin-bottom: 6rem;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, rgba(10, 5, 20, 0.45) 0%, rgba(5, 2, 9, 0.75) 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
        }
        .mr-depth-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            color: #fff;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #fff, #c084fc, #a855f7);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .mr-depth-subtitle {
            color: var(--mr-text-muted);
            font-size: 1.05rem;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3.5rem;
            line-height: 1.65;
        }
        .mr-depth-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 960px) {
            .mr-depth-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .mr-depth-grid {
                grid-template-columns: 1fr;
            }
        }
        .mr-depth-card {
            background: rgba(15, 8, 28, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 2.25rem 1.75rem;
            text-decoration: none;
            color: inherit;
            transition: var(--mr-transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }
        .mr-depth-card:hover {
            border-color: var(--mr-accent);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(245, 158, 11, 0.1), 0 0 20px rgba(245, 158, 11, 0.05);
        }
        .mr-depth-card-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }
        .mr-depth-card-desc {
            color: var(--mr-text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        .mr-depth-card-action {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--mr-accent);
            transition: var(--mr-transition);
        }
        .mr-depth-card:hover .mr-depth-card-action {
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        /* ── Skeptic Callout & Author Link ── */
        .mr-skeptic-callout {
            margin-top: 1.5rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 9999px;
            max-width: 650px;
        }
        .mr-skeptic-callout p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--mr-text-muted);
            line-height: 1.5;
        }
        .mr-skeptic-link {
            color: var(--mr-accent);
            text-decoration: none;
            font-weight: 700;
            transition: var(--mr-transition);
        }
        .mr-skeptic-link:hover {
            color: #fff;
            text-shadow: var(--mr-glow-gold);
        }
        .mr-author-link {
            color: var(--mr-accent);
            text-decoration: none;
            font-weight: 700;
            transition: var(--mr-transition);
            border-bottom: 1px dashed rgba(245, 158, 11, 0.4);
            padding-bottom: 1px;
        }
        .mr-author-link:hover {
            color: #fff;
            border-bottom-color: #fff;
            text-shadow: var(--mr-glow-gold);
        }
        .mr-home-author {
            font-size: 0.95rem;
            color: var(--mr-text-muted);
            margin-top: -1rem;
            margin-bottom: 2.5rem;
            letter-spacing: 1px;
        }
        .mr-explainer-author {
            text-align: center;
            font-size: 0.95rem;
            color: var(--mr-text-muted);
            margin-top: -0.5rem;
            margin-bottom: 2rem;
            letter-spacing: 1px;
        }

        /* ── Directory Promotion Banner Styles ── */
        .mr-dir-promo {
            background: linear-gradient(135deg, rgba(20, 8, 35, 0.75) 0%, rgba(10, 3, 20, 0.95) 100%);
            border: 1px solid rgba(168, 85, 247, 0.35);
            border-radius: 24px;
            padding: 3.5rem;
            margin-bottom: 6rem;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 35px rgba(168, 85, 247, 0.1);
            position: relative;
            overflow: hidden;
        }
        .mr-dir-promo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .mr-dir-promo-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .mr-dir-promo-badge {
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #c084fc;
            background: rgba(168, 85, 247, 0.12);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 6px;
            padding: 0.35rem 0.85rem;
            display: inline-block;
            margin-bottom: 1.25rem;
        }
        .mr-dir-promo-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            color: #fff;
            margin-bottom: 1.25rem;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #ffffff, #c084fc, #a855f7);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .mr-dir-promo-text {
            color: var(--mr-text-muted);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 2.25rem;
        }
        .mr-dir-promo-ctas {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ── New Hub Grid Styles ── */
        .mr-hub-grid {
            transition: var(--mr-transition);
        }
        .mr-hub-card {
            transition: var(--mr-transition);
        }
        .mr-hub-card:hover {
            transform: translateY(-6px) !important;
            border-color: rgba(168, 85, 247, 0.45) !important;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 25px rgba(168, 85, 247, 0.2) !important;
        }
        .mr-hub-card:has(.mr-hub-card-category[style*="accent"]):hover {
            border-color: rgba(245, 158, 11, 0.55) !important;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 25px rgba(245, 158, 11, 0.2) !important;
        }
        .mr-hub-card:has(.mr-hub-card-category[style*="primary"]):hover {
            border-color: rgba(225, 29, 72, 0.55) !important;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 25px rgba(225, 29, 72, 0.2) !important;
        }
        /* ── Staff Cards CSS ── */
        .mr-staff-card {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }
        .mr-staff-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 100%);
            pointer-events: none;
        }
        .mr-staff-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.15) !important;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6) !important;
        }
        .mr-apply-card:hover {
            background: rgba(15, 8, 28, 0.35) !important;
            border-color: var(--mr-accent) !important;
            border-style: solid !important;
        }
        .mr-apply-card:hover .mr-staff-avatar-wrap {
            border-color: var(--mr-accent) !important;
            background: rgba(245, 158, 11, 0.05) !important;
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.25) !important;
        }
        .mr-apply-card:hover .mr-staff-avatar-wrap span {
            color: var(--mr-accent) !important;
            transform: scale(1.1);
        }
        .mr-apply-card:hover h3 {
            color: #fff !important;
        }
        .mr-staff-card:hover img {
            transform: scale(1.04);
        }
        .mr-staff-avatar-wrap img {
            transition: transform 0.5s ease;
        }
