header {
    border-radius: 12px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.detail-viewport {
    min-height: calc(100vh - 88px);
    background: var(--hero-mask), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=2000');
    display: flex;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 65px 2px 10px;
}

.hero,
.sr-hero {
    padding: 65px 2px 10px;
}

.dt-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.dt-col-l, .dt-col-r {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #fff;
    padding: 20px;
    padding-top: 20px;
    height: 100%;
    min-height: calc(100vh - 160px);
}
.dt-col-r{
    padding: 10px;
}

.dt-col-l {
    width: calc(100% - 330px);
}

.dt-limiter {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.dt-limiter {
    max-width: 960px;
}
.w100{
    width: 100%;
    max-width: 100%;
}

.left-ad-area {
    width: 700px;
    height: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border: 1px dashed rgba(255,255,255,0.4);
    border-radius: 12px;
    color: rgba(255,255,255,0.5);
}

.dff{
    display: flex;
    flex-direction: column;
    height: calc(100vh - 200px);
    position: relative;
}

.rs-sum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 15;
    background: rgba(255, 255, 255, 0.02);
}
.rs-box{
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: calc(100vh - 200px);
    overflow-x: hidden;
    overflow-y: auto;
    /* scrollbar styling */
    scrollbar-width: thin; /* for Firefox (approx) */
    scrollbar-color: rgba(255,255,255,0.2) transparent;
    width: 100%;
}

/* WebKit browsers: set exact 2px width */
.rs-box::-webkit-scrollbar {
    width: 2px;
}
.rs-box::-webkit-scrollbar-track {
    background: transparent;
}
.rs-box::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}



.summary-left { display: flex; align-items: center; gap: 16px; }
.order-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(79, 124, 255, 0.35);
    flex-shrink: 0;
}
.rs-tn {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.tracking-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rs-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.1) 100%);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    color: #4ade80;
}

.loading-pulse {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulseRing 1.5s ease-out infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.3s;
    width: 6px;
    height: 6px;
}

.pulse-ring:nth-child(3) {
    animation-delay: 0.6s;
    width: 4px;
    height: 4px;
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.rs-ldtxt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rs-timeline {
    position: relative;
    border-radius: 16px;
    padding: 30px;
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100% - 83px);
    padding-bottom: 250px;
}

.rs-timeline::-webkit-scrollbar {
    width: 2px;
}
.rs-timeline::-webkit-scrollbar-track {
    background: transparent;
}
.rs-timeline::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

/* ?vw= full scroll: page grows with content, no fixed-height inner scroll */
.dff--vw {
    height: auto !important;
    min-height: 0;
}
.rs-box--vw {
    height: auto !important;
    overflow: visible !important;
}
.rs-timeline--vw {
    height: auto !important;
    overflow: visible !important;
    padding-bottom: 28px;
}
.rs-timeline--vw .rs-vw-inline-ad {
    margin: 6px 0 18px;
}
.rs-timeline--vw .rs-vw-actions {
    display: none;
}
.rs-timeline--vw.rs-has-results .rs-vw-actions {
    display: block;
}
.rs-vw-actions {
    margin-top: 8px;
    padding-top: 8px;
    text-align: center;
}
.rs-search-again {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    background-color: #1a73e8;
}
.rs-search-again:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.rs-tmask {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8) 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    z-index: 10;
    display: none;
    height: 100%;
    padding-bottom: 200px;
}
.rs-info .nr .ad-container{
    justify-content: center;
}
.rs-viewmore {
    padding: 12px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    background-color: #1a73e8;
}
.rs-viewmore:hover { background: var(--primary); border-color: var(--primary); }

.list-item {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-left: 10px;
    padding-left: 25px;
    position: relative;
}
.list-item::before {
    content: "";
    position: absolute;
    left: -9px; top: 0;
    width: 12px; height: 12px;
    background: #333;
    border: 2px solid var(--primary);
    border-radius: 50%;
}
.list-item.latest::before { background: var(--primary); box-shadow: 0 0 10px var(--primary); }
.item-time { font-size: 13px; color: #aaa; width: 140px; flex-shrink: 0; }
.item-desc { font-size: 15px; line-height: 1.5; color: #eee; }

/* Additional timeline styles copied from main css to match rendering */
.i_r_t{
    line-height: 12px;
    font-size: 12px;
    color: #b6b8bb;
    font-weight: 700;
    position: relative;
    margin-bottom: 9px;
}
.rs-info .nr li{
    display: flex;
    justify-content: start;
    align-items: center;
    border: none;
    min-height: 100px;
}

.i_r_b{
    font-size: 13px;
    color: #fff;
    line-height: 20px;
    text-align: left;
}
.i_l{
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .3);
    backdrop-filter: blur(8px);
    margin-right: 15px;
    position: relative;
    padding: 3px;
    font-weight: 700;
}
.rs-info .nr p{
    margin: 0;
}
.rs-info .nr.s1 li:nth-last-child(2) .i_l,.rs-info .nr.s2 li:nth-last-child(2) .i_l{
    background-color: #065ff5;
    color: #fff;
}
.rs-info .nr.s3 li:last-child .i_l{
    background-color: #065ff5;
    color: #fff;
}
.i_l::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 1px;
    height: 55px;
    background-color: #909398;
}
.i_l::before{
    content: '';
    position: absolute;
    top: calc(100% + 17px);
    left: calc(50% - 8px);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #909398;
    margin: 0px;
}
.rs-info .nr li:last-child .i_l::after,.rs-info .nr li:last-child .i_l::before{
    display: none;
}
.dis{
    display: flex;
    justify-content: center;
    align-items: center;
}
.g_icon{
    position: absolute;
    right: 0px;
    top: 0px;
}
.trk_icon{
    display: none;
    width: 28px;
    height: auto;
    border-radius: 4px;
}
.i_r{
    width: calc(100% - 60px);
}
.rs-ldbox{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.rs-ldbox img{
    width: 48px;
    height: auto;
}



.not-found-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    color: #ef4444;
}

.not-found-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.not-found-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.5;
}

.not-found-btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(79, 124, 255, 0.3);
    transition: all 0.2s ease;
}

.not-found-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 124, 255, 0.4);
}

.dt-card {
    padding: 60px 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.dt-selhdr {
    display: none;
    text-align: center;
    padding: 30px 20px;
}

.dt-selhdr .dt-seltitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.dt-selhdr .dt-selsub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 30px;
}

.dt-clist {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease forwards;
}


.dt-ccard {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    flex: 1;
}
#header-select{
    display: none;
}
.rs-ldico{
    width: 30px;
    height: 30px;
}
.dt-ccard:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
}
.dt-ccard .dt-cico { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 6px; margin-right: 12px; }
.dt-ccard span { font-weight: 600; font-size: 14px; color: #eee; }
.dt-cico img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.dt-submit {
    display: none;
    padding: 14px 70px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}
.dt-submit:hover { transform: scale(1.05); }

.left-ad-area {
    width: 700px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.3);
}
.rs-aside{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(18px);
    height: auto;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.dt-col-r {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-ad { width: 300px; height: 250px; background: #000; border-radius: 8px; margin: 0 auto; display: flex; align-items: center; justify-content: center; color: #444; }
.faq-title { font-size: 18px; margin-bottom: 15px; color: var(--primary); }
.faq-item { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; text-align: left;display: block; }
.faq-item b { font-size: 14px; color: #fff; }
.faq-item p { font-size: 13px; color: #999; margin-top: 5px; line-height: 1.5; }

.rs-ldbox{
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

:root {
    --accent-blue: #eef6ff;
    --accent-blue-text: #007aff;
    --accent-purple: #f8f7ff;
    --accent-purple-text: #6366f1;
    --accent-gold: #fffcf0;
    --accent-gold-text: #b7a018;
    --accent-green: #f2faf5;
    --accent-green-text: #34c759;
    --text-main: #1d1d1f;
    --text-sub: #6e6e73;
    --card-border: rgba(0, 0, 0, 0.05);
}

.modern-section { padding: 80px 0; background: #fff; }
.container-960 { max-width: 1160px; margin: 0 auto; padding: 0 25px; }

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.glass-description {
    grid-column: span 2;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff, #fcfcfd);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.info-tile {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease;
}
.info-tile:hover { transform: translateY(-5px); }

.tile-label { font-size: 11px; font-weight: 800; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: block; }
.tile-content { font-size: 15px; color: var(--text-main); font-weight: 600; line-height: 1.4; }



.status-stack { display: flex; flex-direction: column; gap: 15px; }
.status-item {
    display: flex;
    align-items: center;
    padding: 25px 35px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}
.status-icon { width: 44px; height: 44px; border-radius: 12px; margin-right: 20px; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }

@media (max-height:860px) {
    .dt-card{
        min-height: 300px;
        padding: 15px;
    }
    .dt-col-l, .dt-col-r{
        min-height: calc(100vh - 88px);
    }
    .dff{
        height: calc(100vh - 120px);
    }
    #header-select p{
        margin-bottom: 25px !important;
    }
    .dt-clist{
        margin-bottom: 20px;
    }
}
@media (max-width: 1024px) {
    .dt-layout { flex-direction: column; }
    .dt-col-l, .dt-col-r { width: 100%; }
    .left-ad-area { width: 100%; }
}

@media (max-width: 768px) {
    .tile-content table tr, .tile-content table td,.tile-content table th{
        padding: 5px !important;
    }
    .info-tile{
        padding: 10px;
        max-width: 100%;
        overflow: hidden;
    }
    .rs-info .nr li:nth-child(8) .i_l::before,.rs-info .nr li:nth-child(18) .i_l::before,.rs-info .nr li:nth-child(8) .i_l::after,.rs-info .nr li:nth-child(18) .i_l::after{
        display: none;
    }
    .rs-badge{
        padding: 6px 12px;
        font-size: 11px;
    }
    .order-icon {
        width: 40px;
        height: 40px;
    }
    .order-icon svg {
        width: 18px;
        height: 18px;
    }
    .not-found-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .not-found-content {
        flex-direction: column;
    }
    .rs-tmask{
        padding-bottom: 0;
    }
    .faq_item{
        grid-template-columns: 1fr !important;
    }
    .info-strip{
        grid-template-columns: repeat(1, 1fr);
    }
    #loading-header h2,#header-select h2{
        font-size: 20px !important;
    }
    .dt-ccard{
        padding: 6px;
    }
    #header-select p{
        margin-bottom: 10px !important;
    }
    .dt-clist{
        margin-bottom: 20px;
        gap: 6px;
    }
    .hero,
    .sr-hero{
        padding: 40px 2px 10px;
    }
    .dt-col-l, .dt-col-r{
        padding: 3px;
        min-height: auto;
        height: auto;
    }
    .dt-card{
        min-height: auto;
        padding: 23px 8px;
    }
    .dt-ccard span{
        font-size: 12px;
    }
    .dt-ccard .dt-cico{
        margin-right: 4px;
    }
    .left-ad-area{
        margin: 0;
    }
    .dff,.rs-timeline{
        height: auto;
    }
    .dff{
        margin-top: 10px;
        min-height: 320px;
    }
    .rs-box{
        height: auto;
    }
    .rs-timeline{
        padding: 10px;
    }
    .container-960{
        padding: 0 10px;
    }
    .glass-description{
        padding: 15px;
    }
    .rs-tn{
        font-size: 15px;
    }
}