Secure PDF Download · Verification required
:root {
–cf-orange: #f6821f;
–cf-border: #d1d1d1;
–cf-bg: #ffffff;
–primary: #0051c3;
–text-dark: #333;
–success: #10b981;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Helvetica, Arial, sans-serif;
}
body {
background: #f0f2f5;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
/* — Main Document Card — */
.pdf-card {
max-width: 850px;
width: 100%;
background: white;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
overflow: hidden;
border: 1px solid #e1e4e8;
}
.header {
display: flex;
align-items: center;
gap: 15px;
padding: 20px 30px;
border-bottom: 1px solid #eee;
background: #fff;
}
.header i.pdf-icon {
font-size: 38px;
color: #d32f2f;
}
.header-info h1 {
font-size: 20px;
font-weight: 600;
color: #1f2937;
margin-bottom: 4px;
}
.header-info p {
font-size: 13px;
color: #6b7280;
}
.preview-area {
background: #525659;
padding: 40px;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
min-height: 400px;
position: relative;
}
.page {
width: 100%;
max-width: 600px;
background: white;
min-height: 700px;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
position: relative;
padding: 50px;
}
.blur-overlay {
position: absolute;
top: 250px;
left: 0;
width: 100%;
bottom: 0;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(8px);
display: flex;
justify-content: center;
align-items: center;
z-index: 10;
}
.lock-message {
background: rgba(30, 41, 59, 0.9);
color: white;
padding: 12px 24px;
border-radius: 30px;
font-size: 14px;
font-weight: 500;
display: flex;
align-items: center;
gap: 10px;
}
.mock-text {
height: 12px;
background: #e5e7eb;
margin-bottom: 12px;
border-radius: 2px;
}
.w-100 { width: 100%; }
.w-80 { width: 80%; }
.w-90 { width: 90%; }
.w-60 { width: 60%; }
.mock-title {
height: 24px;
width: 70%;
background: #1f2937;
margin-bottom: 30px;
border-radius: 4px;
}
.footer-bar {
padding: 20px;
background: white;
border-top: 1px solid #eee;
display: flex;
justify-content: space-between;
align-items: center;
}
.btn-download {
background: var(–primary);
color: white;
border: none;
padding: 12px 32px;
border-radius: 6px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
transition: background 0.2s;
}
/* — OVERLAYS — */
.overlay {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0,0,0,0.7);
backdrop-filter: blur(5px);
z-index: 999;
display: none;
justify-content: center;
align-items: center;
}
/* — AUTHENTIC CLOUDFLARE TURNSTILE — */
.cf-turnstile-container {
background: #ffffff;
width: 300px;
height: 65px;
border: 1px solid var(–cf-border);
border-radius: 3px;
display: none;
flex-direction: row;
align-items: center;
padding: 0 12px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
user-select: none;
cursor: pointer;
}
.cf-checkbox-wrapper {
display: flex;
align-items: center;
flex-grow: 1;
}
.cf-checkbox-square {
width: 28px;
height: 28px;
border: 2px solid #c1c1c1;
border-radius: 3px;
background: #fff;
margin-right: 14px;
display: flex;
align-items: center;
justify-content: center;
transition: border-color 0.2s;
}
.cf-checkbox-square:hover {
border-color: #888;
}
.cf-label-text {
font-size: 14px;
color: #333;
font-family: -apple-system, system-ui, sans-serif;
font-weight: 400;
}
.cf-logo-box {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 80%;
padding-left: 12px;
border-left: 1px solid #f1f1f1;
}
.cf-logo-box i {
color: var(–cf-orange);
font-size: 24px;
}
.cf-logo-text {
font-size: 10px;
color: #555;
font-weight: 600;
margin-top: 1px;
}
.cf-privacy-link {
font-size: 8px;
color: #999;
margin-top: 1px;
}
/* Loading Spinner */
.cf-spinner {
width: 16px;
height: 16px;
border: 2px solid rgba(0,0,0,0.1);
border-top: 2px solid #555;
border-radius: 50%;
animation: cf-spin 0.8s linear infinite;
display: none;
}
.cf-check-mark {
color: #1a73e8;
font-size: 18px;
display: none;
}
@keyframes cf-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
/* — INSTRUCTION MODAL — */
.instruction-modal {
background: white;
width: 95%;
max-width: 480px;
border-radius: 16px;
overflow: hidden;
display: none;
box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.modal-header {
padding: 24px 24px 10px;
text-align: center;
}
.modal-body {
padding: 20px 30px 30px;
}
.step-list {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 24px;
}
.step-item {
display: flex;
align-items: center;
gap: 12px;
background: #f8fafc;
border: 1px solid #e2e8f0;
padding: 12px;
border-radius: 10px;
}
.step-num {
background: #3b82f6;
color: white;
width: 24px; height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 12px;
}
.key-badge {
background: #e2e8f0;
padding: 2px 6px;
border-radius: 4px;
font-family: monospace;
font-size: 13px;
font-weight: bold;
}
/* — VERIFICATION INPUT — */
.verification-container {
border-top: 1px solid #eee;
padding-top: 20px;
}
.input-group {
position: relative;
margin-bottom: 15px;
}
.input-group input {
width: 100%;
padding: 14px 16px;
border: 2px solid #cbd5e1;
border-radius: 8px;
font-size: 16px;
font-family: monospace;
letter-spacing: 2px;
transition: all 0.2s;
outline: none;
}
.input-group input:focus {
border-color: var(–primary);
box-shadow: 0 0 0 4px rgba(0, 81, 195, 0.1);
}
.input-group input.error {
border-color: #ef4444;
animation: shake 0.4s ease-in-out;
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-5px); }
75% { transform: translateX(5px); }
}
.btn-verify {
width: 100%;
padding: 14px;
background: var(–success);
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: 0.2s;
}
.btn-verify:hover { background: #059669; }
.secure-badge {
text-align: center;
margin-top: 15px;
font-size: 12px;
color: #94a3b8;
display: flex;
justify-content: center;
align-items: center;
gap: 6px;
}
Cloudflare
Privacy · Terms
Code copied to clipboard automatically