:root {
    --primary-color: #0A66C2; 
    --text-main: #1C1E21;
    --text-muted: #65676B;
    --bg-white: #FFFFFF;
    --bg-light: #F7F9FA;
    --bg-dark: #0F1419;
    --border-color: #E4E6EB;
    --card-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    --accent-cyan: #22d3ee;
    --accent-blue: #3b82f6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: var(--text-main); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.dark-mode { background-color: var(--bg-dark); color: #fff; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: 36px; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-header p { font-size: 18px; color: var(--text-muted); }
.eyebrow { display: block; font-size: 13px; font-weight: 700; color: var(--primary-color); letter-spacing: 1.5px; margin-bottom: 12px; }
.accent-color { color: #4799EB; }

h2 { font-size: 36px; line-height: 1.2; margin-bottom: 24px; }
p { color: var(--text-muted); font-size: 16px; margin-bottom: 20px; }
.dark-mode p { color: #AAB8C2; }

.split-view { display: flex; align-items: center; gap: 60px; }
.split-view.reverse { flex-direction: row-reverse; }
.text-content { flex: 1; }
.visual-content { flex: 1; }
.pr-large { padding-right: 40px; }
.pl-large { padding-left: 40px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.carrier-card { 
    display: flex; gap: 20px; padding: 15px; 
    background: var(--bg-white); border: 1px solid var(--border-color);
    border-radius: 16px; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.carrier-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); border-color: transparent; }
.carrier-icon { 
    width: 60px; height: 60px; flex-shrink: 0; 
    background: var(--bg-light); border-radius: 12px; 
    display: flex; align-items: center; justify-content: center; 
}
.mock-icon { width: 32px; height: 32px; background: #ccc; border-radius: 50%; /* 占位符，请替换为真实img */ }
.carrier-info h3 { font-size: 18px; margin-bottom: 8px; }
.carrier-info p { font-size: 14px; margin-bottom: 0; line-height: 1.5; }

.feature-list, .app-features { list-style: none; margin-top: 30px; }
.feature-list li, .app-features li { 
    position: relative; padding-left: 30px; margin-bottom: 20px; font-size: 16px; color: var(--text-muted);
}
.feature-list li::before { 
    content: "✓"; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; font-size: 18px;
}
.feature-list li strong { color: var(--text-main); }
.dark-mode .pro-item h4 { font-size: 20px; margin-bottom: 8px; margin-top: 30px; }

.step-card { padding: 40px; background: var(--bg-white); border-radius: 20px; box-shadow: var(--card-shadow); position: relative; overflow: hidden; }
.step-number { font-size: 80px; font-weight: 900; color: var(--bg-light); position: absolute; top: -10px; right: 20px; z-index: 1; line-height: 1; }
.step-card h3 { font-size: 22px; margin-bottom: 16px; position: relative; z-index: 2; }
.step-card p { position: relative; z-index: 2; margin-bottom: 0; }

.shadow-box { border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); background: #fff; }

.tracking-demo {
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid #e8eaed;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.demo-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f7fa;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e1e4e8;
}

.demo-input-icon {
    font-size: 18px;
}

.demo-input-text {
    color: #8a9199;
    font-size: 15px;
    font-weight: 500;
}

.demo-carrier-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d40511 0%, #ffcc00 100%);
    padding: 8px 16px;
    border-radius: 8px;
}

.carrier-badge-icon {
    font-size: 14px;
}

.carrier-badge-name {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.demo-timeline {
    position: relative;
    padding-left: 24px;
}

.demo-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e8eaed;
}

.timeline-item {
    position: relative;
    padding-bottom: 28px;
    padding-left: 24px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #e8eaed;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #e8eaed;
}

.timeline-item.completed .timeline-dot {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.timeline-item.active .timeline-dot {
    background: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.timeline-item.active .timeline-dot.pulse {
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.1); }
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-status {
    font-size: 16px;
    font-weight: 600;
    color: #1c1e21;
}

.timeline-item.completed .timeline-status {
    color: #22c55e;
}

.timeline-item.active .timeline-status {
    color: #3b82f6;
}

.timeline-date {
    font-size: 13px;
    color: #8a9199;
}

.timeline-location {
    font-size: 13px;
    color: #65676b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.timeline-location::before {
    content: '📍';
    font-size: 11px;
}

.premium-placeholder { height: 400px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f6f8fb 0%, #e9edf3 100%); }
.ui-mockup-track { padding: 20px 40px; background: #fff; border-radius: 50px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); font-weight: 600; color: var(--primary-color); }
.code-window { background: #1E1E1E; padding: 40px; color: #D4D4D4; font-family: 'Courier New', Courier, monospace; font-size: 14px; overflow-x: auto; border: 1px solid #333; }

.stats-window {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.07);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 32px;
    gap: 10px;
    position: relative;
    transition: background 0.3s ease;
}
.stat-item:hover {
    background: rgba(255, 255, 255, 0.04);
}
.stat-item:nth-child(1),
.stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-number {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #4799EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: rgba(170, 184, 194, 0.8);
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.5;
}
.phone-frame { width: 300px; height: 600px; margin: 0 auto; display: flex; align-items: center; justify-content: center; box-shadow: none;background-color: transparent;}

.store-buttons { display: flex; gap: 16px; margin-top: 40px; }
.store-btn { display: inline-block; padding: 14px 32px; background: var(--text-main); color: #fff; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 15px; transition: 0.2s; }
.store-btn:hover { background: #000; }

:root {
    --usps-blue: #004B87;
    --usps-red: #E71921;
    --bg-page: #F4F7F9;
    --bg-card: #FFFFFF;
    --text-main: #1D1D1F;
    --text-muted: #6E6E73;
    --border-color: #E5E7EB;
    --link-color: #0066CC;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --radius-md: 12px;
    --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: var(--bg-page); color: var(--text-main); line-height: 1.6; }

.hero-section { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); padding: 60px 20px; text-align: center; color: white; }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-content h1 { font-size: 28px; font-weight: 500; margin-bottom: 10px; }
.hero-content h1 span { color: #60A5FA; font-weight: 700; }
.hero-content p { color: #94A3B8; font-size: 14px; margin-bottom: 30px; }
.search-box { display: flex; max-width: 600px; margin: 0 auto; background: white; border-radius: 50px; padding: 6px; box-shadow: var(--shadow-md); }
.search-box input { flex: 1; border: none; padding: 0 20px; font-size: 16px; border-radius: 50px; outline: none; }
.search-box button { background: var(--usps-blue); color: white; border: none; padding: 12px 30px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.2s; }
.search-box button:hover { background: #003666; }

.main-container { max-width: 1000px; margin: -40px auto 60px; padding: 0 20px; display: flex; flex-direction: column; gap: 30px; position: relative; z-index: 10; }

.card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
h3 { font-size: 18px; color: var(--text-main); margin-bottom: 20px; font-weight: 700; border-bottom: 2px solid #f0f0f0; padding-bottom: 15px; }

.carrier-header { display: flex; flex-direction: column; gap: 20px; background: var(--bg-card); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.brand-title { display: flex; align-items: center; gap: 20px; }
.brand-title .logo { width: 60px; height: 60px; object-fit: contain; }
.brand-title h2 { font-size: 24px; color: var(--usps-blue); }
.brand-title .subtitle { color: var(--text-muted); font-size: 14px; }
.alert-box { display: flex; gap: 15px; background: #EFF6FF; border-left: 4px solid var(--usps-blue); padding: 16px 20px; border-radius: 0 var(--radius-md) var(--radius-md) 0; font-size: 14px; color: #1E3A8A; }

.info-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.about-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.format-example { background: var(--bg-page); padding: 12px 16px; border-radius: 8px; margin-bottom: 12px; }
.format-example .label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; }
.format-example .code { font-family: monospace; font-size: 15px; font-weight: 600; color: var(--text-main); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.data-list { list-style: none; }
.data-list li { display: flex;  padding: 12px 0; border-bottom: 1px dashed var(--border-color); font-size: 14px; }
.data-list li:last-child { border-bottom: none; }
.data-list span { color: var(--text-muted);min-width: 160px; }
.data-list a { color: var(--link-color); text-decoration: none; font-weight: 500; }
.data-list a:hover { text-decoration: underline; }
.working-hours { margin-top: 20px; background: var(--bg-page); padding: 15px; border-radius: 8px; font-size: 13px; color: var(--text-muted); }

.status-section h3 { background: transparent; border: none; padding: 0; margin-bottom: 20px; margin-top: 20px;}
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.status-card { background: var(--bg-card); padding: 25px 20px; border-radius: var(--radius-md); border: 1px solid var(--border-color); text-align: left; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; margin-bottom: 15px; }
.accepted { background: #60A5FA; }
.transit { background: #F59E0B; }
.delivery { background: #8B5CF6; }
.delivered { background: #10B981; }
.status-card h4 { font-size: 16px; margin-bottom: 8px; }
.status-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.faq-section { background: var(--bg-card); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border-color); padding: 20px !important;}
.section-title-center { text-align: center; border: none; font-size: 22px; margin-bottom: 40px; }
.faq-item { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.faq-item h4 { font-size: 16px; color: var(--text-main); margin-bottom: 10px; display: flex; gap: 10px; }
.faq-item h4::before { content: "Q."; color: var(--usps-blue); font-weight: 900; }
.faq-item p { font-size: 15px; color: var(--text-muted); padding-left: 25px; line-height: 1.6; }

.template-container{
    margin: 30px auto;
    padding: 0;
}
.app-screenshot{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 800px) {
    .info-grid, .contact-grid { grid-template-columns: 1fr; }
    .status-grid { grid-template-columns: repeat(2, 1fr); }
    .main-container { margin-top: 20px; }
    .hero-section { padding: 40px 20px; }
}
@media (max-width: 500px) {
    .status-grid { grid-template-columns: 1fr; }
    .data-list li { flex-direction: column; gap: 5px; }
    .dt-selhdr{
        padding: 15px !important;
    }
    h2,.section-header h2{
        font-size: 25px;
    }
    .section-header{
        margin: 0 auto 10px;
    }
    .stat-number{
        font-size: 24px;
    }
    .demo-header{
        flex-wrap: wrap;
        gap: 15px;
    }
    .step-card h3{
        font-size: 18px;
    }
    .container{
        padding: 0 15px;
    }
}
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: 1fr; }
    .split-view, .split-view.reverse { flex-direction: column; text-align: left; }
    .pr-large, .pl-large { padding: 0; margin-bottom: 40px; }
    .section { padding: 60px 0; }
}

/* ===========================================
   Radar Scanner — Premium Loading Redesign
   =========================================== */

/* Hide old animation elements */
.loadingAnimation { display: none !important; }

/* Radar container */
.dt-radar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 7px;
}

/* Outer ring */
.dt-radar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(71, 153, 235, 0.22);
}

/* Mid ring */
.dt-radar::after {
    content: '';
    position: absolute;
    inset: 17px;
    border-radius: 50%;
    border: 1px solid rgba(71, 153, 235, 0.1);
}

/* Crosshair lines */
.dt-rcross {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
}
.dt-rcross::before,
.dt-rcross::after {
    content: '';
    position: absolute;
    background: rgba(71, 153, 235, 0.07);
}
.dt-rcross::before { width: 1px; top: 0; bottom: 0; left: 50%; }
.dt-rcross::after  { height: 1px; left: 0; right: 0; top: 50%; }

/* Radar sweep (conic-gradient rotating arc) */
.dt-rsweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 250deg,
        rgba(71, 153, 235, 0.05) 268deg,
        rgba(71, 153, 235, 0.2)  282deg,
        rgba(71, 153, 235, 0.55) 298deg,
        rgba(71, 153, 235, 0.08) 318deg,
        transparent 360deg
    );
    animation: radarSpin 2.6s linear infinite;
    -webkit-mask: radial-gradient(circle at center, transparent 16px, black 16px);
    mask: radial-gradient(circle at center, transparent 16px, black 16px);
}

@keyframes radarSpin {
    to { transform: rotate(360deg); }
}

/* Blips */
.dt-rblip {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4799EB;
    box-shadow: 0 0 7px 1px rgba(71, 153, 235, 0.75);
    transform: translate(-50%, -50%);
    animation: blipPulse 2.6s ease-in-out infinite;
}
.dt-rblip--b { animation-delay: 0.65s; }
.dt-rblip--c { animation-delay: 1.3s; }
.dt-rblip--d { animation-delay: 1.95s; }

@keyframes blipPulse {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
    35%, 65% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Center icon */
.dt-rcenter {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dt-rcico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(71, 153, 235, 0.28);
    background: rgba(71, 153, 235, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: centerGlow 2.6s ease-in-out infinite;
}
@keyframes centerGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(71, 153, 235, 0.25); }
    50%       { box-shadow: 0 0 0 7px rgba(71, 153, 235, 0); }
}

/* Loading tag label */
.dt-ldtag {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #4799EB;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Ultra-thin progress bar */
.dt-loader {
    width: 100%;
    max-width: 400px;
    padding-top: 52px;
}
.dt-loader .dt-ptrack {
    height: 2px !important;
    background: rgba(71, 153, 235, 0.12) !important;
    border-radius: 99px !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
    position: relative !important;
}
.dt-loader .dt-pglow {
    width: 0%;
    height: 100% !important;
    background: linear-gradient(90deg, #0A66C2, #4799EB) !important;
    border-radius: 99px !important;
    box-shadow: 0 0 6px rgba(71, 153, 235, 0.5) !important;
    animation: none !important;
    position: relative !important;
    overflow: visible !important;
    transition: width 0.3s ease;
}
/* Remove old glow dot */
.dt-loader .dt-pglow::after {
    display: none !important;
}

/* Truck + percent riding the bar */
.dt-ptruck {
    position: absolute;
    right: 0;
    bottom: calc(100% + 7px);
    transform: translateX(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    pointer-events: none;
}
.dt-ldsub{
    margin-bottom: 8px;
}
.dt-tpct {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    font-weight: 700;
    color: #4799EB;
    background: rgba(71, 153, 235, 0.1);
    border: 1px solid rgba(71, 153, 235, 0.28);
    border-radius: 4px;
    padding: 1px 5px;
    white-space: nowrap;
}
.dt-tico {
    width: 36px;
    height: auto;
    color: #4799EB;
    filter: drop-shadow(0 0 5px rgba(71, 153, 235, 0.65));
}

/* ===========================================
   Tracking Summary — Redesign
   =========================================== */

.rs-sum {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 20px !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    position: sticky;
    top: 0;
    z-index: 15;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rs-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.rs-ico {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(71, 153, 235, 0.1);
    border: 1px solid rgba(71, 153, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4799EB;
}

.rs-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.rs-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.rs-num {
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Courier New', monospace !important;
    color: #fff !important;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
    display: block !important;
}

/* Status badge — new minimal style */
.rs-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 5px 11px !important;
    background: rgba(71, 153, 235, 0.07) !important;
    border: 1px solid rgba(71, 153, 235, 0.18) !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    letter-spacing: 0.4px;
    flex-shrink: 0;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Blinking dot inside badge */
.rs-dot {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #4799EB;
    animation: sbBlink 1.3s ease-in-out infinite;
}

@keyframes sbBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

/* Hide old pulse rings */
.loading-pulse,
.pulse-ring,
.order-icon { display: none !important; }

/* ===========================================
   Not-Found Box — Redesign
   =========================================== */

.not-found-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 18px !important;
    padding: 36px 24px !important;
    margin: 20px 16px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 16px !important;
}

.nf-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 183, 77, 0.08);
    border: 1px solid rgba(255, 183, 77, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB74D;
    flex-shrink: 0;
}

.nf-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.not-found-text {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.not-found-btn {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 20px !important;
    background: rgba(71, 153, 235, 0.1) !important;
    border: 1px solid rgba(71, 153, 235, 0.28) !important;
    color: #4799EB !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    box-shadow: none !important;
    transition: background 0.2s, border-color 0.2s, transform 0.2s !important;
}

.not-found-btn:hover {
    background: rgba(71, 153, 235, 0.18) !important;
    border-color: rgba(71, 153, 235, 0.45) !important;
    transform: translateY(-1px) !important;
}