/* 
         * XChat Plugins Directory - Unique Design System
         * Theme: Neo-Industrial / Structured Tech
         */
        
        :root {
            --yv63-bg-color: #f4f5f7;
            --yv63-surface-color: #ffffff;
            --yv63-text-primary: #1a1b26;
            --yv63-text-secondary: #565f89;
            --yv63-accent: #414868;
            --yv63-highlight: #7aa2f7;
            --yv63-border: #e0e2ea;
            --yv63-space-1: 8px;
            --yv63-space-2: 16px;
            --yv63-space-3: 24px;
            --yv63-space-4: 32px;
            --yv63-space-6: 48px;
            --yv63-space-8: 64px;
            --yv63-space-12: 96px;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--yv63-bg-color);
            color: var(--yv63-text-primary);
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Mandatory Flexbox Rules for all layout containers */
        .yv63-weluwi, .yv63-ujalog, 
        .yv63-onina, .yv63-owihik, .yv63-ahiv,
        .yv63-iceyofe, .yv63-ovir, .yv63-wasohol,
        .yv63-cazuzur, .yv63-rokora,
        .yv63-julihu, .yv63-gevab {
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
            box-sizing: border-box;
        }

        /* Mandatory Text Wrap Rules */
        .yv63-owihik, .yv63-wasohol, .yv63-cazuzur, .yv63-rokora, .yv63-wila, .yv63-aricod {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* --- Global Typography --- */
        h1, h2, h3 {
            white-space: normal;
            margin-top: 0;
            color: var(--yv63-text-primary);
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        
        p {
            margin-top: 0;
            color: var(--yv63-text-secondary);
            word-break: keep-all;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        /* --- Header / Navigation (Mandatory Structure) --- */
        .yv63-weluwi {
            background-color: var(--yv63-surface-color);
            border-bottom: 2px solid var(--yv63-border);
            padding: var(--yv63-space-2) 5vw;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .yv63-logo img {
            height: 32px;
            display: block;
        }

        .yv63-ujalog {
            gap: var(--yv63-space-3);
            align-items: center;
        }

        .yv63-nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--yv63-text-secondary);
            padding: var(--yv63-space-1) var(--yv63-space-2);
            border-radius: 4px;
        }

        .yv63-nav-link:hover, .yv63-nav-link:focus {
            color: var(--yv63-text-primary);
            background-color: var(--yv63-bg-color);
        }

        .yv63-nav-link.active {
            color: var(--yv63-surface-color);
            background-color: var(--yv63-accent);
        }

        /* --- Layout Containers --- */
        .yv63-iceyofe {
            max-width: 1300px; /* Unique container width */
            margin: 0 auto;
            padding: var(--yv63-space-6) 5vw;
            flex-direction: column;
            gap: var(--yv63-space-8);
        }

        /* --- Hero Area (Plugins specific) --- */
        .yv63-onina {
            background-color: var(--yv63-accent);
            border-radius: 16px;
            overflow: hidden;
            align-items: stretch;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .yv63-owihik {
            flex: 1 1 500px;
            padding: var(--yv63-space-8) var(--yv63-space-6);
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .yv63-owihik h1 {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            color: var(--yv63-surface-color);
            margin-bottom: var(--yv63-space-3);
            line-height: 1.1;
        }

        .yv63-owihik p {
            color: rgba(255,255,255,0.8);
            font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
            margin-bottom: var(--yv63-space-4);
            max-width: 90%;
        }

        .yv63-ahiv {
            flex: 1 1 400px;
            background: linear-gradient(135deg, var(--yv63-highlight) 0%, #3d59a1 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--yv63-space-6);
            position: relative;
        }

        /* Hero Graphic SVG */
        .yv63-ahiv svg {
            width: 100%;
            max-width: 300px;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
            transform: translateY(0);
            transition: transform 0.5s ease;
        }
        .yv63-onina:hover .yv63-ahiv svg {
            transform: translateY(-10px);
        }

        /* --- Main Content Area (Layout: Sidebar + Grid) --- */
        .yv63-ovir {
            flex-direction: row;
            gap: var(--yv63-space-4);
            align-items: flex-start;
        }

        /* Sidebar / Info Block */
        .yv63-wasohol {
            flex: 1 1 280px;
            flex-direction: column;
            gap: var(--yv63-space-3);
            position: sticky;
            top: 100px;
        }

        .yv63-wasohol h2 {
            font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
            border-bottom: 2px solid var(--yv63-text-primary);
            padding-bottom: var(--yv63-space-2);
            width: 100%;
        }

        /* Tags / Categories */
        .yv63-rokora {
            flex-direction: row;
            gap: var(--yv63-space-1);
            align-items: center;
            background: var(--yv63-surface-color);
            padding: var(--yv63-space-2) var(--yv63-space-3);
            border: 1px solid var(--yv63-border);
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            width: 100%;
            justify-content: space-between;
        }

        .yv63-rokora:hover, .yv63-rokora:focus {
            border-color: var(--yv63-highlight);
            transform: translateX(4px);
        }

        /* Plugin Grid Container */
        .yv63-ovir > .yv63-iceyofe {
            flex: 3 1 700px;
            padding: 0;
            flex-direction: row;
            gap: var(--yv63-space-3);
        }

        /* --- Plugin Card --- */
        .yv63-cazuzur {
            flex: 1 1 calc(50% - var(--yv63-space-3));
            background: var(--yv63-surface-color);
            border: 1px solid var(--yv63-border);
            border-radius: 12px;
            padding: var(--yv63-space-4);
            flex-direction: column;
            gap: var(--yv63-space-2);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            transform: translateY(0);
        }

        .yv63-cazuzur:hover, .yv63-cazuzur:focus-within {
            box-shadow: 0 12px 24px rgba(0,0,0,0.06);
            border-color: var(--yv63-accent);
            transform: translateY(-4px);
        }

        /* Card Header (Icon + Title) */
        .yv63-cazuzur > .yv63-wasohol {
            flex-direction: row;
            align-items: center;
            gap: var(--yv63-space-2);
            position: static;
            width: 100%;
        }

        .yv63-cazuzur svg {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
        }

        .yv63-cazuzur h3 {
            margin: 0;
            font-size: 1.25rem;
            color: var(--yv63-accent);
        }

        .yv63-cazuzur .meta {
            font-size: 0.85rem;
            color: var(--yv63-text-secondary);
            font-family: monospace;
            background: var(--yv63-bg-color);
            padding: 2px 8px;
            border-radius: 4px;
            margin-top: 4px;
            display: inline-block;
        }

        .yv63-cazuzur p {
            flex-grow: 1;
            font-size: 0.95rem;
            margin: var(--yv63-space-2) 0;
        }

        /* Card Actions (Buttons) */
        .yv63-cazuzur > .yv63-ovir {
            width: 100%;
            gap: var(--yv63-space-2);
            margin-top: auto;
        }

        /* --- Buttons --- */
        .yv63-wila, .yv63-aricod {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px var(--yv63-space-3);
            font-weight: 700;
            border-radius: 6px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
            flex: 1 1 auto;
        }

        .yv63-wila {
            background-color: var(--yv63-accent);
            color: var(--yv63-surface-color);
            border: 2px solid var(--yv63-accent);
        }

        .yv63-wila:hover, .yv63-wila:focus {
            background-color: transparent;
            color: var(--yv63-accent);
        }

        .yv63-aricod {
            background-color: transparent;
            color: var(--yv63-text-secondary);
            border: 2px solid var(--yv63-border);
        }

        .yv63-aricod:hover, .yv63-aricod:focus {
            border-color: var(--yv63-text-secondary);
            color: var(--yv63-text-primary);
        }

        /* --- Footer (Mandatory Structure) --- */
        .yv63-julihu {
            background-color: #1a1b26; /* Dark footer for contrast */
            color: #a9b1d6;
            padding: var(--yv63-space-8) 5vw var(--yv63-space-4);
            margin-top: var(--yv63-space-8);
        }

        .yv63-gevab {
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
            flex-direction: column;
            gap: var(--yv63-space-4);
            align-items: center;
            text-align: center;
        }

        .yv63-footer-brand {
            font-size: 2rem;
            font-weight: 900;
            color: var(--yv63-surface-color);
            letter-spacing: 2px;
        }

        .yv63-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: var(--yv63-space-3);
            justify-content: center;
        }

        .yv63-footer-links a {
            color: #a9b1d6;
            font-weight: 500;
        }

        .yv63-footer-links a:hover, .yv63-footer-links a:focus {
            color: var(--yv63-surface-color);
        }

        .yv63-copyright {
            font-size: 0.85rem;
            opacity: 0.7;
            margin-top: var(--yv63-space-2);
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: var(--yv63-space-3);
            width: 100%;
        }

        /* --- Responsive Design --- */
        @media (max-width: 900px) {
            .yv63-ovir {
                flex-direction: column;
            }
            .yv63-wasohol {
                position: static;
                width: 100%;
            }
            .yv63-ovir > .yv63-iceyofe {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .yv63-weluwi {
                flex-direction: column;
                gap: var(--yv63-space-2);
                padding: var(--yv63-space-2);
            }
            .yv63-ujalog {
                flex-wrap: wrap;
                justify-content: center;
                gap: var(--yv63-space-1);
            }
            .yv63-cazuzur {
                flex: 1 1 100%; /* Force single column */
            }
        }

.yv63-hdr-weluwi {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.yv63-hdr-weluwi,
.yv63-hdr-weluwi *,
.yv63-hdr-weluwi *::before,
.yv63-hdr-weluwi *::after {
    box-sizing: border-box;
}

.yv63-hdr-weluwi nav,
.yv63-hdr-weluwi div,
.yv63-hdr-weluwi section,
.yv63-hdr-weluwi article,
.yv63-hdr-weluwi aside,
.yv63-hdr-weluwi p,
.yv63-hdr-weluwi h1,
.yv63-hdr-weluwi h2,
.yv63-hdr-weluwi h3,
.yv63-hdr-weluwi h4,
.yv63-hdr-weluwi h5,
.yv63-hdr-weluwi h6,
.yv63-hdr-weluwi a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.yv63-hdr-weluwi p,
.yv63-hdr-weluwi h1,
.yv63-hdr-weluwi h2,
.yv63-hdr-weluwi h3,
.yv63-hdr-weluwi h4,
.yv63-hdr-weluwi h5,
.yv63-hdr-weluwi h6 {
    text-decoration: none;
}

.yv63-hdr-weluwi img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.yv63-hdr-weluwi {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.yv63-hdr-weluwi a.yv63-hdr-nav-link {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.yv63-hdr-weluwi a.yv63-hdr-nav-link,
.yv63-hdr-weluwi a.yv63-hdr-nav-link:hover,
.yv63-hdr-weluwi a.yv63-hdr-nav-link:focus,
.yv63-hdr-weluwi a.yv63-hdr-nav-link:active,
.yv63-hdr-weluwi a.yv63-hdr-nav-link.active,
.yv63-hdr-weluwi a.yv63-hdr-nav-link[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.yv63-hdr-weluwi{
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 48px);
            max-width: 1320px;
            background: rgba(24, 27, 33, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            padding: 16px 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

.yv63-hdr-weluwi .yv63-hdr-logo img{
            height: 32px;
            width: auto;
        }

.yv63-hdr-weluwi .yv63-hdr-ujalog{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }

.yv63-hdr-weluwi .yv63-hdr-nav-link{
            font-size: 0.95rem;
            color: #e2e8f0;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
        }

.yv63-hdr-weluwi .yv63-hdr-nav-link:hover{
            color: #00e5ff;
        }

.yv63-hdr-weluwi .yv63-hdr-nav-link.active{
            background: rgba(0, 229, 255, 0.1);
            color: #00e5ff;
        }

@media (max-width: 768px){.yv63-hdr-weluwi{
                flex-direction: column;
                gap: 16px;
                border-radius: 16px;
                padding: 16px;
            }

.yv63-hdr-weluwi .yv63-hdr-ujalog{
                justify-content: center;
            }}

.yv63-ftr-julihu {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.yv63-ftr-julihu,
.yv63-ftr-julihu *,
.yv63-ftr-julihu *::before,
.yv63-ftr-julihu *::after {
    box-sizing: border-box;
}

.yv63-ftr-julihu nav,
.yv63-ftr-julihu div,
.yv63-ftr-julihu section,
.yv63-ftr-julihu article,
.yv63-ftr-julihu aside,
.yv63-ftr-julihu p,
.yv63-ftr-julihu h1,
.yv63-ftr-julihu h2,
.yv63-ftr-julihu h3,
.yv63-ftr-julihu h4,
.yv63-ftr-julihu h5,
.yv63-ftr-julihu h6,
.yv63-ftr-julihu a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.yv63-ftr-julihu p,
.yv63-ftr-julihu h1,
.yv63-ftr-julihu h2,
.yv63-ftr-julihu h3,
.yv63-ftr-julihu h4,
.yv63-ftr-julihu h5,
.yv63-ftr-julihu h6 {
    text-decoration: none;
}

.yv63-ftr-julihu img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.yv63-ftr-julihu {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.yv63-ftr-julihu a,
.yv63-ftr-julihu a:hover,
.yv63-ftr-julihu a:focus,
.yv63-ftr-julihu a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.yv63-ftr-julihu{
            background: #0a0b0e;
            padding: 64px 24px 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 64px;
            display: flex;
            justify-content: center;
        }

.yv63-ftr-julihu .yv63-ftr-gevab{
            max-width: 1320px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
        }

.yv63-ftr-julihu .yv63-ftr-footer-brand{
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
        }

.yv63-ftr-julihu .yv63-ftr-footer-links{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

.yv63-ftr-julihu .yv63-ftr-footer-links a{
            color: #94a3b8;
            font-size: 0.95rem;
        }

.yv63-ftr-julihu .yv63-ftr-footer-links a:hover{
            color: #00e5ff;
        }

.yv63-ftr-julihu .yv63-ftr-copyright{
            width: 100%;
            text-align: center;
            color: #94a3b8;
            font-size: 0.85rem;
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }