/* ── Music Hub Page Scoped Styles ── */
        .dir-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem 6rem;
            position: relative;
            z-index: 10;
        }

        /* Hero */
        .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);
        }

        .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 3.5rem;
            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;
        }

        /* Section label style */
        .dir-section-label {
            font-size: 1.15rem;
            font-family: 'Cinzel Decorative', cursive;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #fff;
            margin-top: 5rem;
            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.08);
        }
        .dir-section-desc {
            color: var(--mr-text-muted);
            font-size: 0.95rem;
            line-height: 1.65;
            margin-bottom: 2.5rem;
            max-width: 950px;
        }

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

        /* Cards */
        .dir-card {
            display: flex;
            flex-direction: column;
            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;
            height: 100%;
        }

        .dir-card:hover {
            transform: translateY(-6px) scale(1.01);
            border-color: rgba(245, 158, 11, 0.4);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(245, 158, 11, 0.18);
        }

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

        .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;
            object-position: center top;
            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-pink    { border: 2px solid #f4a7d9; box-shadow: 0 0 15px rgba(244, 167, 217, 0.5); }
        .pb-violet  { border: 2px solid #9b59b6; box-shadow: 0 0 15px rgba(155, 89, 182, 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.25rem;
            color: #fff;
            line-height: 1.2;
        }
        
        .dir-card-subtitle {
            display: block;
            font-size: 0.9rem;
            color: var(--mr-text-muted);
            margin-bottom: 1.25rem;
        }

        .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-weight: 700;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            margin-top: auto;
            position: relative;
            transition: var(--mr-transition);
        }

        .dir-card-action::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 1;
        }

        /* Make dir-card relative so the after element spans the whole card */
        .dir-card {
            position: relative;
        }

        .dir-arrow { transition: transform 0.3s ease; }
        .dir-card:hover .dir-arrow, .dir-card-action:hover .dir-arrow { transform: translateX(5px); }

        /* Action color variants */
        .ac-purple  { color: var(--mr-purple); }
        .ac-gold    { color: var(--mr-accent); }
        .ac-crimson { color: var(--mr-primary); }
        .ac-blue    { color: #3498db; }
        .ac-pink    { color: #f4a7d9; }
        .ac-violet  { color: #9b59b6; }

        /* Oracles / Sub Features */
        .alchemy-oracle-lore {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-bottom: 1.75rem;
        }

        @media (max-width: 760px) {
            .alchemy-oracle-lore { grid-template-columns: 1fr; }
        }

        .oracle-entry {
            background: rgba(15, 8, 28, 0.5);
            border: 1px solid rgba(225, 29, 72, 0.25);
            border-radius: 12px;
            padding: 0.9rem 1rem;
            text-decoration: none;
            display: block;
            transition: var(--mr-transition);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            position: relative;
            z-index: 2; /* Float above the stretched card link */
        }

        .oracle-entry:hover {
            background: rgba(225, 29, 72, 0.08);
            border-color: rgba(225, 29, 72, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.4), 0 0 15px rgba(225, 29, 72, 0.15);
        }

        .oracle-entry span.oracle-title {
            display: block;
            color: var(--mr-primary);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .oracle-entry p {
            margin: 0;
            color: var(--mr-text-muted);
            font-size: 0.82rem;
            line-height: 1.5;
        }

        /* Hub Link Styling */
        .mr-hub-link {
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem 2.5rem;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            text-decoration: none;
            transition: var(--mr-transition);
            text-align: left;
            margin: 0 auto;
        }

        .mr-hub-link:hover {
            transform: translateY(-4px) scale(1.01);
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(245, 158, 11, 0.35);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45), 0 0 20px rgba(245, 158, 11, 0.12);
        }

        .mr-hub-visual {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: radial-gradient(circle at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
        }

        .mr-hub-icon { font-size: 1.8rem; color: #fff; }
        .mr-hub-content { display: flex; flex-direction: column; }
        .mr-hub-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--mr-text-muted); margin-bottom: 0.2rem; }
        .mr-hub-title { font-family: 'Cinzel Decorative', cursive; font-size: 1.15rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 0.5rem; }
        .mr-hub-arrow { transition: transform 0.3s ease; }
        .mr-hub-link:hover .mr-hub-arrow { transform: translateX(5px); }

        /* ── Super Feature (Spotify-style artist card) ── */
        .dir-super-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 1.5rem;
            margin-bottom: 5rem;
        }
        .dir-super-card {
            display: flex;
            flex-direction: column;
            border-radius: 24px;
            background-color: rgba(15, 8, 28, 0.45);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
            text-decoration: none;
            color: inherit;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
            position: relative;
            overflow: hidden;
            /* Performance containment */
            content-visibility: auto;
            contain-intrinsic-size: 210px 400px;
        }
        .dir-super-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .dir-super-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .dir-super-card:hover .dir-super-img {
            transform: scale(1.06);
        }
        .dir-super-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.75);
            border-color: rgba(245, 158, 11, 0.25);
        }
        .dir-super-card-link {
            position: absolute;
            inset: 0;
            z-index: 5;
        }
        .dir-super-info {
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex-grow: 1;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65));
            position: relative;
            z-index: 2;
        }
        .dir-super-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.3rem;
            line-height: 1.25;
            letter-spacing: 0.5px;
        }
        .dir-super-subtitle {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 0.8rem;
            color: var(--mr-text-muted);
            margin-bottom: 1.25rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Player Facade (Performance Optimization) */
        .player-facade {
            position: relative;
            z-index: 10;
            margin-top: 1rem;
            width: 100%;
            height: 76px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--mr-transition);
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .player-facade:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.18);
            transform: scale(1.02);
        }
        .player-facade:focus-visible {
            outline: 2px solid var(--mr-accent);
            outline-offset: 2px;
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.18);
        }
        .play-trigger {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            color: #fff;
            font-family: 'Cinzel Decorative', cursive;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            pointer-events: none;
        }
        .play-icon {
            width: 40px;
            height: 40px;
            background: #1DB954; /* Spotify Green */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(29, 185, 84, 0.35);
            transition: transform 0.3s ease;
        }
        .player-facade:hover .play-icon {
            transform: scale(1.08);
        }
        .play-icon svg {
            width: 16px;
            height: 16px;
            fill: #000;
            margin-left: 2px;
        }
        .loading-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.1);
            border-top: 2px solid #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        /* FAQ Section Styles */
        .dir-faq-section {
            max-width: 850px;
            margin: 6rem auto 2rem;
            padding: 0 1rem;
        }

        .dir-faq-section-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #ffffff, #f59e0b, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
        }

        .dir-faq-item {
            background: rgba(15, 8, 28, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            margin-bottom: 1.25rem;
            overflow: hidden;
            transition: var(--mr-transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .dir-faq-item:hover {
            border-color: rgba(245, 158, 11, 0.25);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
        }

        .dir-faq-item[open] {
            border-color: rgba(245, 158, 11, 0.35);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 20px rgba(245, 158, 11, 0.08);
        }

        .dir-faq-item summary {
            padding: 1.25rem 1.75rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            outline: none;
            user-select: none;
        }

        .dir-faq-item summary::-webkit-details-marker {
            display: none;
        }

        .dir-faq-item summary::after {
            content: '✦';
            font-size: 0.9rem;
            color: var(--mr-accent);
            transition: transform 0.4s ease;
            text-shadow: var(--mr-glow-gold);
        }

        .dir-faq-item[open] summary::after {
            transform: rotate(45deg) scale(1.1);
            color: var(--mr-primary);
            text-shadow: var(--mr-glow-crimson);
        }

        .dir-faq-item-content {
            padding: 0 1.75rem 1.5rem 1.75rem;
            color: var(--mr-text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .dir-faq-item-content p {
            margin: 0;
        }

        @media (max-width: 768px) {
            .dir-super-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .dir-super-card { min-height: 400px; }
            .dir-super-title { font-size: 1.4rem; }
        }
    
        /* 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);
        }

        /* Footer Styles */
        .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);
        }
