/* PQ PDF Tools — Moved page */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #040810;
    color: #f0e6d3;
    min-height: 100vh;
    overflow: hidden;
}

/* ── canvas background ── */
#moved-bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ── content layer ── */
.moved-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

/* ── card ── */
.moved-card {
    background: rgba(12, 21, 37, 0.72);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 16px;
    padding: 3rem 3.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 60px rgba(255, 140, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 480px;
    width: 100%;
    animation: cardIn 0.6s ease both;
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.moved-icon {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    display: block;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1)    rotate(-2deg); }
    50%       { transform: scale(1.08) rotate(2deg);  }
}

.moved-heading {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8c00, #ffd700, #ff8c00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: gradShift 4s ease-in-out infinite;
}

@keyframes gradShift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.moved-subtitle {
    font-size: 1rem;
    color: #a89070;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.moved-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.45rem;
    font-weight: 700;
    color: #ff8c00;
    text-decoration: none;
    margin: 1.1rem 0;
    border-bottom: 2px solid rgba(255, 140, 0, 0.35);
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.moved-link::after {
    content: '→';
    display: inline-block;
    transition: transform 0.2s ease;
}

.moved-link:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
    gap: 0.8rem;
}

.moved-link:hover::after {
    transform: translateX(4px);
}

/* ── progress bar ── */
.moved-progress-wrap {
    width: 100%;
    height: 3px;
    background: rgba(255, 140, 0, 0.12);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1.8rem;
}

.moved-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    border-radius: 2px;
    width: 100%;
    transform-origin: left;
    animation: drainBar 5s linear forwards;
}

@keyframes drainBar {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

.moved-countdown {
    font-size: 0.875rem;
    color: #5a4a38;
    margin-top: 0.75rem;
}

@media (max-width: 520px) {
    .moved-card    { padding: 2rem 1.5rem; }
    .moved-heading { font-size: 1.6rem; }
    .moved-link    { font-size: 1.2rem; }
}
