:root {
--ma-bg: #1e1e2e;
--ma-bg-elevated: #241935;
--ma-bg-input: #12121a;
--ma-bg-modal: #1a1a28;
--ma-overlay: rgba(0, 0, 0, 0.75);
--ma-border: #2a2a3e;
--ma-border-focus: #bb86fc;
--ma-text: #e0e0e0;
--ma-text-muted: #666680;
--ma-text-dim: #888;
--ma-accent: #bb86fc;
--ma-accent-hover: #d4a5ff;
--ma-accent-text: #000;
--ma-accent-soft: rgba(187, 134, 252, 0.12);
--ma-success: #4CAF50;
--ma-error: #f44336;
--ma-warning: #FF9800;
--ma-radius: 14px;
--ma-radius-sm: 8px;
--ma-radius-xs: 6px;
--ma-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
--ma-shadow-glow: 0 0 24px rgba(187, 134, 252, 0.15);
--ma-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
} .mangaauth-overlay {
position: fixed;
inset: 0;
background: var(--ma-overlay);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
padding: 12px;
opacity: 0;
transition: opacity 0.25s ease;
font-family: var(--ma-font);
box-sizing: border-box;
}
.mangaauth-overlay * { box-sizing: border-box; }
.mangaauth-overlay.mangaauth-visible { opacity: 1; }
.mangaauth-modal {
background: var(--ma-bg-modal);
border: 1px solid var(--ma-border);
border-radius: var(--ma-radius);
width: 100%;
max-width: 420px;
max-height: 92vh;
overflow-y: auto;
overflow-x: hidden;
position: relative;
padding: 22px 18px;
color: var(--ma-text);
font-size: 14px;
transform: translateY(20px) scale(0.96);
transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
box-shadow: var(--ma-shadow); scrollbar-width: thin;
scrollbar-color: var(--ma-border) transparent;
}
.mangaauth-modal::-webkit-scrollbar { width: 6px; }
.mangaauth-modal::-webkit-scrollbar-track { background: transparent; }
.mangaauth-modal::-webkit-scrollbar-thumb { background: var(--ma-border); border-radius: 3px; }
.mangaauth-visible .mangaauth-modal { transform: translateY(0) scale(1); }
.mangaauth-close {
position: absolute;
top: 10px;
right: 10px;
background: rgba(255, 255, 255, 0.04);
border: none;
color: var(--ma-text);
width: 32px;
height: 32px;
border-radius: 50%;
font-size: 22px;
line-height: 1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.18s;
z-index: 2;
font-family: var(--ma-font);
}
.mangaauth-close:hover, .mangaauth-close:active {
background: rgba(255, 255, 255, 0.1);
transform: rotate(90deg);
} .mangaauth-form-container { display: none; animation: maFade 0.3s ease; }
.mangaauth-form-container.active { display: block; }
@keyframes maFade {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
.mangaauth-header {
text-align: center;
margin-bottom: 18px;
}
.mangaauth-logo-icon {
width: 56px;
height: 56px;
background: linear-gradient(135deg, var(--ma-accent) 0%, #8b5cf6 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 12px;
color: #fff;
box-shadow: var(--ma-shadow-glow);
}
.mangaauth-logo-icon svg { width: 26px; height: 26px; }
.mangaauth-header h2 {
margin: 0 0 4px;
color: var(--ma-text);
font-size: 22px;
font-weight: 700;
letter-spacing: -0.01em;
}
.mangaauth-subtitle {
margin: 0;
color: var(--ma-text-muted);
font-size: 13px;
} .mangaauth-notification {
padding: 10px 14px;
border-radius: var(--ma-radius-sm);
margin-bottom: 14px;
font-size: 13px;
display: flex;
align-items: center;
gap: 8px;
animation: maFade 0.25s ease;
}
.mangaauth-notification.mangaauth-notif-success {
background: rgba(76, 175, 80, 0.12);
color: var(--ma-success);
border: 1px solid rgba(76, 175, 80, 0.3);
}
.mangaauth-notification.mangaauth-notif-error {
background: rgba(244, 67, 54, 0.12);
color: var(--ma-error);
border: 1px solid rgba(244, 67, 54, 0.3);
}
.mangaauth-notification.mangaauth-notif-warning,
.mangaauth-notification.mangaauth-notif-info {
background: var(--ma-accent-soft);
color: var(--ma-accent);
border: 1px solid rgba(187, 134, 252, 0.3);
}
.mangaauth-notif-icon { font-size: 16px; flex-shrink: 0; }
.mangaauth-notif-text { flex: 1; word-break: break-word; } .mangaauth-oauth-buttons {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 14px;
}
.mangaauth-oauth-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 11px 16px;
background: var(--ma-bg-input);
border: 1px solid var(--ma-border);
border-radius: var(--ma-radius-sm);
color: var(--ma-text);
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: all 0.18s;
cursor: pointer;
font-family: var(--ma-font);
}
.mangaauth-oauth-btn:hover, .mangaauth-oauth-btn:active {
background: rgba(255, 255, 255, 0.04);
border-color: var(--ma-accent);
transform: translateY(-1px);
}
.mangaauth-discord-btn:hover { border-color: #5865F2; }
.mangaauth-oauth-btn svg { flex-shrink: 0; } .mangaauth-divider {
display: flex;
align-items: center;
margin: 14px 0;
color: var(--ma-text-muted);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.mangaauth-divider::before,
.mangaauth-divider::after {
content: '';
flex: 1;
height: 1px;
background: var(--ma-border);
}
.mangaauth-divider span { padding: 0 12px; } .mangaauth-form {
display: flex;
flex-direction: column;
gap: 12px;
}
.mangaauth-field {
display: flex;
flex-direction: column;
gap: 5px;
}
.mangaauth-field label {
color: var(--ma-text-muted);
font-size: 12px;
font-weight: 600;
margin-left: 2px;
}
.mangaauth-input-wrap {
position: relative;
display: flex;
align-items: center;
background: var(--ma-bg-input);
border: 1px solid var(--ma-border);
border-radius: var(--ma-radius-sm);
transition: border-color 0.18s, background 0.18s;
overflow: hidden;
}
.mangaauth-input-wrap:focus-within {
border-color: var(--ma-border-focus);
background: rgba(187, 134, 252, 0.03);
}
.mangaauth-input-icon {
position: absolute;
left: 12px;
color: var(--ma-text-muted);
pointer-events: none;
flex-shrink: 0;
transition: color 0.18s;
}
.mangaauth-input-wrap:focus-within .mangaauth-input-icon {
color: var(--ma-accent);
}
.mangaauth-input-wrap input {
flex: 1;
width: 100%;
padding: 11px 14px 11px 40px;
background: transparent;
border: none;
color: var(--ma-text);
font-size: 14px;
outline: none;
font-family: var(--ma-font);
}
.mangaauth-input-wrap input::placeholder {
color: var(--ma-text-muted);
}
.mangaauth-toggle-pw {
position: absolute;
right: 10px;
background: none;
border: none;
color: var(--ma-text-muted);
cursor: pointer;
padding: 6px;
border-radius: 4px;
transition: color 0.18s;
display: flex;
align-items: center;
}
.mangaauth-toggle-pw:hover { color: var(--ma-accent); } .mangaauth-pw-strength {
margin-top: 4px;
}
.mangaauth-pw-bar {
height: 4px;
background: var(--ma-bg-input);
border-radius: 2px;
overflow: hidden;
margin-bottom: 4px;
}
.mangaauth-pw-fill {
height: 100%;
width: 0;
background: var(--ma-error);
transition: width 0.25s, background 0.25s;
border-radius: 2px;
}
.mangaauth-pw-fill.pw-weak { background: var(--ma-error); width: 25%; }
.mangaauth-pw-fill.pw-fair { background: var(--ma-warning); width: 50%; }
.mangaauth-pw-fill.pw-good { background: #fdcb6e; width: 75%; }
.mangaauth-pw-fill.pw-strong { background: var(--ma-success); width: 100%; }
.mangaauth-pw-strength { display: none; }
.mangaauth-pw-strength.active { display: block; }
.mangaauth-pw-label {
font-size: 11px;
color: var(--ma-text-muted);
margin-left: 2px;
} .mangaauth-extras {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 8px;
margin: -2px 0 4px;
}
.mangaauth-remember {
display: flex;
align-items: center;
gap: 6px;
cursor: pointer;
color: var(--ma-text-muted);
font-size: 12px;
user-select: none;
}
.mangaauth-remember input[type="checkbox"] {
width: 14px;
height: 14px;
accent-color: var(--ma-accent);
cursor: pointer;
}
.mangaauth-forgot-link {
color: var(--ma-accent);
text-decoration: none;
font-size: 12px;
transition: color 0.18s;
}
.mangaauth-forgot-link:hover { color: var(--ma-accent-hover); text-decoration: underline; } .mangaauth-recaptcha-wrap {
display: flex;
justify-content: center;
margin: 4px 0;
min-height: 0;
transform: scale(0.92);
transform-origin: center;
}
@media (max-width: 360px) {
.mangaauth-recaptcha-wrap { transform: scale(0.82); transform-origin: center; }
} .mangaauth-submit-btn {
background: var(--ma-accent);
color: var(--ma-accent-text);
border: none;
padding: 12px 16px;
border-radius: var(--ma-radius-sm);
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: all 0.18s;
margin-top: 4px;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
min-height: 44px;
font-family: var(--ma-font);
letter-spacing: 0.01em;
}
.mangaauth-submit-btn:hover:not(:disabled),
.mangaauth-submit-btn:active:not(:disabled) {
background: var(--ma-accent-hover);
transform: translateY(-1px);
box-shadow: var(--ma-shadow-glow);
}
.mangaauth-submit-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.mangaauth-btn-loading { display: none; }
.mangaauth-submit-btn.loading .mangaauth-btn-text { display: none; }
.mangaauth-submit-btn.loading .mangaauth-btn-loading { display: flex; align-items: center; gap: 6px; }
.mangaauth-resend-verify {
width: 100%;
margin-top: 10px;
padding: 10px 14px;
border: 1px solid var(--ma-accent);
border-radius: var(--ma-radius-sm);
background: transparent;
color: var(--ma-accent);
font: 600 13px/1.35 var(--ma-font);
cursor: pointer;
transition: background-color .18s, color .18s, opacity .18s;
}
.mangaauth-resend-verify:hover:not(:disabled) {
background: var(--ma-accent);
color: var(--ma-accent-text);
}
.mangaauth-resend-verify:disabled { opacity: .55; cursor: wait; }
.mangaauth-spinner {
width: 16px;
height: 16px;
border: 2px solid rgba(0, 0, 0, 0.2);
border-top-color: rgba(0, 0, 0, 0.7);
border-radius: 50%;
animation: maSpin 0.7s linear infinite;
display: inline-block;
}
@keyframes maSpin { to { transform: rotate(360deg); } } .mangaauth-switch {
text-align: center;
margin-top: 14px;
padding-top: 12px;
border-top: 1px solid var(--ma-border);
color: var(--ma-text-muted);
font-size: 13px;
}
.mangaauth-switch-link {
color: var(--ma-accent);
text-decoration: none;
font-weight: 600;
margin-left: 4px;
cursor: pointer;
transition: color 0.18s;
}
.mangaauth-switch-link:hover { color: var(--ma-accent-hover); text-decoration: underline; } .mangaauth-hp-wrap {
position: absolute !important;
left: -9999px !important;
top: -9999px !important;
opacity: 0 !important;
pointer-events: none !important;
height: 0 !important;
width: 0 !important;
overflow: hidden !important;
} @media (min-width: 640px) {
.mangaauth-overlay { padding: 24px; }
.mangaauth-modal {
max-width: 440px;
padding: 28px 24px;
}
.mangaauth-header h2 { font-size: 24px; }
.mangaauth-subtitle { font-size: 14px; }
.mangaauth-logo-icon { width: 60px; height: 60px; margin-bottom: 14px; }
.mangaauth-input-wrap input { padding: 12px 14px 12px 42px; font-size: 14px; }
.mangaauth-submit-btn { padding: 13px 18px; min-height: 48px; } .mangaauth-oauth-buttons {
flex-direction: row;
}
.mangaauth-oauth-btn {
flex: 1;
padding: 10px 12px;
font-size: 13px;
}
}
@media (min-width: 900px) {
.mangaauth-modal { max-width: 460px; }
} @media (prefers-reduced-motion: reduce) {
.mangaauth-overlay,
.mangaauth-modal,
.mangaauth-form-container,
.mangaauth-notification,
.mangaauth-oauth-btn,
.mangaauth-submit-btn,
.mangaauth-close { transition: none !important; animation: none !important; }
.mangaauth-spinner { animation: maSpin 1.5s linear infinite; }
} .mangaauth-overlay button:focus-visible,
.mangaauth-overlay a:focus-visible,
.mangaauth-overlay input:focus-visible {
outline: 2px solid var(--ma-accent);
outline-offset: 2px;
}.mrh-reader-placeholder {
min-height: 300px;
display: flex;
align-items: center;
justify-content: center;
margin: 20px 0;
padding: 48px 22px;
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.12);
background: rgba(255, 255, 255, 0.06);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
box-sizing: border-box;
}
.lightmode .mrh-reader-placeholder {
background: rgba(255, 255, 255, 0.7);
border-color: rgba(0, 0, 0, 0.08);
}
.mrh-reader-placeholder-inner {
text-align: center;
max-width: 340px;
}
.mrh-reader-placeholder-icon {
color: #ffc107;
margin-bottom: 12px;
filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.45));
}
.mrh-reader-placeholder-icon-ring {
display: inline-flex;
align-items: center;
justify-content: center;
width: 72px;
height: 72px;
margin: 0 auto 14px;
border-radius: 50%;
color: #ffc107;
background: rgba(255, 193, 7, 0.12);
border: 1px solid rgba(255, 193, 7, 0.32);
box-shadow: 0 0 26px rgba(255, 193, 7, 0.22);
animation: mrh-pulse 2.4s ease-in-out infinite;
}
.mrh-reader-placeholder-text {
margin: 0 0 4px;
font-size: 1.08rem;
font-weight: 700;
}
.mrh-reader-placeholder-sub {
margin: 0 0 18px;
font-size: 0.88rem;
opacity: 0.65;
} .mrh-lock-modal {
position: fixed;
inset: 0;
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;
padding: 16px;
box-sizing: border-box;
animation: mrh-modal-fade-in 0.22s ease;
}
.mrh-lock-modal[hidden] {
display: none !important;
}
@keyframes mrh-modal-fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
.mrh-lock-modal-backdrop {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
cursor: pointer;
animation: mrh-backdrop-in 0.25s ease;
}
@keyframes mrh-backdrop-in {
from { opacity: 0; }
to   { opacity: 1; }
}
.mrh-lock-modal-dialog {
position: relative;
z-index: 1;
width: 100%;
max-width: 420px; overflow: visible;
padding: 22px 18px 18px;
border-radius: 22px;
background: #0a0a0a;
border: 1px solid rgba(255, 193, 7, 0.15);
backdrop-filter: blur(22px) saturate(140%);
-webkit-backdrop-filter: blur(22px) saturate(140%);
color: #f7f7f7;
box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 193, 7, 0.06);
text-align: center;
animation: mrh-modal-pop-in 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes mrh-modal-pop-in {
from { opacity: 0; transform: scale(0.85); }
to   { opacity: 1; transform: scale(1); }
}
.lightmode .mrh-lock-modal-dialog {
background: #0f0f0f;
color: #f0f0f0;
border-color: rgba(255, 193, 7, 0.2);
}
.mrh-lock-modal-glow {
position: absolute;
top: -40%;
left: 50%;
width: 220px;
height: 220px;
transform: translateX(-50%);
background: radial-gradient(circle, rgba(255, 193, 7, 0.22), transparent 70%);
pointer-events: none;
}
.mrh-lock-modal-close {
position: absolute;
top: 10px;
right: 12px;
width: 38px;
height: 38px;
border: none;
border-radius: 50%;
background: rgba(255, 255, 255, 0.08);
color: inherit;
font-size: 26px;
line-height: 1;
cursor: pointer;
opacity: 0.85;
padding: 0;
}
.mrh-lock-modal-close:hover {
opacity: 1;
background: rgba(255, 255, 255, 0.14);
}
.mrh-lock-modal-icon {
margin-bottom: 10px;
color: #ffc107;
} .mrh-lock-modal-icon-wrap {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
width: 90px;
height: 90px;
margin: 0 auto 10px;
}
.mrh-lock-modal-icon-ring {
position: absolute;
inset: 0;
border-radius: 50%;
border: 1.5px solid rgba(255, 193, 7, 0.4);
}
.mrh-lock-modal-icon-ring--outer {
inset: 0;
border-color: rgba(255, 193, 7, 0.25);
animation: mrh-ring-spin-slow 6s linear infinite;
background: transparent;
}
.mrh-lock-modal-icon-ring--inner {
inset: 10px;
border-color: rgba(255, 193, 7, 0.45);
animation: mrh-ring-spin-fast 3s linear infinite reverse;
background: rgba(255, 193, 7, 0.04);
}
.mrh-lock-modal-icon-core {
position: relative;
z-index: 2;
display: inline-flex;
align-items: center;
justify-content: center;
width: 58px;
height: 58px;
border-radius: 50%;
background: rgba(255, 193, 7, 0.10);
border: 1px solid rgba(255, 193, 7, 0.4);
box-shadow: 0 0 24px rgba(255, 193, 7, 0.2);
color: #ffc107;
}
.mrh-lock-modal-icon-core svg {
animation: mrh-lock-spin 4s linear infinite;
display: block;
}
@keyframes mrh-ring-spin-slow {
from { transform: rotate(0deg); }
to   { transform: rotate(360deg); }
}
@keyframes mrh-ring-spin-fast {
from { transform: rotate(0deg); }
to   { transform: rotate(360deg); }
}
@keyframes mrh-lock-spin {
0%   { transform: rotate(-8deg); }
25%  { transform: rotate(8deg); }
50%  { transform: rotate(-6deg); }
75%  { transform: rotate(6deg); }
100% { transform: rotate(-8deg); }
} .mrh-lock-modal-icon-ring:not(.mrh-lock-modal-icon-ring--outer):not(.mrh-lock-modal-icon-ring--inner) {
display: inline-flex;
align-items: center;
justify-content: center;
width: 78px;
height: 78px;
border-radius: 50%;
background: rgba(255, 193, 7, 0.12);
border: 1px solid rgba(255, 193, 7, 0.4);
box-shadow: 0 0 28px rgba(255, 193, 7, 0.25);
position: static;
inset: unset;
animation: mrh-pulse 2.4s ease-in-out infinite;
}
@keyframes mrh-pulse {
0%, 100% { box-shadow: 0 0 18px rgba(255, 193, 7, 0.2); transform: scale(1); }
50%       { box-shadow: 0 0 36px rgba(255, 193, 7, 0.45); transform: scale(1.03); }
}
.mrh-lock-modal-title {
margin: 0 0 4px;
font-size: 1.25rem;
font-weight: 900;
letter-spacing: -0.02em;
}
.mrh-lock-modal-chapter {
margin: 0 0 10px;
font-size: 0.88rem;
opacity: 0.75;
}
.mrh-lock-modal-desc {
margin: 0 0 10px;
font-size: 0.92rem;
line-height: 1.4;
} .mrh-lock-price-card {
position: relative;
margin: 0 auto 10px;
padding: 12px 14px 10px;
border-radius: 14px;
overflow: hidden;
background: rgba(255, 193, 7, 0.06);
border: 1px solid rgba(255, 193, 7, 0.2);
box-shadow: 0 8px 24px rgba(255, 193, 7, 0.08);
}
.mrh-lock-price-label {
display: block;
font-size: 0.78rem;
text-transform: uppercase;
letter-spacing: 0.06em;
opacity: 0.8;
margin-bottom: 4px;
font-weight: 700;
}
.mrh-lock-price-value {
display: flex;
align-items: baseline;
justify-content: center;
gap: 8px;
}
.mrh-lock-price-num {
font-size: 2.1rem;
font-weight: 900;
line-height: 1;
background: linear-gradient(135deg, #ffe082, #ffc107, #ff9800);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0 0 24px rgba(255, 193, 7, 0.35);
animation: mrh-price-glow 2s ease-in-out infinite;
}
@keyframes mrh-price-glow {
0%, 100% { filter: brightness(1); }
50% { filter: brightness(1.15); }
}
.mrh-lock-price-unit {
font-size: 1.1rem;
font-weight: 800;
color: #ffc107;
}
.mrh-lock-price-shine {
position: absolute;
inset: 0;
background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, transparent 65%);
animation: mrh-shine 3.2s ease-in-out infinite;
pointer-events: none;
}
@keyframes mrh-shine {
0% { transform: translateX(-60%); }
100% { transform: translateX(60%); }
}
.mrh-lock-balance-pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
margin-bottom: 16px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
font-size: 0.9rem;
}
.mrh-lock-balance-pill strong {
color: #ffc107;
font-size: 1.1rem;
}
.mrh-lock-vip-card {
margin-bottom: 14px;
padding: 14px;
border-radius: 16px;
background: rgba(255, 193, 7, 0.04);
border: 1px solid rgba(255, 193, 7, 0.18);
}
.mrh-lock-vip-badge {
display: inline-block;
padding: 4px 12px;
border-radius: 999px;
background: linear-gradient(135deg, #ffc107, #ff9800);
color: #1a1a1a;
font-weight: 800;
font-size: 0.8rem;
margin-bottom: 8px;
letter-spacing: 0.06em;
}
.mrh-lock-modal-actions {
display: flex;
flex-direction: column;
gap: 10px;
}
.mrh-lock-or-sep {
display: flex;
align-items: center;
gap: 10px;
margin: 2px 0;
}
.mrh-lock-or-sep::before,
.mrh-lock-or-sep::after {
content: "";
flex: 1;
height: 1px;
background: rgba(255, 255, 255, 0.14);
}
.lightmode .mrh-lock-or-sep::before,
.lightmode .mrh-lock-or-sep::after {
background: rgba(0, 0, 0, 0.1);
}
.mrh-lock-or-sep span {
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
opacity: 0.55;
}
.mrh-lock-modal-hint {
margin: 12px 0 0;
font-size: 0.85rem;
}
.mrh-lock-modal-hint a {
color: #ffc107;
font-weight: 700;
}
.mrh-lock-suggest {
display: flex;
flex-direction: column;
gap: 2px;
margin-top: 8px;
padding: 9px 12px;
border-radius: 12px;
text-decoration: none !important;
color: inherit !important;
background: rgba(255, 193, 7, 0.1);
border: 1px solid rgba(255, 193, 7, 0.28);
transition: transform 0.15s, box-shadow 0.15s;
}
.mrh-lock-suggest:hover {
transform: translateY(-1px);
box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}
.mrh-lock-suggest-label {
font-size: 0.65rem;
text-transform: uppercase;
letter-spacing: 0.05em;
opacity: 0.75;
font-weight: 700;
}
.mrh-lock-suggest-name {
font-size: 0.92rem;
color: #ffc107;
}
.mrh-lock-suggest-meta {
font-size: 0.8rem;
opacity: 0.85;
} .mrh-lock-countdown {
margin-top: 10px;
padding: 10px 10px 8px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 193, 7, 0.2);
}
.mrh-lock-countdown-label {
display: block;
margin-bottom: 8px;
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
opacity: 0.75;
}
.mrh-lock-countdown-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 6px;
}
.mrh-lock-countdown-cell {
padding: 7px 4px 6px;
border-radius: 10px;
background: rgba(0, 0, 0, 0.25);
border: 1px solid rgba(255, 255, 255, 0.07);
}
.lightmode .mrh-lock-countdown-cell {
background: rgba(255, 255, 255, 0.7);
border-color: rgba(0, 0, 0, 0.06);
}
.mrh-cd-num {
display: block;
font-size: 1.1rem;
font-weight: 900;
color: #ffc107;
font-variant-numeric: tabular-nums;
line-height: 1.1;
}
.mrh-cd-unit {
display: block;
margin-top: 2px;
font-size: 0.62rem;
opacity: 0.7;
font-weight: 600;
text-transform: uppercase;
}
.mrh-lock-modal-auto-free {
margin-top: 16px;
padding: 10px 12px;
border-radius: 12px;
font-size: 0.85rem;
background: rgba(255, 193, 7, 0.1);
border: 1px solid rgba(255, 193, 7, 0.25);
}
.mrh-lock-message {
margin: 14px 0 0;
font-size: 0.9rem;
min-height: 1.2em;
}
.mrh-lock-message.is-error { color: #ef5350; }
.mrh-lock-message.is-success { color: #66bb6a; }
.mrh-lock-message.is-info { color: #ffc107; }
.mrh-lock-message .mrh-buy-coin-link {
display: inline-block;
margin-left: 4px;
font-weight: 700;
color: #ffc107;
} .mrh-btn {
display: inline-block;
width: 100%;
padding: 14px 16px;
border-radius: 12px;
border: none;
cursor: pointer;
font-size: 0.98rem;
font-weight: 800;
text-decoration: none !important;
line-height: 1.3;
box-sizing: border-box;
text-align: center;
transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}
.mrh-btn:hover { opacity: 0.95; transform: translateY(-1px); }
.mrh-btn:active { transform: scale(0.98); }
.mrh-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.mrh-btn-primary {
background: linear-gradient(135deg, #ffc107, #ff9800);
color: #1a1a1a !important;
}
.mrh-btn-glow {
box-shadow: 0 10px 28px rgba(255, 193, 7, 0.35);
}
.mrh-btn-glass {
background: rgba(255, 255, 255, 0.08);
color: inherit !important;
border: 1px solid rgba(255, 255, 255, 0.16);
backdrop-filter: blur(10px);
}
.lightmode .mrh-btn-glass {
background: rgba(255, 255, 255, 0.85);
border-color: rgba(0, 0, 0, 0.1);
}
.mrh-btn-vip {
background: linear-gradient(135deg, #ffc107, #ff9800);
color: #1a1a1a !important;
box-shadow: 0 10px 28px rgba(255, 193, 7, 0.3);
}
.mrh-btn-secondary {
background: transparent;
color: #ffc107 !important;
border: 1px solid rgba(255, 193, 7, 0.4);
}
body.mrh-lock-modal-open { overflow: hidden; }
body.mrh-chapter-locked #readerarea-loading { display: none !important; }
@media (max-width: 480px) {
.mrh-lock-modal {
padding: 8px;
align-items: center;
}
.mrh-lock-modal-dialog {
max-width: 100%;
max-height: 90vh;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
border-radius: 18px;
padding: 18px 14px 14px;
}
.mrh-lock-modal-icon-wrap {
width: 70px;
height: 70px;
margin-bottom: 8px;
}
.mrh-lock-modal-icon-core {
width: 46px;
height: 46px;
}
.mrh-lock-modal-title {
font-size: 1.1rem;
}
.mrh-lock-price-num {
font-size: 1.8rem;
}
.mrh-cd-num {
font-size: 1rem;
}
.mrh-lock-countdown {
margin-top: 8px;
}
.mrh-reader-placeholder {
min-height: 220px;
padding: 28px 14px;
}
.mrh-lock-modal-actions .mrh-btn {
width: 100%;
justify-content: center;
}
}
body.mrh-chapter-locked #readerarea img,
body.mrh-chapter-locked #readerarea picture,
body.mrh-chapter-locked #readerarea source,
body.mrh-chapter-locked .ts-main-image,
body.mrh-chapter-locked .chapter-image,
body.mrh-chapter-locked noscript {
display: none !important;
}
body.mrh-chapter-locked {
-webkit-user-select: none;
user-select: none;
}.mrh-vip-badge {
display: inline-flex;
align-items: center;
gap: 4px;
margin-left: 6px;
padding: 1px 8px;
border-radius: 999px;
font-size: 11px;
font-weight: 700;
line-height: 1.6;
vertical-align: middle;
background: linear-gradient(135deg, #7b1fa2, #512da8);
color: #fff;
max-width: 100%;
min-width: 0;
}
.mrh-vip-badge-icon {
font-size: 10px;
line-height: 1;
flex: 0 0 auto;
}
.mrh-vip-badge-text {
letter-spacing: 0.02em;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.mrh-profile-name .mrh-vip-badge,
.mrh-profile-summary .mrh-vip-badge {
max-width: min(100%, 220px);
margin: 4px 0 0;
}.mrh-header-widget-bar {
width: 100%;
box-sizing: border-box;
background: #243342; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
color: #f0f0f0; line-height: 1;
} #wpadminbar .mrh-ab-test .ab-item {
background: #d63638 !important;
color: #fff !important;
}
#wpadminbar .mrh-ab-pending .ab-item {
background: #dba617 !important;
color: #1d2327 !important;
}
body.lightmode .mrh-header-widget-bar,
.lightmode .mrh-header-widget-bar {
background: #f4f6f8;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
color: #1a1a1a;
} body.black .mrh-header-widget-bar {
background: #1a1a1a;
border-bottom-color: rgba(255, 255, 255, 0.08);
}
.mrh-header-widget-inner {
margin: 0 auto;
max-width: 1220px; padding: 6px 20px;
box-sizing: border-box;
display: flex;
justify-content: flex-end;
align-items: center;
min-height: 36px;
}
.mrh-header-widget {
display: inline-flex;
align-items: center;
flex-wrap: wrap;
justify-content: flex-end;
gap: 6px;
max-width: 100%;
}
.mrh-hw-balance,
.mrh-hw-vip,
.mrh-hw-link {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 5px;
min-height: 28px;
padding: 0 11px;
border-radius: 999px;
text-decoration: none !important;
white-space: nowrap;
font-size: 12px;
font-weight: 700;
line-height: 1;
transition: background 0.15s ease, transform 0.15s ease;
}
.mrh-hw-balance {
background: rgba(255, 193, 7, 0.18);
color: #ffc107 !important;
}
.mrh-hw-vip {
background: linear-gradient(135deg, #9c27b0, #512da8);
color: #fff !important;
font-size: 11px;
}
.mrh-hw-link {
background: rgba(255, 255, 255, 0.1);
color: #fff !important;
}
body.lightmode .mrh-hw-link,
.lightmode .mrh-hw-link {
background: rgba(0, 0, 0, 0.06);
color: #1a1a1a !important;
}
body.lightmode .mrh-hw-balance,
.lightmode .mrh-hw-balance {
color: #b28704 !important;
background: rgba(255, 193, 7, 0.25);
}
.mrh-hw-balance:hover,
.mrh-hw-vip:hover,
.mrh-hw-link:hover {
transform: translateY(-1px);
filter: brightness(1.08);
}
.mrh-hw-ico {
font-size: 13px;
line-height: 1;
} .mrh-header-widget-bar.mrh-hw-fallback {
position: sticky;
top: 0;
z-index: 9990;
}
body.admin-bar .mrh-header-widget-bar.mrh-hw-fallback {
top: 32px;
} .epxs,
.chapternum,
.fivchap,
.eggchap {
display: inline-flex !important;
align-items: center;
flex-wrap: wrap;
gap: 4px;
}
.mrh-ch-lock {
display: inline-flex !important;
align-items: center;
justify-content: center;
margin-left: 5px;
vertical-align: middle;
width: 18px;
height: 18px;
min-width: 18px;
flex-shrink: 0;
border-radius: 50%;
color: #ffc107 !important;
background: rgba(255, 193, 7, 0.22) !important;
box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.55);
animation: mrh-lock-pulse 1.6s ease-in-out infinite;
position: relative;
z-index: 5;
overflow: visible !important;
}
.epxs .mrh-ch-lock,
.luf a .mrh-ch-lock,
.chapternum .mrh-ch-lock {
margin-left: 4px;
} .utao .mrh-ch-lock,
.bs .mrh-ch-lock,
.epxs .mrh-ch-lock,
.luf .mrh-ch-lock {
color: #ffd54f !important;
background: rgba(255, 193, 7, 0.28) !important;
}
.mrh-ch-lock--vip {
color: #e1bee7 !important;
background: rgba(156, 39, 176, 0.35) !important;
box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.5);
animation-name: mrh-lock-pulse-vip;
}
.mrh-ch-lock svg,
.mrh-ch-lock .fa-lock,
.mrh-ch-lock i {
display: block !important;
width: auto;
height: auto;
font-size: 10px !important;
line-height: 1 !important;
color: inherit !important;
}
@keyframes mrh-lock-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.45); transform: scale(1); }
50% { box-shadow: 0 0 0 6px rgba(255, 193, 7, 0); transform: scale(1.08); }
}
@keyframes mrh-lock-pulse-vip {
0%, 100% { box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.4); transform: scale(1); }
50% { box-shadow: 0 0 0 6px rgba(156, 39, 176, 0); transform: scale(1.08); }
} .mrh-toast-root {
position: fixed;
left: 50%;
bottom: max(16px, env(safe-area-inset-bottom, 0px));
transform: translateX(-50%);
z-index: 100000;
display: flex;
flex-direction: column;
gap: 8px;
pointer-events: none;
width: min(92vw, 360px);
box-sizing: border-box;
padding: 0 10px;
}
.mrh-toast {
pointer-events: auto;
padding: 14px 16px;
border-radius: 14px;
background: rgba(22, 24, 34, 0.94);
border: 1px solid rgba(255, 255, 255, 0.12);
color: #fff;
font-weight: 700;
box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
animation: mrh-toast-in 0.35s ease;
text-align: center;
}
.mrh-toast--success {
border-color: rgba(102, 187, 106, 0.45);
}
@keyframes mrh-toast-in {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
} @media (max-width: 890px) {
.mrh-header-widget-inner {
padding: 5px 12px;
justify-content: center;
}
.mrh-header-widget {
justify-content: center;
width: 100%;
} .mrh-hw-txt-hide-sm {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
border: 0 !important;
}
.mrh-hw-balance,
.mrh-hw-vip,
.mrh-hw-link {
min-height: 34px;
min-width: 34px;
padding: 0 10px;
}
}
@media (max-width: 420px) {
.mrh-header-widget-inner {
padding: 6px 10px;
}
.mrh-hw-balance {
flex: 1 1 auto;
max-width: 50%;
}
} .mrh-avatar-wrapper {
position: relative;
display: inline-flex;
align-items: center;
}
.mrh-avatar-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
border-radius: 50%;
border: 2px solid #ffc107;
background: rgba(255, 193, 7, 0.1);
cursor: pointer;
padding: 0;
overflow: hidden;
transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
color: #ffc107;
}
.mrh-avatar-btn img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 50%;
}
.mrh-avatar-btn svg {
display: block;
}
.mrh-avatar-btn:hover {
box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.28);
border-color: #ffd54f;
transform: translateY(-1px);
}
.mrh-avatar-btn:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.4);
} .mrh-profile-dropdown {
position: absolute;
top: calc(100% + 10px);
right: 0;
min-width: 220px;
background: #1a1a1a;
border: 1px solid rgba(255, 193, 7, 0.2);
border-radius: 16px;
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.3);
z-index: 99999;
overflow: hidden; opacity: 0;
transform: translateY(-8px);
transition: opacity 0.2s ease, transform 0.2s ease;
}
.mrh-profile-dropdown.is-open {
opacity: 1;
transform: translateY(0);
} .mrh-dropdown-header {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 16px 12px;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mrh-dropdown-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
overflow: hidden;
border: 2px solid rgba(255, 193, 7, 0.4);
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 193, 7, 0.1);
font-size: 1.4rem;
}
.mrh-dropdown-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.mrh-dropdown-header-info {
display: flex;
flex-direction: column;
gap: 4px;
min-width: 0;
}
.mrh-dropdown-name {
font-size: 0.9rem;
font-weight: 700;
color: #fff;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.mrh-dropdown-vip {
display: inline-block;
font-size: 0.72rem;
font-weight: 800;
padding: 2px 8px;
border-radius: 999px;
background: linear-gradient(135deg, #9c27b0, #512da8);
color: #fff;
letter-spacing: 0.3px;
} .mrh-dropdown-sep {
border-top: 1px solid rgba(255, 255, 255, 0.08);
margin: 4px 0;
} .mrh-dropdown-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 16px;
font-size: 0.875rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.75) !important;
text-decoration: none !important;
transition: background 0.15s ease, color 0.15s ease;
cursor: pointer;
}
.mrh-dropdown-item:hover {
background: rgba(255, 193, 7, 0.1);
color: #ffc107 !important;
}
.mrh-dropdown-item-ico {
font-size: 1rem;
width: 20px;
text-align: center;
flex-shrink: 0;
line-height: 1;
}
.mrh-dropdown-item-lbl {
flex: 1;
}
.mrh-dropdown-item--logout {
color: rgba(255, 100, 100, 0.75) !important;
margin-bottom: 4px;
}
.mrh-dropdown-item--logout:hover {
background: rgba(244, 67, 54, 0.1);
color: #ef5350 !important;
}
@media (max-width: 890px) {
.mrh-profile-dropdown {
min-width: min(260px, calc(100vw - 24px));
max-width: calc(100vw - 16px);
right: 0;
left: auto;
}
}
@media (max-width: 420px) {
.mrh-profile-dropdown {
position: fixed;
top: auto;
bottom: 12px;
left: 12px;
right: 12px;
min-width: 0;
max-width: none;
width: auto;
}
.mrh-header-widget-inner {
padding: 6px 10px;
}
}   .mrh-chapter-locked {
position: relative;
animation: mrh-chapter-pulse 3s ease-in-out infinite;
}
@keyframes mrh-chapter-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.0); }
50%       { box-shadow: 0 0 10px 3px rgba(255, 193, 7, 0.28); }
} .mrh-chapter-locked--vip {
animation-name: mrh-chapter-pulse-vip;
}
@keyframes mrh-chapter-pulse-vip {
0%, 100% { box-shadow: 0 0 0 0 rgba(206, 147, 216, 0.0); }
50%       { box-shadow: 0 0 10px 3px rgba(206, 147, 216, 0.32); }
} .mrh-chapter-locked::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255, 193, 7, 0.07), transparent);
border-radius: inherit;
opacity: 0;
transition: opacity 0.2s ease;
pointer-events: none;
z-index: 1;
}
.mrh-chapter-locked:hover::before {
opacity: 1;
} .mrh-chapter-locked--vip::before {
background: linear-gradient(135deg, rgba(206, 147, 216, 0.07), transparent);
}
.mrh-chapter-locked .mrh-ch-lock {
position: relative;
z-index: 2;
} .mrh-ma-header-chip{height:40px;min-width:40px;box-sizing:border-box;display:inline-flex;align-items:center;justify-content:center;gap:6px;padding:0 11px;border-radius:22px;border:1px solid rgba(255,255,255,.09);background:rgba(22,22,32,.94);backdrop-filter:blur(16px);color:#e8e8ef!important;text-decoration:none!important;font:700 12px/1 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;box-shadow:0 4px 12px rgba(0,0,0,.28);transition:background .18s,border-color .18s,transform .18s}
.mrh-ma-header-chip:hover{background:rgba(255,193,7,.14);border-color:rgba(255,193,7,.42);transform:translateY(-1px);color:#fff!important}
.mrh-ma-header-chip .mrh-hw-ico{display:inline-flex;color:#ffc107}.mrh-ma-header-chip .mrh-hw-ico svg{width:16px;height:16px}.mrh-ma-header-chip .mrh-hw-txt{display:inline-block}
.mrh-ma-vip-chip{color:#ffd76a!important;border-color:rgba(255,193,7,.3);background:linear-gradient(135deg,rgba(83,56,5,.96),rgba(34,27,19,.96))}
.mrh-ma-dropdown-item svg{width:16px;height:16px;color:#ffc107;flex:0 0 auto}
.mrh-ma-vip-badge{display:inline-flex;align-items:center;padding:4px 9px;border:1px solid rgba(255,193,7,.38);border-radius:999px;background:rgba(255,193,7,.12);color:#ffd54f;font-size:11px;font-weight:800;letter-spacing:.04em}
.mrh-ma-vip-avatar{box-shadow:0 0 0 3px rgba(255,193,7,.45),0 0 24px rgba(255,193,7,.22)}
@media(max-width:600px){.mrh-ma-header-chip{padding:0 9px}.mrh-ma-vip-chip .mrh-hw-txt-hide-sm{display:none}}