<style>
:root{
--primary:#0b3c5d;
--secondary:#1f6fe5;
--bg:#f4f6f9;
}

body {
margin: 0;
font-family: 'Segoe UI', system-ui, sans-serif;
background: var(--bg);
color: #222;
}



.top-bar {
    position: fixed;         
    top: 20px;
    right: 20px;

    z-index: 999;         
}


.btn-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: linear-gradient(135deg, #0b3c5d, #1f6fe5);
    color: #fff;
    text-decoration: none;

    padding: 10px 18px;
    border-radius: 999px;     /* pill style */
    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 10px 25px rgba(31,111,229,.35);
    transition: all .25s ease;
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(31,111,229,.45);
}


@media (max-width: 600px) {
    .top-bar {
        top: 12px;
        right: 12px;
    }

    .btn-dashboard {
        font-size: 13px;
        padding: 9px 16px;
    }
}


.container {
max-width: 1000px;
margin: 10px auto 40px;
padding: 0 20px;
}

.page-desc {
text-align: center;
color: #6b7c93;
font-size: 15px;
margin-bottom: 30px;
}


.info-card {
background: #ffffff;
border-radius: 18px;
padding: 28px 30px 26px;
margin-bottom: 24px;
box-shadow: 0 14px 35px rgba(0,0,0,.1);
transition: transform .25s ease, box-shadow .25s ease;
}

.info-card:hover {
transform: translateY(-4px);
box-shadow: 0 22px 45px rgba(0,0,0,.15);
}

.page-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0b3c5d;
    margin-bottom: 6px;
    letter-spacing: .5px;
}

.page-subtitle {
    font-size: 15px;
    color: #6b7c93;
}

.info-title {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 800;
    color: #0b3c5d;

    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.45;

    max-width: 100%;
    word-wrap: break-word;

    position: relative;
    padding-left: 18px;
}


.info-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: calc(100% - 12px);
    background: linear-gradient(180deg, #0b3c5d, #1f6fe5);
    border-radius: 6px;
}

@media (max-width: 600px) {
    .info-title {
        font-size: 18px;
        letter-spacing: 0.6px;
        line-height: 1.5;
    }
}



.info-meta {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-bottom: 14px;
}

.meta-badge {
font-size: 12px;
background: #e8f1ff;
color: var(--secondary);
padding: 4px 12px;
border-radius: 20px;
font-weight: 600;
}
.info-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}


.btn-share {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .25s ease;
}


.btn-share-general {
    background: #eef2f7;
    color: #475569;
}

.btn-share-general:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}


.btn-share-wa {
    background: #e9f7f1;
    color: #25D366;
}

.btn-share-wa:hover {
    background: #d6f3e6;
    transform: translateY(-2px);
}




.info-content {
font-size: 15px;
line-height: 1.7;
color: #333;
}


.empty {
text-align: center;
background: #fff;
padding: 40px;
border-radius: 16px;
color: #6b7c93;
}


@media (max-width: 600px) {
.info-card {
    padding: 22px 20px;
}
.info-title {
    font-size: 18px;
}
.top-bar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

