body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(circle at top, #fee2e2, #ffffff 100%);
    color: #111827;
    font-size: 18px;
    line-height: 1.6;
}

/* START: : Loader  */
.loadp-overlay.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loadp-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #b91c1c, #7f1d1d 55%, #111827 100%);
    z-index: 9999;
    transition: opacity .4s ease, visibility .4s ease;
}
.loadp-box {
    text-align: center;
    color: #fef2f2;
}
.loadp-logo {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 3px solid rgba(254, 226, 226, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loadp-ring {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 3px solid rgba(254, 226, 226, .25);
    border-top-color: #fee2e2;
    animation: spin 1s linear infinite;
}
/* END: : Loader  */

/* START: Header and menu */
.header-part {
    background: linear-gradient(135deg, #b91c1c, #ef4444);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(185, 28, 28, .45);
    padding: 7px 0;
}

.header-part h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 0;
}
.menu-part .menus {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 0 auto;
    padding: 4px 0 8px;
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
}
.menu-part .menus a{
    background: #ffffff;
    color: #b91c1c;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}
/* END: Header and menu */

/* START: section part */
.section-part {
    padding: 8px 12px 34px;
}
.w-notes {
    font-size: .85rem;
    color: #6b7280;
    margin: 2px auto 6px;
    max-width: 620px;
    text-align: center;
}
.w-notes strong{
    color: #b91c1c;
}
.data-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 13px 18px;
    box-shadow: 0 10px 30px rgba(185, 28, 28, .35);
    border: 1px solid #fee2e2;
    margin-top: 14px;
}
.data-box h2{
    font-size: 1.04rem;
    margin-bottom: 8px;
    font-weight: bold;
    line-height: 1.8;
}
.data-box p{
    font-size: .96rem;
    line-height: 1.7;
    margin-bottom: 7px;
    color: #374151;
}
.data-box .subbox{
    margin: 10px 0 14px;
    padding: 14px;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}
.data-box .subbox p{
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}
.data-box .subbox a{
    display: block;
    width: 250px;
    max-width: 100%;
    text-align: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #16a34a;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}
.data-box .subbox a.yes{
    margin: 0 auto 10px;
    background: #16a34a;
}
.data-box .subbox a.no{
    margin: 0 auto;
    background: #ef4444;
}
.data-box .card-box{
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 12px 14px;
    box-shadow: 0 10px 30px rgba(185, 28, 28, .35);
    border: 1px solid #fee2e2;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.data-box .card-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(185, 28, 28, .45);
    border-color: #b91c1c;
}
.data-box .card-box-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}
.data-box .card-box-header .card-icon{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}
.data-box .card-box-header .card-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.data-box .card-box-header .card-title{
    font-size: 1.02rem;
    font-weight: 600;
}
.data-box .card-redinfo{
    font-size: .94rem;
    color: #b91c1c;
    font-weight: 600;
    margin: 6px 0 9px;
}
.data-box .card-guide .guide-btn{
    padding: 8px 12px;
    border-radius: 999px;
    border: none;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    color: #f9fafb;
    background: linear-gradient(135deg, #b91c1c, #ef4444);
    text-decoration: none;
    display: block;
    text-align: center;
    width: 250px;
    max-width: 100%;
    margin: 4px auto 0;
}
.data-box .a-part {
    width: 100%;
    margin: 22px 0;
    padding: 12px 0 20px;
    background: #fff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
}
.data-box .a-subpart {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}
.data-box#showmore-info h2 {
    font-size: 1rem;
    margin: 10px 0 6px;
}

.data-box ul {
    margin-bottom: 7px;
}
.data-box li {
    font-size: .94rem;
    margin-bottom: 4px;
}
/* END: section part */
