/* CSS Variables & Reset */
        :root {
            --bg-dark: #0f1115;
            --bg-panel: #181b21;
            --bg-card: #22262e;
            --text-main: #e2e8f0;
            --text-muted: #94a3b8;
            --accent-primary: #00e5ff;
            --accent-primary-hover: #00b3cc;
            --accent-secondary: #7e57c2;
            --border-color: rgba(255, 255, 255, 0.08);
            
            --space-1: 8px;
            --space-2: 16px;
            --space-3: 24px;
            --space-4: 32px;
            --space-6: 48px;
            --space-8: 64px;
            --space-12: 96px;
            
            --container-width: 1320px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

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

        /* Typography */
        h1, h2, h3, h4 {
            color: #ffffff;
            white-space: normal;
            line-height: 1.3;
            font-weight: 700;
        }

        /* Layout Primitives */
        .yv63-iceyofe {
            width: 100%;
            padding: var(--space-8) var(--space-3);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .yv63-ovir {
            max-width: var(--container-width);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-6);
        }

        .yv63-wasohol {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            gap: var(--space-4);
        }

        .yv63-wasohol > * {
            min-width: 0;
        }

        /* Navigation */
        .yv63-weluwi {
            position: fixed;
            top: var(--space-3);
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - var(--space-6));
            max-width: var(--container-width);
            background: rgba(24, 27, 33, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: 100px;
            padding: var(--space-2) var(--space-4);
            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-logo img {
            height: 32px;
            width: auto;
        }

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

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

        .yv63-nav-link:hover {
            color: var(--accent-primary);
        }

        .yv63-nav-link.active {
            background: rgba(0, 229, 255, 0.1);
            color: var(--accent-primary);
        }

        /* Hero Section */
        .yv63-onina {
            min-height: 100vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            padding: calc(var(--space-12) + 40px) var(--space-3) var(--space-8);
            position: relative;
            overflow: hidden;
        }

        .yv63-onina::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 80%;
            background: radial-gradient(circle, rgba(0,229,255,0.1) 0%, rgba(15,17,21,0) 70%);
            z-index: -1;
        }

        .yv63-owihik {
            flex: 1 1 500px;
            min-width: 0;
            padding-right: var(--space-6);
            z-index: 2;
        }

        .yv63-owihik h1 {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: var(--space-3);
            letter-spacing: -0.02em;
        }

        .yv63-owihik p {
            font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.3rem);
            color: var(--text-muted);
            margin-bottom: var(--space-6);
            max-width: 600px;
        }

        .yv63-ahiv {
            flex: 1 1 500px;
            min-width: 0;
            position: relative;
        }

        .yv63-ahiv img {
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 1px solid var(--border-color);
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
            transition: transform 0.5s ease;
        }

        .yv63-ahiv:hover img {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        /* Buttons */
        .yv63-wila {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px var(--space-4);
            background: var(--accent-primary);
            color: #000;
            font-weight: 600;
            border-radius: 8px;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
        }

        .yv63-wila:hover {
            background: var(--accent-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
        }

        .yv63-aricod {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px var(--space-4);
            background: transparent;
            color: var(--text-main);
            font-weight: 600;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            font-size: 1.1rem;
        }

        .yv63-aricod:hover {
            background: rgba(255,255,255,0.05);
            border-color: var(--text-muted);
        }

        .yv63-action-group {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-3);
        }

        /* Cards & Blocks */
        .yv63-cazuzur {
            flex: 1 1 300px;
            background: var(--bg-panel);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: var(--space-4);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .yv63-cazuzur:hover {
            border-color: rgba(0, 229, 255, 0.3);
            transform: translateY(-5px);
            background: var(--bg-card);
        }

        .yv63-icon-badge {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(0, 229, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-3);
            border: 1px solid rgba(0, 229, 255, 0.2);
        }

        .yv63-icon-badge svg {
            width: 24px;
            height: 24px;
            fill: var(--accent-primary);
        }

        .yv63-cazuzur h3 {
            font-size: 1.4rem;
            margin-bottom: var(--space-2);
        }

        .yv63-cazuzur p {
            color: var(--text-muted);
            flex-grow: 1;
        }

        /* Split Sections */
        .yv63-split-content {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-6);
            align-items: center;
            width: 100%;
        }

        .yv63-split-text {
            flex: 1 1 400px;
            min-width: 0;
        }

        .yv63-split-media {
            flex: 1 1 500px;
            min-width: 0;
            position: relative;
        }

        .yv63-split-media img {
            border-radius: 16px;
            width: 100%;
            border: 1px solid var(--border-color);
        }

        .yv63-section-title {
            font-size: clamp(2rem, 3vw + 1rem, 3rem);
            margin-bottom: var(--space-3);
        }

        .yv63-section-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: var(--space-4);
        }

        .yv63-bullet-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--space-2);
            margin-bottom: var(--space-4);
        }

        .yv63-bullet-list li {
            position: relative;
            padding-left: var(--space-4);
            color: var(--text-main);
        }

        .yv63-bullet-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-primary);
            font-weight: bold;
        }

        /* Dynamic Articles Block */
        .yv63-rokora {
            flex: 1 1 300px;
            background: var(--bg-panel);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }

        .yv63-rokora:hover {
            transform: translateY(-5px);
        }

        .yv63-rokora img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-color);
        }

        .yv63-rokora-content {
            padding: var(--space-3);
        }
        
        .yv63-rokora-meta {
            font-size: 0.85rem;
            color: var(--accent-primary);
            margin-bottom: var(--space-1);
            display: block;
        }

        .yv63-rokora h4 {
            font-size: 1.2rem;
            margin-bottom: var(--space-2);
        }

        /* FAQ */
        .yv63-faq-item {
            background: var(--bg-panel);
            border-radius: 12px;
            padding: var(--space-3) var(--space-4);
            margin-bottom: var(--space-2);
            border: 1px solid var(--border-color);
        }

        .yv63-faq-q {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: var(--space-1);
        }

        .yv63-faq-a {
            color: var(--text-muted);
        }

        /* Footer */
        .yv63-julihu {
            background: #0a0b0e;
            padding: var(--space-8) var(--space-3) var(--space-4);
            border-top: 1px solid var(--border-color);
            margin-top: var(--space-8);
            display: flex;
            justify-content: center;
        }

        .yv63-gevab {
            max-width: var(--container-width);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: var(--space-4);
        }

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

        .yv63-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-4);
        }

        .yv63-footer-links a {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .yv63-footer-links a:hover {
            color: var(--accent-primary);
        }

        .yv63-copyright {
            width: 100%;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: var(--space-6);
            padding-top: var(--space-3);
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .yv63-split-content {
                flex-direction: column;
            }
            .yv63-owihik, .yv63-ahiv {
                flex: 1 1 100%;
                padding-right: 0;
            }
            .yv63-ahiv {
                margin-top: var(--space-4);
            }
        }

        @media (max-width: 768px) {
            .yv63-weluwi {
                flex-direction: column;
                gap: var(--space-2);
                border-radius: 16px;
                padding: var(--space-2);
            }
            .yv63-ujalog {
                justify-content: center;
            }
            .yv63-onina {
                padding-top: 140px;
                text-align: center;
            }
            .yv63-action-group {
                justify-content: center;
            }
            .yv63-owihik p {
                margin-left: auto;
                margin-right: auto;
            }
        }

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