/* 
         * Base & Variables 
         */
        :root {
            --yv63-c-bg: #f4f7fb;
            --yv63-c-surface: #ffffff;
            --yv63-c-text-main: #1e293b;
            --yv63-c-text-muted: #64748b;
            --yv63-c-brand-dark: #0f172a;
            --yv63-c-brand-accent: #3b82f6;
            --yv63-c-brand-highlight: #10b981;
            
            --yv63-s-1: 8px;
            --yv63-s-2: 16px;
            --yv63-s-3: 24px;
            --yv63-s-4: 32px;
            --yv63-s-6: 48px;
            --yv63-s-8: 64px;
            --yv63-s-12: 96px;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: system-ui, -apple-system, sans-serif;
            background-color: var(--yv63-c-bg);
            color: var(--yv63-c-text-main);
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* 
         * Navigation (Strictly mapping to provided HTML)
         */
        .yv63-weluwi {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: var(--yv63-s-3) 4vw;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .yv63-weluwi > * { min-width: 0; }
        
        .yv63-logo {
            display: flex;
            align-items: center;
        }
        .yv63-logo img {
            height: 36px;
            width: auto;
            display: block;
        }

        .yv63-ujalog {
            display: flex;
            flex-wrap: wrap;
            gap: var(--yv63-s-4);
        }
        .yv63-ujalog > * { min-width: 0; }

        .yv63-nav-link {
            font-size: 1rem;
            font-weight: 500;
            color: var(--yv63-c-text-muted);
            transition: color 0.2s ease;
            white-space: nowrap;
        }
        .yv63-nav-link:hover, 
        .yv63-nav-link.active {
            color: var(--yv63-c-brand-accent);
        }

        /* 
         * Layout Containers 
         */
        .yv63-iceyofe {
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--yv63-s-8) 4vw var(--yv63-s-12);
            display: flex;
            flex-direction: column;
            gap: var(--yv63-s-12);
        }

        .yv63-wasohol {
            display: flex;
            flex-wrap: wrap;
            gap: var(--yv63-s-6);
            width: 100%;
        }
        .yv63-wasohol > * { min-width: 0; }

        /* 
         * Display Area (Hero Equivalent)
         */
        .yv63-onina {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: var(--yv63-s-8);
            background: linear-gradient(145deg, var(--yv63-c-brand-dark) 0%, #1e293b 100%);
            border-radius: 24px;
            padding: var(--yv63-s-8) var(--yv63-s-6);
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        .yv63-onina::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 60%);
            transform: rotate(-15deg);
            pointer-events: none;
        }

        .yv63-onina-text {
            flex: 1 1 450px;
            display: flex;
            flex-direction: column;
            gap: var(--yv63-s-3);
            z-index: 2;
        }
        .yv63-onina-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin: 0;
            white-space: normal;
        }
        .yv63-onina-desc {
            font-size: 1.125rem;
            color: #cbd5e1;
            line-height: 1.8;
            margin: 0;
            word-break: keep-all;
        }
        
        .yv63-onina-visual {
            flex: 1 1 350px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }

        /* 
         * Component Blocks (Guide/Features)
         */
        .yv63-owihik {
            display: flex;
            flex-direction: column;
            gap: var(--yv63-s-6);
        }
        .yv63-owihik-header {
            max-width: 700px;
        }
        .yv63-owihik-title {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 800;
            color: var(--yv63-c-brand-dark);
            margin: 0 0 var(--yv63-s-2);
        }
        .yv63-owihik-subtitle {
            font-size: 1.1rem;
            color: var(--yv63-c-text-muted);
            margin: 0;
        }

        /* 
         * Cards 
         */
        .yv63-cazuzur {
            flex: 1 1 240px;
            background: var(--yv63-c-surface);
            border-radius: 20px;
            padding: var(--yv63-s-4);
            border: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            gap: var(--yv63-s-3);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .yv63-cazuzur:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
            border-color: #cbd5e1;
        }
        .yv63-cazuzur-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: #eff6ff;
            color: var(--yv63-c-brand-accent);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .yv63-cazuzur-step {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 4rem;
            font-weight: 900;
            color: #f1f5f9;
            line-height: 0.8;
            pointer-events: none;
        }
        .yv63-cazuzur-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0;
            color: var(--yv63-c-brand-dark);
            position: relative;
            z-index: 1;
        }
        .yv63-cazuzur-desc {
            font-size: 0.95rem;
            color: var(--yv63-c-text-muted);
            margin: 0;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* 
         * Alternative Display Area 
         */
        .yv63-ahiv {
            display: flex;
            flex-wrap: wrap;
            gap: var(--yv63-s-8);
            align-items: center;
            background: var(--yv63-c-surface);
            padding: var(--yv63-s-8);
            border-radius: 24px;
            border: 1px solid #e2e8f0;
        }
        .yv63-ahiv-visual {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
        }
        .yv63-ahiv-text {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
            gap: var(--yv63-s-4);
        }
        .yv63-ahiv-tag {
            align-self: flex-start;
            padding: 6px 16px;
            background: #ecfdf5;
            color: var(--yv63-c-brand-highlight);
            font-weight: 700;
            font-size: 0.875rem;
            border-radius: 99px;
        }
        .yv63-ahiv-list {
            display: flex;
            flex-direction: column;
            gap: var(--yv63-s-2);
        }
        .yv63-ahiv-item {
            display: flex;
            align-items: flex-start;
            gap: var(--yv63-s-2);
        }
        .yv63-ahiv-item svg {
            width: 24px;
            height: 24px;
            color: var(--yv63-c-brand-highlight);
            flex-shrink: 0;
        }
        .yv63-ahiv-item-text {
            font-size: 1rem;
            color: var(--yv63-c-text-main);
        }

        /* 
         * Call to Action Area 
         */
        .yv63-ovir {
            background: linear-gradient(135deg, var(--yv63-c-brand-accent) 0%, #2563eb 100%);
            border-radius: 24px;
            padding: var(--yv63-s-8) 4vw;
            text-align: center;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--yv63-s-4);
        }
        .yv63-ovir-title {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 800;
            margin: 0;
            max-width: 600px;
        }

        /* 
         * Buttons 
         */
        .yv63-wila {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background: var(--yv63-c-brand-accent);
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
            border-radius: 12px;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
            border: none;
        }
        .yv63-wila:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
        }
        .yv63-wila.alt {
            background: white;
            color: var(--yv63-c-brand-accent);
        }
        .yv63-wila.alt:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .yv63-meta-info {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-top: var(--yv63-s-2);
        }

        /* 
         * Footer (Strictly mapping)
         */
        .yv63-julihu {
            background: var(--yv63-c-brand-dark);
            color: #94a3b8;
            padding: var(--yv63-s-8) 4vw;
            margin-top: auto;
        }
        .yv63-gevab {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--yv63-s-4);
            text-align: center;
        }
        .yv63-gevab > * { min-width: 0; }
        .yv63-footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            letter-spacing: 0.05em;
        }
        .yv63-footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--yv63-s-3);
        }
        .yv63-footer-links a {
            transition: color 0.2s;
            font-size: 0.95rem;
        }
        .yv63-footer-links a:hover {
            color: white;
        }
        .yv63-copyright {
            font-size: 0.875rem;
            margin-top: var(--yv63-s-2);
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: var(--yv63-s-4);
            width: 100%;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .yv63-ujalog {
                justify-content: center;
                width: 100%;
                margin-top: var(--yv63-s-2);
            }
            .yv63-weluwi {
                flex-direction: column;
                padding: var(--yv63-s-2) 4vw;
            }
            .yv63-onina, .yv63-ahiv {
                padding: var(--yv63-s-6) var(--yv63-s-4);
                border-radius: 16px;
            }
            .yv63-iceyofe {
                gap: var(--yv63-s-8);
                padding-top: var(--yv63-s-4);
            }
        }

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