.content-page { max-width: 1100px; margin: 0 auto; padding: 60px 40px 100px; }
.content-page-narrow { max-width: 740px; margin: 0 auto; padding: 0 24px 80px; }

.lore-strip { position: relative; overflow: hidden; min-height: 80px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 28px 20px; border-bottom: 1px solid rgba(0,168,232,0.1); }
.lore-strip-bg { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(0,52,89,0.2) 50%, transparent 100%); }
.lore-content { position: relative; z-index: 1; }
.lore-quote { font-size: clamp(0.9rem, 2.5vw, 1.1rem); color: rgba(255,255,255,0.5); font-style: italic; font-weight: 300; letter-spacing: 1px; margin-bottom: 6px; }
.lore-quote em { color: var(--blue); font-style: normal; }
.lore-attr { font-size: 0.55rem; letter-spacing: 5px; color: rgba(0,168,232,0.3); font-weight: 700; }

.page-hero { margin-bottom: 48px; padding-top: 52px; }

.stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.stat-block { background: rgba(0,52,89,0.15); border: 1px solid rgba(0,168,232,0.1); border-radius: 12px; padding: 20px; text-align: center; }
.stat-val { font-family: 'Orbitron', sans-serif; font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 900; color: var(--blue); text-shadow: var(--glow); margin-bottom: 6px; }
.stat-lbl { font-size: 0.55rem; letter-spacing: 2px; color: rgba(255,255,255,0.35); font-weight: 700; }

.play-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 60px; }
.step-card { display: flex; gap: 24px; align-items: flex-start; background: rgba(0,20,35,0.6); border: 1px solid rgba(0,168,232,0.1); border-radius: 12px; padding: 24px; opacity: 0; transform: translateX(-20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.step-card.revealed { opacity: 1; transform: none; }
.step-num { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900; color: rgba(0,168,232,0.15); flex-shrink: 0; line-height: 1; min-width: 50px; }
.step-tag { font-size: 0.55rem; letter-spacing: 4px; color: rgba(0,168,232,0.4); font-weight: 700; margin-bottom: 8px; }
.step-text { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.step-text strong { color: var(--white); }
.step-text:last-child { margin-bottom: 0; }
.btn-action { display: inline-flex; align-items: center; padding: 10px 22px; border-radius: 6px; font-family: 'Exo 2', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-decoration: none; cursor: pointer; transition: all 0.3s; border: 1px solid; }
.btn-workshop { background: rgba(0,52,89,0.3); border-color: rgba(0,168,232,0.25); color: rgba(0,168,232,0.8); }
.btn-workshop:hover { background: rgba(0,52,89,0.6); border-color: var(--blue); box-shadow: 0 0 16px rgba(0,168,232,0.2); }
.btn-connect { background: linear-gradient(135deg, var(--deep), #005a8a); border-color: rgba(0,168,232,0.35); color: var(--white); }
.btn-connect:hover { border-color: var(--blue); box-shadow: 0 0 20px rgba(0,168,232,0.25); transform: translateY(-1px); }

.revealed-target { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.revealed-target.revealed { opacity: 1; transform: none; }

.classified-wrap { position: relative; min-height: calc(100vh - 72px); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 20px; }
.classified-bg { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,0,0,0.015) 0px, rgba(255,0,0,0.015) 1px, transparent 1px, transparent 8px), repeating-linear-gradient(90deg, rgba(255,0,0,0.01) 0px, rgba(255,0,0,0.01) 1px, transparent 1px, transparent 8px), radial-gradient(ellipse at 50% 50%, rgba(80,0,0,0.25) 0%, transparent 70%); }
.classified-noise { position: absolute; inset: 0; pointer-events: none; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); animation: noiseShift 0.15s steps(1) infinite; }
@keyframes noiseShift { 0% { background-position: 0 0; } 25% { background-position: 10px -5px; } 50% { background-position: -8px 12px; } 75% { background-position: 5px 8px; } 100% { background-position: -3px -10px; } }
.classified-scanbar { position: absolute; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, rgba(255,30,30,0.35), rgba(255,80,80,0.5), rgba(255,30,30,0.35), transparent); box-shadow: 0 0 20px rgba(255,0,0,0.3); animation: clsScan 4s linear infinite; z-index: 2; }
@keyframes clsScan { 0% { top: 0%; opacity: 0; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
.classified-content { position: relative; z-index: 3; max-width: 600px; width: 100%; text-align: center; padding: clamp(30px, 5vw, 60px) clamp(20px, 5vw, 50px); background: rgba(8,0,0,0.6); border: 1px solid rgba(255,30,30,0.15); border-radius: 4px; backdrop-filter: blur(8px); }
.cls-corner { position: absolute; width: 20px; height: 20px; border-color: rgba(255,40,40,0.5); border-style: solid; }
.cls-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.cls-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.cls-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.cls-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.cls-stamp { display: inline-block; margin-bottom: 32px; }
.cls-stamp-inner { font-family: 'Orbitron', sans-serif; font-size: clamp(1rem, 4vw, 1.6rem); font-weight: 900; letter-spacing: 12px; color: rgba(220,30,30,0.75); border: 3px solid rgba(220,30,30,0.4); padding: 8px 24px; border-radius: 4px; display: flex; align-items: center; gap: 14px; transform: rotate(-2deg); box-shadow: 0 0 30px rgba(220,0,0,0.1); animation: stampFlicker 5s infinite; position: relative; }
.cls-stamp-inner::before { content: ''; position: absolute; inset: 3px; border: 1px solid rgba(220,30,30,0.15); border-radius: 2px; }
@keyframes stampFlicker { 0%,100% { opacity: 1; } 92% { opacity: 1; } 93% { opacity: 0.6; } 94% { opacity: 1; } 96% { opacity: 0.7; } 97% { opacity: 1; } }
.cls-stamp-lines { display: flex; flex-direction: column; gap: 4px; }
.cls-stamp-lines div { width: 18px; height: 2px; background: rgba(220,30,30,0.5); border-radius: 1px; }
.cls-icon { margin-bottom: 20px; opacity: 0.7; animation: iconPulse 3s ease-in-out infinite; }
@keyframes iconPulse { 0%,100% { filter: drop-shadow(0 0 6px rgba(0,168,232,0.4)); } 50% { filter: drop-shadow(0 0 18px rgba(0,168,232,0.7)); } }
.cls-eyebrow { font-size: 0.58rem; letter-spacing: 5px; color: rgba(255,80,80,0.5); font-weight: 700; margin-bottom: 12px; }
.cls-title { font-family: 'Orbitron', sans-serif; font-size: clamp(1.4rem, 4vw, 1.8rem); font-weight: 900; letter-spacing: 5px; color: var(--white); margin-bottom: 4px; }
.cls-subtitle { font-family: 'Orbitron', sans-serif; font-size: 0.8rem; letter-spacing: 6px; color: rgba(255,80,80,0.6); margin-bottom: 28px; font-weight: 700; }
.cls-desc { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.9; margin-bottom: 30px; }
.cls-progress-box { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 18px 20px; margin-bottom: 24px; text-align: left; }
.cls-prog-label { display: flex; justify-content: space-between; font-size: 0.6rem; letter-spacing: 2px; font-weight: 700; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.cls-prog-pct { color: var(--blue); font-family: 'Orbitron', sans-serif; font-size: 0.75rem; }
.cls-prog-bar { height: 6px; background: rgba(0,0,0,0.5); border-radius: 3px; overflow: hidden; position: relative; margin-bottom: 12px; }
.cls-prog-fill { height: 100%; background: linear-gradient(90deg, var(--deep), var(--blue)); border-radius: 3px; }
.cls-prog-glow { position: absolute; right: 38%; top: 0; bottom: 0; width: 8px; background: rgba(255,255,255,0.5); filter: blur(2px); animation: progShimmer 1.5s ease-in-out infinite; }
@keyframes progShimmer { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.cls-prog-stages { display: flex; justify-content: space-between; font-size: 0.48rem; letter-spacing: 1.5px; font-weight: 700; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 4px; }
.cls-prog-stages .done { color: rgba(0,168,232,0.6); }
.cls-prog-stages .active { color: var(--blue); text-shadow: 0 0 8px var(--blue); animation: stampFlicker 3s infinite; }
.cls-code { font-family: 'Orbitron', monospace; font-size: 0.55rem; letter-spacing: 3px; color: rgba(0,168,232,0.35); transition: opacity 0.2s; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.04); }

.donate-page-wrap { max-width: 660px; margin: 0 auto; padding: 0 16px 80px; }
.donate-hero { text-align: center; padding: 52px 0 36px; }
.donate-hero-sub { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-top: 12px; letter-spacing: 1px; }

.donate-pay-card { background: linear-gradient(145deg, rgba(0,20,35,0.95) 0%, rgba(0,10,18,0.98) 100%); border: 1px solid rgba(0,168,232,0.2); border-radius: 16px; overflow: hidden; box-shadow: 0 0 60px rgba(0,168,232,0.07); position: relative; }
.donate-pay-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--blue), transparent); opacity: 0.6; }

.dpay-section { padding: clamp(20px, 4vw, 28px) clamp(16px, 4vw, 32px); }
.dpay-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(0,168,232,0.12), transparent); }
.dpay-label { font-size: 0.55rem; letter-spacing: 5px; color: rgba(0,168,232,0.4); font-weight: 700; margin-bottom: 16px; }

.dpay-currency-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.dpay-rate-badge { background: rgba(0,168,232,0.1); border: 1px solid rgba(0,168,232,0.25); border-radius: 6px; padding: 5px 14px; font-family: 'Orbitron', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--blue); letter-spacing: 2px; }
.dpay-min-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

.dpay-presets { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.dpay-preset { background: rgba(0,52,89,0.2); border: 1px solid rgba(0,168,232,0.12); border-radius: 8px; padding: 10px 14px; color: rgba(255,255,255,0.65); cursor: pointer; font-family: 'Exo 2', sans-serif; font-size: 0.88rem; font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 3px; transition: all 0.2s; flex: 1; min-width: 70px; }
.dpay-preset span { font-size: 0.6rem; color: rgba(0,168,232,0.45); font-weight: 400; white-space: nowrap; }
.dpay-preset:hover, .dpay-preset.active { background: rgba(0,52,89,0.5); border-color: rgba(0,168,232,0.5); color: var(--white); box-shadow: 0 0 12px rgba(0,168,232,0.12); }
.dpay-preset-featured { border-color: rgba(255,107,0,0.3); background: rgba(40,18,0,0.4); color: rgba(255,160,80,0.9); position: relative; }
.dpay-preset-featured span { color: rgba(255,107,0,0.45); }
.dpay-preset-featured:hover, .dpay-preset-featured.active { border-color: rgba(255,107,0,0.6); box-shadow: 0 0 12px rgba(255,107,0,0.18); }

.dpay-custom-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.dpay-input-wrap { position: relative; flex: 1; min-width: 140px; }
.dpay-input { width: 100%; background: rgba(0,0,0,0.5); border: 1px solid rgba(0,168,232,0.18); border-radius: 8px; padding: 12px 56px 12px 16px; color: var(--white); font-family: 'Exo 2', sans-serif; font-size: 0.95rem; font-weight: 600; outline: none; transition: border-color 0.2s, box-shadow 0.2s; -moz-appearance: textfield; }
.dpay-input::-webkit-inner-spin-button, .dpay-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.dpay-input:focus { border-color: rgba(0,168,232,0.5); box-shadow: 0 0 0 3px rgba(0,168,232,0.07); }
.dpay-input-suffix { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-family: 'Orbitron', sans-serif; font-size: 0.52rem; font-weight: 700; color: rgba(0,168,232,0.35); letter-spacing: 2px; pointer-events: none; }
.dpay-total { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.dpay-total-label { font-size: 0.58rem; color: rgba(255,255,255,0.3); letter-spacing: 2px; }
.dpay-total-val { font-family: 'Orbitron', sans-serif; font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 700; color: var(--white); }

.dpay-hint-text { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 14px; }
.dpay-id-example { color: rgba(0,168,232,0.85); font-family: monospace; letter-spacing: 0.5px; }
.dpay-steam-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.dpay-steam-input { font-family: 'Orbitron', sans-serif !important; letter-spacing: 1px; padding-right: 16px !important; }
.dpay-steam-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; color: rgba(0,168,232,0.55); text-decoration: none; white-space: nowrap; transition: color 0.2s; flex-shrink: 0; }
.dpay-steam-link:hover { color: var(--blue); }
.dpay-steam-status { font-size: 0.72rem; min-height: 20px; transition: all 0.2s; margin-top: 4px; }
.dpay-steam-status.ok { color: rgba(0,210,100,0.8); }
.dpay-steam-status.err { color: rgba(255,70,70,0.8); }

.dpay-consent { display: flex; align-items: flex-start; gap: 12px; padding: 13px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); background: rgba(0,0,0,0.22); cursor: pointer; margin-bottom: 10px; transition: border-color 0.2s; user-select: none; }
.dpay-consent:hover { border-color: rgba(0,168,232,0.18); }
.dpay-consent.checked { border-color: rgba(0,200,100,0.25); }
.dpay-consent.error { border-color: rgba(255,60,60,0.35); }
.dpay-check { width: 20px; height: 20px; border: 1.5px solid rgba(0,168,232,0.3); border-radius: 5px; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all 0.15s; background: rgba(0,0,0,0.4); }
.dpay-check.active { background: #1a7f64; border-color: #1a7f64; }
.dpay-checkmark { display: none; }
.dpay-check.active .dpay-checkmark { display: block; }
.dpay-consent-text { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.dpay-consent-text a { color: rgba(0,168,232,0.65); text-decoration: none; }
.dpay-consent-text a:hover { color: var(--blue); text-decoration: underline; }
.dpay-err { font-size: 0.72rem; color: rgba(255,80,80,0.8); min-height: 20px; padding: 0 2px; }

.dpay-footer { padding: 0 clamp(16px, 4vw, 32px) clamp(20px, 4vw, 28px); }
.dpay-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px; background: linear-gradient(135deg, var(--deep) 0%, #005a8a 100%); border: 1px solid rgba(0,168,232,0.35); border-radius: 8px; color: var(--white); font-family: 'Exo 2', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,52,89,0.4); margin-bottom: 16px; }
.dpay-btn:hover { border-color: var(--blue); box-shadow: 0 4px 28px rgba(0,168,232,0.25); transform: translateY(-1px); }
.dpay-btn:active { transform: scale(0.99); }
.dpay-secure { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 0.6rem; color: rgba(255,255,255,0.18); text-align: center; line-height: 1.7; flex-wrap: wrap; }

.doc-modal-overlay { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.9); backdrop-filter: blur(20px); align-items: center; justify-content: center; padding: 16px; }
.doc-modal-overlay.open { display: flex; animation: fadeIn 0.25s ease; }
.doc-modal-box { background: linear-gradient(145deg, #0a1a28 0%, #000e18 100%); border: 1px solid rgba(0,168,232,0.22); border-radius: 16px; width: 100%; max-width: 660px; max-height: 88vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 0 60px rgba(0,168,232,0.1); animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.doc-modal-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; border-bottom: 1px solid rgba(0,168,232,0.1); flex-shrink: 0; }
.doc-modal-title { font-family: 'Orbitron', sans-serif; font-size: clamp(0.6rem, 2vw, 0.8rem); font-weight: 700; letter-spacing: 3px; color: var(--blue); }
.doc-modal-close { width: 30px; height: 30px; background: rgba(0,52,89,0.3); border: 1px solid rgba(0,168,232,0.15); border-radius: 50%; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.doc-modal-close:hover { background: rgba(0,52,89,0.6); color: var(--white); }
.doc-modal-body { overflow-y: auto; padding: clamp(16px, 3vw, 24px); flex: 1; font-family: 'Exo 2', sans-serif; }
.doc-modal-body h2 { font-family: 'Orbitron', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; color: var(--blue); margin: 1.5em 0 0.6em; padding-bottom: 6px; border-bottom: 1px solid rgba(0,168,232,0.1); }
.doc-modal-body h3 { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.65); margin: 1em 0 0.4em; letter-spacing: 1px; }
.doc-modal-body p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 0.5em; }
.doc-modal-body ul { padding-left: 1.3em; margin-bottom: 0.5em; }
.doc-modal-body li { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 3px; }
.doc-modal-body .doc-info-row { display: flex; gap: 8px; padding: 7px 0; border-bottom: 1px solid rgba(0,168,232,0.07); font-size: 0.8rem; flex-wrap: wrap; }
.doc-modal-body .doc-info-label { color: rgba(0,168,232,0.4); min-width: 130px; font-weight: 600; letter-spacing: 1px; flex-shrink: 0; }
.doc-modal-body .doc-info-val { color: rgba(255,255,255,0.6); }
.doc-modal-body .doc-title-block { background: rgba(0,52,89,0.18); border: 1px solid rgba(0,168,232,0.1); border-radius: 8px; padding: 14px 18px; margin-bottom: 20px; }
.doc-modal-body .doc-title-block .big { font-family: 'Orbitron', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); letter-spacing: 2px; margin-bottom: 5px; }
.doc-modal-body .doc-title-block p { font-size: 0.7rem; color: rgba(0,168,232,0.35); margin: 0; }
.doc-modal-footer { padding: 14px 22px; border-top: 1px solid rgba(0,168,232,0.1); flex-shrink: 0; }
.doc-modal-footer button { width: 100%; padding: 12px; background: linear-gradient(135deg, var(--deep), #005a8a); border: 1px solid rgba(0,168,232,0.3); border-radius: 6px; color: var(--white); font-family: 'Exo 2', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; cursor: pointer; transition: all 0.25s; }
.doc-modal-footer button:hover { border-color: var(--blue); box-shadow: 0 0 16px rgba(0,168,232,0.2); }

.site-footer { border-top: 1px solid rgba(0,168,232,0.1); background: rgba(0,5,12,0.97); position: relative; z-index: 10; display: block; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,168,232,0.35), transparent); }
.footer-inner { max-width: 1000px; margin: 0 auto; padding: 32px clamp(16px, 4vw, 40px) 24px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 34px; height: 34px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(0,168,232,0.35)); opacity: 0.75; }
.footer-brand-name { font-family: 'Orbitron', sans-serif; font-size: 0.95rem; font-weight: 900; letter-spacing: 5px; color: rgba(255,255,255,0.65); }
.footer-brand-sub { font-size: 0.52rem; letter-spacing: 2px; color: rgba(0,168,232,0.28); margin-top: 2px; font-weight: 600; }
.footer-meta { display: flex; flex-direction: column; gap: 6px; }
.footer-meta-row { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; color: rgba(255,255,255,0.38); }
.footer-meta-label { font-size: 0.52rem; letter-spacing: 3px; color: rgba(0,168,232,0.28); font-weight: 700; min-width: 70px; }
.footer-meta-row a { color: rgba(0,168,232,0.45); text-decoration: none; transition: color 0.2s; }
.footer-meta-row a:hover { color: var(--blue); }
.footer-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(0,168,232,0.08), transparent); margin-bottom: 18px; }
.footer-legal { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.62rem; color: rgba(255,255,255,0.18); letter-spacing: 0.5px; }
.footer-legal-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(0,168,232,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(0,168,232,0.65); }
.footer-sep { color: rgba(255,255,255,0.1); }

@media (max-width: 768px) {
  .content-page { padding: 40px 20px 80px; }
  .content-page-narrow { padding: 0 16px 60px; }
  .stats-strip { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat-val { font-size: 1.4rem; }
  .step-card { gap: 16px; padding: 18px; }
  .step-num { font-size: 1.5rem; min-width: 36px; }
  .dpay-section { padding: 20px 18px; }
  .dpay-presets { gap: 6px; }
  .dpay-preset { padding: 8px 10px; font-size: 0.78rem; }
  .dpay-input-row { flex-direction: column; align-items: stretch; }
  .dpay-total-display { flex-direction: row; align-items: center; justify-content: space-between; padding-top: 4px; }
  .dpay-steamid-wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
  .dpay-steam-input { width: 100%; }
  .dpay-btn { width: calc(100% - 36px); margin: 0 18px 16px; }
  .dpay-secure { padding: 0 18px 20px; font-size: 0.55rem; }
  .footer-inner { padding: 24px 20px 18px; }
  .footer-top { flex-direction: column; gap: 20px; }
  .footer-brand-name { font-size: 0.85rem; letter-spacing: 3px; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 8px; }
  .doc-modal-box { max-height: 92vh; border-radius: 12px; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr; }
  .dpay-presets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .dpay-rate-badge { font-size: 0.6rem; padding: 4px 10px; }
  .classified-content { padding: 28px 18px; }
  .cls-stamp-inner { font-size: 0.9rem; letter-spacing: 6px; gap: 8px; }
  .doc-modal-body .doc-info-label { min-width: 90px; }
  .doc-modal-body { padding: 16px; }
  .lore-quote { font-size: clamp(0.9rem, 3.5vw, 1.2rem); }
}
