.mzk-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.auth { position: relative; }
.mzk-login-trigger { gap: 8px; }
.mzk-login-trigger svg { width: 18px; height: 18px; }

.mzk-login-overlay {
  position: fixed;
  inset: 0;
  z-index: 900000;
  display: grid;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.mzk-login-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mzk-login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 15, .78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.mzk-login-modal {
  position: relative;
  display: flex;
  width: min(92vw, 470px);
  max-height: calc(100dvh - 40px);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #223548;
  border-radius: 20px;
  background: #0c1a27;
  color: #f4f7fa;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .58);
  color-scheme: dark;
  transform: translateY(12px) scale(.985);
  transition: transform .2s ease;
}

.mzk-login-overlay.is-open .mzk-login-modal { transform: translateY(0) scale(1); }

.mzk-login-modal__header {
  position: relative;
  display: block;
  padding: 26px 64px 14px 28px;
  flex: 0 0 auto;
}

.mzk-login-modal__header h2 {
  margin: 0;
  color: #f8fafc;
  font-size: 25px;
  font-weight: 780;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.mzk-login-modal__header p {
  margin: 7px 0 0;
  color: #91a2b5;
  font-size: 14px;
  line-height: 1.45;
}

.mzk-login-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid #26394b;
  border-radius: 50%;
  background: transparent;
  color: #91a2b5;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease, transform .1s ease;
}

.mzk-login-modal__close:hover,
.mzk-login-modal__close:focus-visible {
  border-color: #3a5166;
  background: #132536;
  color: #f4f7fa;
  outline: 0;
}

.mzk-login-modal__close:active { transform: scale(.92); }
.mzk-login-modal__close svg { width: 20px; height: 20px; }

.mzk-login-modal__body {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  flex: 1 1 auto;
}

.mzk-login-form { padding: 12px 28px 24px; }

.mzk-login-field {
  position: relative;
  display: flex;
  height: 54px;
  align-items: center;
  margin: 0;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid #2a4054;
  border-radius: 0;
  background: transparent;
  transition: border-color .16s ease;
}

.mzk-login-field:focus-within { border-color: #52677b; }
.mzk-login-field.is-error { border-color: #ff647c; }

.mzk-login-field__icon {
  display: grid;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  place-items: center;
  flex: 0 0 22px;
  color: #8295aa;
}

.mzk-login-field__icon svg { width: 19px; height: 19px; }

.mzk-login-field input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f4f7fa;
  font: inherit;
  font-size: 16px;
}

.mzk-login-modal .mzk-login-field input:focus,
.mzk-login-modal .mzk-login-field input:focus-visible {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.mzk-login-field input::placeholder { color: #708399; }

.mzk-login-field input:-webkit-autofill,
.mzk-login-field input:-webkit-autofill:hover,
.mzk-login-field input:-webkit-autofill:focus,
.mzk-login-field input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 40px #0c1a27 inset !important;
  box-shadow: 0 0 0 40px #0c1a27 inset !important;
  -webkit-text-fill-color: #f4f7fa !important;
  caret-color: #f4f7fa;
}

.mzk-login-field__error-icon {
  display: none;
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: #ff647c;
  flex: 0 0 18px;
}

.mzk-login-field.is-error .mzk-login-field__error-icon { display: grid; place-items: center; }
.mzk-login-field__error-icon svg { width: 16px; height: 16px; }

.mzk-login-field__message {
  display: none;
  margin: 5px 0 8px 34px;
  color: #ff647c;
  font-size: 12px;
  line-height: 1.4;
}

.mzk-login-field__message.is-visible { display: block; }

.mzk-login-field__password-toggle {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  flex: 0 0 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #8295aa;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}

.mzk-login-field__password-toggle:hover,
.mzk-login-field__password-toggle:focus-visible {
  background: #132536;
  color: #f4f7fa;
  outline: 0;
}

.mzk-eye-closed,
.mzk-login-field__password-toggle.is-visible .mzk-eye-open { display: none; }
.mzk-login-field__password-toggle.is-visible .mzk-eye-closed { display: block; }
.mzk-login-field__password-toggle svg { width: 19px; height: 19px; }

.mzk-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 20px;
  font-size: 13px;
}

.mzk-login-remember {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #a9b7c6;
  cursor: pointer;
  user-select: none;
}

.mzk-login-remember input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mzk-login-checkbox {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  flex: 0 0 18px;
  border: 1px solid #3a5166;
  border-radius: 5px;
  background: transparent;
  transition: border-color .15s ease, background-color .15s ease;
}

.mzk-login-remember input:checked + .mzk-login-checkbox {
  border-color: #ffa200;
  background: #ffa200;
}

.mzk-login-remember input:focus-visible + .mzk-login-checkbox { box-shadow: 0 0 0 3px rgba(255, 162, 0, .14); }
.mzk-login-checkbox svg { display: none; width: 11px; height: 11px; color: #07111c; }
.mzk-login-remember input:checked + .mzk-login-checkbox svg { display: block; }

.mzk-login-forgot,
.mzk-login-register a {
  color: #ffa200;
  font-weight: 650;
  text-decoration: none;
}

.mzk-login-forgot:hover,
.mzk-login-register a:hover { text-decoration: underline; text-underline-offset: 3px; }

.mzk-login-error-global {
  display: none;
  margin: 0 0 14px;
  padding: 0 0 0 12px;
  border: 0;
  border-left: 2px solid #ff647c;
  border-radius: 0;
  background: transparent;
  color: #ff8da0;
  font-size: 13px;
  line-height: 1.5;
}

.mzk-login-error-global.is-visible { display: block; }

.mzk-login-submit {
  display: flex;
  width: 100%;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  background: #ffa200;
  color: #07111c;
  font: inherit;
  font-size: 17px;
  font-weight: 780;
  cursor: pointer;
  transition: filter .15s ease, transform .12s ease, opacity .15s ease;
}

.mzk-login-submit:hover { filter: brightness(1.08); }
.mzk-login-submit:active { transform: scale(.985); }
.mzk-login-submit:disabled { opacity: .65; cursor: wait; }
.mzk-login-submit__icon { width: 21px; height: 21px; }
.mzk-login-submit.is-loading .mzk-login-submit__icon,
.mzk-login-submit.is-loading .mzk-login-submit__text { display: none; }
.mzk-login-submit__spinner { display: none; }
.mzk-login-submit.is-loading .mzk-login-submit__spinner { display: flex; align-items: center; gap: 8px; }
.mzk-login-submit__spinner svg { width: 20px; height: 20px; animation: mzk-auth-spin .7s linear infinite; }

@keyframes mzk-auth-spin { to { transform: rotate(360deg); } }

.mzk-login-register {
  margin: 20px 0 12px;
  color: #91a2b5;
  font-size: 14px;
  text-align: center;
}

.mzk-login-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.mzk-login-social:empty { display: none; }
.mzk-login-social a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #2a4054;
  border-radius: 10px;
  background: transparent;
  color: #a9b7c6;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.mzk-login-social a:hover { border-color: #ffa200; color: #ffa200; }
body.mzk-login-open { overflow: hidden; }

@media (max-width: 900px) {
  .header .auth,
  .mzk-genres-page .header .auth,
  .mzk-fullstory-page .header .auth,
  .mzk-home-page .header .auth { display: flex !important; }
}

@media (max-width: 600px) {
  .mzk-login-trigger { width: 40px; min-width: 40px; height: 40px; padding: 0; border-radius: 11px; }
  .mzk-login-trigger span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
  .mzk-login-overlay { padding: 0; align-items: flex-end; }
  .mzk-login-modal {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 54px - env(safe-area-inset-top));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 20px 20px 0 0;
    transform: translateY(42%);
  }
  .mzk-login-overlay.is-open .mzk-login-modal { transform: translateY(0); }
  .mzk-login-modal__header { padding: 20px 58px 10px 20px; }
  .mzk-login-modal__header h2 { font-size: 22px; }
  .mzk-login-modal__close { top: 12px; right: 12px; }
  .mzk-login-form { padding: 10px 20px calc(18px + env(safe-area-inset-bottom)); }
  .mzk-login-options { margin-block: 16px 18px; }
  body.mzk-keyboard-open .mzk-login-modal { max-height: calc(100dvh - 8px); border-radius: 16px 16px 0 0; }
  body.mzk-keyboard-open .mzk-login-modal__header { padding-top: 12px; padding-bottom: 6px; }
  body.mzk-keyboard-open .mzk-login-modal__header p { display: none; }
  body.mzk-keyboard-open .mzk-login-form { padding-top: 4px; }
  body.mzk-keyboard-open .mzk-login-field { height: 48px; }
  body.mzk-keyboard-open .mzk-login-options { margin-block: 10px 12px; }
  body.mzk-keyboard-open .mzk-login-submit { height: 48px; }
  body.mzk-keyboard-open .mzk-login-register { margin-top: 12px; }
}

@media (max-width: 359px) {
  .mzk-login-options { align-items: flex-start; flex-direction: column; gap: 10px; }
  .mzk-login-form { padding-inline: 16px; }
  body.mzk-keyboard-open .mzk-login-options { flex-flow: row wrap; gap: 6px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .mzk-login-overlay,
  .mzk-login-modal,
  .mzk-login-checkbox { transition: none !important; }
}
