/* ============================================================
   Jalur Seleksi — Premium Infographic Styles
   ============================================================ */
:root {
    --jalur-prestasi: #6366f1;
    --jalur-prestasi-light: #a5b4fc;
    --jalur-afirmasi: #10b981;
    --jalur-afirmasi-light: #6ee7b7;
    --jalur-domisili: #f59e0b;
    --jalur-domisili-light: #fcd34d;
    --jalur-bg: #f8fafc;
    --jalur-card-bg: #ffffff;
    --jalur-text: #1e293b;
    --jalur-text-light: #64748b;
    --jalur-text-muted: #94a3b8;
}

.jalur-section {
    padding: 60px 0;
    background-color: var(--jalur-bg);
    overflow: hidden;
}

/* ── Header ── */
.jalur-infographic-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.jalur-infographic-header .badge-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--jalur-prestasi);
    background: rgba(99, 102, 241, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.jalur-infographic-header h2 {
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--jalur-text);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.jalur-infographic-header p {
    color: var(--jalur-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Calculation Notice ── */
.calculation-notice {
    max-width: 650px;
    margin: 0 auto;
}

.notice-inner {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.05), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.1);
    padding: 15px 25px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.notice-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--jalur-prestasi);
}

.notice-icon {
    font-size: 1.5rem;
    color: var(--jalur-prestasi);
    flex-shrink: 0;
    animation: noticePulse 2s infinite ease-in-out;
}

@keyframes noticePulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* ============================================================
   TREEMAP CHART
   ============================================================ */
.infographic-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Shift left when Afirmasi is hovered to make room for the popup branch */
@media (min-width: 1100px) {
    .infographic-main.afirmasi-active {
        transform: translateX(-120px);
    }
}


/* Treemap container — square layout */
.treemap-chart {
    width: 380px;
    height: 380px;
    display: flex;
    gap: 8px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

/* Grid layout for > 3 tracks */
.treemap-chart.tm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

/* Individual block */
.tm-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Connector SVG overlay */
.connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
}

.tm-block::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.tm-block:hover::after {
    left: 100%;
    top: 100%;
}

.tm-block i {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.85);
    transition: transform 0.3s ease;
}

.tm-block:hover i {
    transform: scale(1.2);
}

.tm-pct {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.tm-pct small {
    font-size: 0.5em;
    font-weight: 700;
    opacity: 0.85;
}

.tm-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Track Colors */
.tm-block {
    background: linear-gradient(160deg, #94a3b8, #64748b); /* Default Gray */
}

.tm-pct_prestasi, .stat-row.stat-pct_prestasi::before, .tm-prestasi { background: linear-gradient(160deg, #6366f1, #4f46e5); }
.tm-pct_afirmasi, .stat-row.stat-pct_afirmasi::before, .tm-afirmasi { background: linear-gradient(160deg, #10b981, #059669); }
.tm-pct_domisili, .stat-row.stat-pct_domisili::before, .tm-domisili { background: linear-gradient(160deg, #f59e0b, #d97706); }
.tm-pct_langit, .stat-row.stat-pct_langit::before { background: linear-gradient(160deg, #ec4899, #db2777); }

.tm-block i { font-size: 1.8rem; }
.tm-block .tm-pct { font-size: 2.2rem; }

/* Prestasi specific (usually largest) */
.tm-prestasi, .tm-pct_prestasi {
    flex: 3;
    border-radius: 20px 0 0 20px;
}
.tm-prestasi i, .tm-pct_prestasi i { font-size: 2.5rem; }
.tm-prestasi .tm-pct, .tm-pct_prestasi .tm-pct { font-size: 3rem; }

/* Right column container */
.tm-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Afirmasi & Domisili */
.tm-afirmasi, .tm-pct_afirmasi { flex: 6; border-radius: 0 20px 0 0; }
.tm-domisili, .tm-pct_domisili { flex: 4; border-radius: 0 0 20px 0; }

/* Grid specific fixes */
.tm-grid .tm-block { border-radius: 16px !important; flex: none !important; width: 100%; height: 100%; }

/* Hover interaction — dim non-hovered blocks */
.tm-block.seg-dimmed {
    filter: grayscale(0.85) brightness(0.7);
    opacity: 0.4;
    transform: scale(0.97);
}

.tm-block.seg-active {
    filter: brightness(1.1);
    box-shadow: inset 0 0 0 3px rgba(255,255,255,0.4);
}



/* ── Right-side key stats ── */
.donut-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 380px;
    flex: 1;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: visible !important;
    z-index: 10;
}

.stat-afirmasi {
    overflow: visible !important;
    z-index: 100 !important;
}

.afirmasi-sub-branch {
    position: absolute;
    left: calc(100% + 20px);
    top: 0;
    width: 440px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(20px);
    pointer-events: none;
}

.stat-row:hover .afirmasi-sub-branch,
.stat-row.stat-highlighted .afirmasi-sub-branch {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}


.stat-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    border-radius: 5px 0 0 5px;
}

.stat-row.stat-prestasi::before { background: var(--jalur-prestasi); }
.stat-row.stat-afirmasi::before { background: var(--jalur-afirmasi); }
.stat-row.stat-domisili::before { background: var(--jalur-domisili); }

.stat-row:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.stat-row:hover .stat-icon-circle {
    transform: scale(1.1) rotate(-5deg);
}

.stat-row.stat-pct_prestasi .stat-icon-circle { background: rgba(99, 102, 241, 0.1); color: var(--jalur-prestasi); }
.stat-row.stat-pct_afirmasi .stat-icon-circle { background: rgba(16, 185, 129, 0.1); color: var(--jalur-afirmasi); }
.stat-row.stat-pct_domisili .stat-icon-circle { background: rgba(245, 158, 11, 0.1); color: var(--jalur-domisili); }
.stat-row.stat-pct_langit .stat-icon-circle { background: rgba(236, 72, 153, 0.1); color: #ec4899; }

.stat-info { flex: 1; }

.stat-info .stat-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--jalur-text);
    margin-bottom: 2px;
}

.stat-info .stat-desc {
    font-size: 0.8rem;
    color: var(--jalur-text-muted);
    line-height: 1.4;
}

.stat-count-badge {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 6px;
    background: rgba(0,0,0,0.04);
    color: var(--jalur-text-light);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Jurusan Breakdown List (Inside Stat Row) */
.jurusan-breakdown {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 0;
    border-top: 1px dashed rgba(0,0,0,0);
}

.stat-row.stat-highlighted .jurusan-breakdown {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
    padding-top: 12px;
    border-top-color: rgba(0,0,0,0.06);
}

.jb-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.jb-name {
    color: var(--jalur-text-muted);
    font-weight: 500;
}

.jb-val {
    font-weight: 800;
    color: var(--jalur-text-main);
    background: rgba(0,0,0,0.03);
    padding: 1px 8px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
}

.stat-prestasi.stat-highlighted .jb-val { color: var(--jalur-prestasi); background: rgba(99, 102, 241, 0.05); }
.stat-afirmasi.stat-highlighted .jb-val { color: var(--jalur-afirmasi); background: rgba(16, 185, 129, 0.05); }
.stat-domisili.stat-highlighted .jb-val { color: var(--jalur-domisili); background: rgba(245, 158, 11, 0.05); }

.stat-prestasi .stat-count-badge { background: rgba(99, 102, 241, 0.08); color: var(--jalur-prestasi); }
.stat-afirmasi .stat-count-badge { background: rgba(16, 185, 129, 0.08); color: var(--jalur-afirmasi); }
.stat-domisili .stat-count-badge { background: rgba(245, 158, 11, 0.08); color: var(--jalur-domisili); }

.stat-pct {
    font-size: 1.75rem;
    font-weight: 900;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.stat-row.stat-pct_prestasi .stat-pct { color: var(--jalur-prestasi); }
.stat-row.stat-pct_afirmasi .stat-pct { color: var(--jalur-afirmasi); }
.stat-row.stat-pct_domisili .stat-pct { color: var(--jalur-domisili); }
.stat-row.stat-pct_langit .stat-pct { color: #ec4899; }

.stat-pct small {
    font-size: 0.65em;
    font-weight: 600;
}

/* ── Hover interaction states ── */
.stat-row.stat-highlighted {
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.1);
}

.stat-row.stat-dimmed {
    opacity: 0.3;
    filter: grayscale(0.8);
    transform: scale(0.97);
}



/* ============================================================
   AFIRMASI COMPACT — Segmented Bar + Inline Legend
   ============================================================ */
.afirmasi-compact {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    position: relative;
    overflow: hidden;
}

/* Subtle dot-grid background */
.afirmasi-compact::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(16, 185, 129, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.afirmasi-compact > * {
    position: relative;
    z-index: 1;
}

.afirmasi-compact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #34d399, #6ee7b7, #a7f3d0);
    z-index: 2;
}

.afc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--jalur-text-light);
}

.afc-header i {
    color: var(--jalur-afirmasi);
    font-size: 1.1rem;
}

.afc-header strong {
    color: var(--jalur-afirmasi);
    font-weight: 700;
}


/* Column-aligned bar + labels */
.afc-columns {
    display: flex;
    gap: 3px;
    margin-bottom: 1.5rem;
}

.afc-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Bar segments */
.afc-seg {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.afc-seg:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.seg-mampu       { background: linear-gradient(135deg, #059669, #10b981); border-radius: 10px 0 0 10px; }
.seg-panti       { background: linear-gradient(135deg, #34d399, #10b981); }
.seg-disabilitas { background: linear-gradient(135deg, #6ee7b7, #34d399); color: #065f46; }
.seg-ats         { background: linear-gradient(135deg, #a7f3d0, #6ee7b7); color: #065f46; border-radius: 0 10px 10px 0; }

/* Labels directly under each segment */
.afc-label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 0.75rem;
    padding: 0 4px;
}

.afc-label i {
    font-size: 1rem;
    color: var(--jalur-afirmasi);
    opacity: 0.8;
    margin-top: 2px;
    flex-shrink: 0;
}

.afc-label strong {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--jalur-text);
    line-height: 1.25;
}

.afc-label small {
    display: block;
    font-size: 0.68rem;
    color: var(--jalur-text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* Note about maximum logic */
.afc-note {
    font-size: 0.8rem;
    color: var(--jalur-text-muted);
    line-height: 1.6;
    padding: 0.85rem 1.25rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--jalur-afirmasi);
    display: flex;
    align-items: center;
    gap: 10px;
}

.afc-note i {
    color: var(--jalur-domisili);
    font-size: 1rem;
}

.afc-note em {
    font-style: italic;
    font-weight: 600;
    color: var(--jalur-afirmasi);
}

/* ============================================================
   BOTTOM FOOTNOTE
   ============================================================ */
.infographic-footnote {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(99, 102, 241, 0.03);
    border-radius: 16px;
    border: 1px dashed rgba(99, 102, 241, 0.15);
    margin-top: 3rem;
}

.infographic-footnote p {
    font-size: 0.88rem;
    color: var(--jalur-text-muted);
    margin: 0;
    line-height: 1.7;
}

.infographic-footnote i {
    color: var(--jalur-prestasi);
    margin-right: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .infographic-main {
        flex-direction: column;
        gap: 3rem;
    }

    .treemap-chart {
        width: 300px;
        height: 300px;
    }

    .donut-stats {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .jalur-infographic-header h2 {
        font-size: 2rem;
    }

    .treemap-chart {
        width: 280px;
        height: 280px;
    }

    .tm-pct {
        font-size: 1.8rem;
    }

    .tm-prestasi .tm-pct {
        font-size: 2.5rem;
    }

    .donut-center .total-value {
        font-size: 2rem;
    }

    .afirmasi-compact {
        padding: 1.25rem;
    }

    .afc-columns {
        flex-wrap: wrap;
        gap: 3px 3px;
    }

    .afc-col {
        flex-basis: calc(50% - 2px) !important;
        flex-grow: 1 !important;
    }

    .afc-seg {
        height: 30px;
        font-size: 0.7rem;
    }

    .afc-label strong {
        font-size: 0.72rem;
        white-space: normal;
    }

    .stat-pct {
        font-size: 1.4rem;
    }

    .stat-icon-circle {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .afc-col {
        flex-basis: 100% !important;
    }

    .donut-legend-dots {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}



/* ============================================================
   AFIRMASI SUB-BRANCH (Detailed Popup)
   ============================================================ */
.afirmasi-sub-branch {
    position: absolute;
    left: calc(100% + 20px);
    top: -30px;
    width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    pointer-events: none;
}


.stat-row.stat-highlighted .afirmasi-sub-branch {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.asb-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.12), 
        0 5px 15px rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.15);
    position: relative;
}

/* Branching Line Effect */
.asb-container::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50px;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3));
}

.asb-header {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--jalur-afirmasi);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(16, 185, 129, 0.08);
    padding-bottom: 10px;
}

.asb-global-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.asbg-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.02);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.asbg-item:hover {
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.1);
    transform: translateX(5px);
}

.asbg-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.asbg-info i {
    font-size: 1.1rem;
    color: var(--jalur-afirmasi);
    width: 20px;
    text-align: center;
}

.asbg-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--jalur-text);
}

.asbg-pct {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--jalur-afirmasi);
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.asbg-val {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--jalur-text);
}

.asbg-val small {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--jalur-text-muted);
    margin-left: 2px;
}

.asbg-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.05), transparent);
    margin: 5px 0;
}

.item-mampu .asbg-info i { color: #059669; }
.item-mampu .asbg-label { color: #059669; }
.item-mampu .asbg-pct { background: rgba(5, 150, 105, 0.1); color: #059669; }
.item-mampu .asbg-val { color: #059669; }


.asb-footer {
    margin-top: 1.5rem;
    padding: 10px 15px;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, 0.15);
    font-size: 0.8rem;
    color: #dc2626;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
    animation: asbPulse 2s infinite;
}

.asb-footer i {
    color: #ef4444;
    font-size: 1rem;
}

@keyframes asbPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}


/* Responsive adjustments for the branch */
@media (max-width: 1300px) {
    .afirmasi-sub-branch {
        width: 480px;
    }
}

@media (max-width: 1100px) {
    .afirmasi-sub-branch {
        position: static;
        width: 100%;
        margin-top: 1rem;
        transform: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    .stat-afirmasi.stat-highlighted .afirmasi-sub-branch {
        max-height: 800px;
        opacity: 1;
    }
    .asb-container::before {
        display: none;
    }
    .asb-content {
        flex-direction: column;
        gap: 1.25rem;
    }
    .asb-divider {
        height: 1px;
        width: 100%;
        background: rgba(0,0,0,0.05);
    }
}
