.dfp-top-tools {
  position: fixed;
  left: 0;
  right: auto;
  top: 50%;
  bottom: auto;
  z-index: 998;
  display: flex;
  gap: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.dfp-tool-btn,
.dfp-modal button,
.dfp-modal a,
.dfp-card a,
.dfp-card button {
  border-radius: 999px;
}

.dfp-tool-btn {
  pointer-events: auto;
  min-height: auto;
  border: 0;
  background: linear-gradient(180deg, var(--lc-accent, #FCD307) 0%, #B88900 100%);
  color: #101828;
  padding: 14px 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font: 800 11px/1 Inter, system-ui, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-decoration: none;
  box-shadow:
    2px 0 20px var(--lc-accent-glow, rgba(252, 211, 7, .32)),
    1px 0 rgba(252, 211, 7, .3);
  border-radius: 0 8px 8px 0;
  transition: padding .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, transform .3s;
  animation: dfp-platform-tab-entrance .6s cubic-bezier(.16,1,.3,1) both;
}

.dfp-tool-btn:hover {
  color: #101828;
  padding: 14px 11px;
  box-shadow:
    4px 0 30px rgba(252, 211, 7, .35),
    1px 0 rgba(252, 211, 7, .5);
}

.dfp-tool-btn svg {
  display: none;
}

@keyframes dfp-platform-tab-entrance {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lc-header-left {
  align-items: center;
  flex-wrap: wrap;
}

.dfp-chat-role-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
}

.dfp-chat-role-owner {
  color: #fff7ed;
  border-color: rgba(249,115,22,.58);
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 0 12px rgba(249,115,22,.24);
}

.dfp-chat-role-vip {
  color: #dcfce7;
  border-color: rgba(34,197,94,.52);
  background: linear-gradient(135deg, rgba(34,197,94,.28), rgba(22,163,74,.42));
  box-shadow: 0 0 12px rgba(34,197,94,.2);
}

.dfp-chat-role-user {
  color: #bfdbfe;
  border-color: rgba(96,165,250,.3);
  background: rgba(59,130,246,.14);
}

.dfp-chat-role-mod {
  color: #c4b5fd;
  border-color: rgba(167,139,250,.32);
  background: rgba(124,58,237,.18);
}

.dfp-chat-role-guest {
  color: #cbd5e1;
  border-color: rgba(148,163,184,.28);
  background: rgba(148,163,184,.12);
}

.dfp-global-search-wrap {
  position: relative;
  z-index: 35;
  width: min(1040px, calc(100vw - 32px));
  margin: 12px auto 18px;
}

.dfp-global-search {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 20px;
  background: rgba(12, 17, 27, .92);
  color: #f8fafc;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .025),
    0 14px 36px rgba(0, 0, 0, .32);
  overflow: hidden;
}

.dfp-global-search:focus-within {
  border-color: rgba(252, 211, 7, .4);
  box-shadow:
    inset 0 0 0 1px rgba(252, 211, 7, .12),
    0 14px 36px rgba(0, 0, 0, .32);
}

.dfp-global-search__icon {
  width: 52px;
  display: grid;
  place-items: center;
  color: rgba(148, 163, 184, .72);
  flex: 0 0 auto;
}

.dfp-global-search__icon svg,
.dfp-global-search__submit svg {
  width: 20px;
  height: 20px;
  display: block;
}

.dfp-global-search__input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 0;
  outline: none;
  background: transparent;
  color: #f8fafc;
  font: 700 15px/1.2 Inter, system-ui, sans-serif;
  padding: 0 6px 0 0;
}

.dfp-global-search__input::placeholder {
  color: rgba(148, 163, 184, .74);
}

.dfp-global-search__submit {
  width: 46px;
  height: 46px;
  margin-right: 3px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: rgba(148, 163, 184, .78);
  cursor: pointer;
}

.dfp-global-search__submit:hover {
  color: #fcd307;
  background: rgba(252, 211, 7, .08);
}

.dfp-platform-nav-link {
  gap: 3px;
}

.dfp-platform-nav-link .dfp-nav-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: currentColor;
  flex: 0 0 auto;
  border: 2px solid rgba(148, 163, 184, .45);
  border-radius: 12px;
  background: rgba(15, 23, 42, .82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    0 6px 14px rgba(0, 0, 0, .24);
  box-sizing: border-box;
}

.dfp-platform-nav-link .dfp-nav-icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.dfp-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.dfp-modal {
  width: min(720px, 100%);
  max-height: min(760px, 90vh);
  overflow: hidden;
  background: #101828;
  color: #f8fafc;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.48);
  display: flex;
  flex-direction: column;
}

.dfp-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.dfp-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.dfp-close {
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}

.dfp-admin-user-actions {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 8px;
}

.dfp-edit-user-btn,
.dfp-delete-user-btn {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #f8fafc;
  background: rgba(255,255,255,.06);
}

.dfp-delete-user-btn {
  color: #fecaca;
  border-color: rgba(248,113,113,.32);
  background: rgba(248,113,113,.08);
}

.dfp-usd-label,
.dfp-vip-usd {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #86efac;
}

.dfp-paypal-settings,
.dfp-paypal-checkout {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}

.dfp-free-settings-card {
  margin: 0 0 24px;
  padding: 16px;
  border: 1px solid rgba(252,211,7,.22);
  border-radius: 16px;
  background: rgba(31,41,55,.78);
}

.dfp-free-settings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.dfp-free-settings-head h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.dfp-free-settings-head p {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
}

.dfp-free-settings-body {
  display: grid;
  gap: 10px;
}

.dfp-free-setting-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto 110px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}

.dfp-free-setting-row strong,
.dfp-free-setting-row span {
  display: block;
}

.dfp-free-setting-row strong {
  color: #f8fafc;
  font-size: 13px;
}

.dfp-free-setting-row span {
  color: #94a3b8;
  font-size: 11px;
}

.dfp-free-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
}

.dfp-free-toggle input {
  width: 16px;
  height: 16px;
  accent-color: #fcd307;
}

.dfp-free-toggle-placeholder {
  text-align: right;
  font-weight: 800;
}

.dfp-free-setting-row input[type="number"] {
  min-height: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 7px 10px;
  outline: none;
}

.dfp-paypal-settings h3,
.dfp-paypal-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.dfp-paypal-sub {
  margin-bottom: 12px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

.dfp-modal-body {
  padding: 18px;
  overflow: auto;
}

.dfp-search {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 0 16px;
  outline: none;
  margin-bottom: 16px;
}

.dfp-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
}

.dfp-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 92px;
  aspect-ratio: 1 / .86;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  color: #fff;
  text-decoration: none;
  padding: 10px 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  border-radius: 12px !important;
}

.dfp-platform-card:hover {
  border-color: rgba(252,211,7,.45);
  background: rgba(252,211,7,.08);
}

.dfp-platform-card--maintenance {
  cursor: not-allowed;
  pointer-events: none;
  border-color: rgba(148,163,184,.18);
  background: rgba(15,23,42,.52);
  color: rgba(226,232,240,.58);
  opacity: .86;
}

.dfp-platform-card--maintenance:hover {
  border-color: rgba(148,163,184,.18);
  background: rgba(15,23,42,.52);
  color: rgba(226,232,240,.58);
}

.dfp-platform-card--maintenance img {
  filter: grayscale(1) brightness(.55);
  opacity: .48;
}

.dfp-platform-card--maintenance small {
  display: inline-flex;
  align-items: center;
  height: 15px;
  max-width: 100%;
  padding: 0 6px;
  border: 1px solid rgba(252,211,7,.24);
  border-radius: 999px;
  background: rgba(252,211,7,.1);
  color: #facc15;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dfp-platform-card img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  background: #1f2937;
}

.dfp-platform-card span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dfp-featured {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.dfp-featured:empty {
  display: none !important;
}

.dfp-featured a,
.dfp-featured span {
  flex: 0 0 auto;
  border: 1px solid rgba(252,211,7,.28);
  color: #fcd307;
  background: rgba(252,211,7,.08);
  text-decoration: none;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
}

.dfp-featured [aria-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
  border-color: rgba(148,163,184,.24);
  color: rgba(226,232,240,.58);
  background: rgba(148,163,184,.08);
}

.dfp-card {
  background: rgba(31,41,55,.82);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 18px;
  padding: 16px;
  color: #f8fafc;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

.dfp-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
}

.dfp-logo-home-link {
  display: inline-flex;
  align-items: center;
}

.dfp-hidden-source-row {
  display: none !important;
}

.dfp-card-grid {
  display: grid;
  gap: 10px;
}

.dfp-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  padding: 9px 12px;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.dfp-form {
  display: grid;
  gap: 12px;
}

.dfp-field {
  display: grid;
  gap: 6px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
}

.dfp-field input,
.dfp-field select,
.dfp-field textarea {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 9px 12px;
  outline: none;
}

.dfp-avatar-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.dfp-avatar-input-row .dfp-secondary {
  white-space: nowrap;
  padding: 0 12px;
}

.dfp-primary {
  min-height: 42px;
  border: 0;
  background: #fcd307;
  color: #101828;
  font-weight: 900;
  cursor: pointer;
  padding: 0 16px;
}

.dfp-secondary {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #f8fafc;
  font-weight: 900;
  cursor: pointer;
  padding: 0 16px;
}

.dfp-message {
  color: #fcd307;
  font-size: 12px;
  min-height: 18px;
}

.dfp-download-qr-wrap {
  display: flex;
  justify-content: center;
  margin: -8px 0 18px;
}

.dfp-download-qr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(252, 211, 7, .34);
  border-radius: 10px;
  background: rgba(252, 211, 7, .08);
  color: #fcd307;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.dfp-download-qr-btn:hover {
  background: rgba(252, 211, 7, .14);
}

.dfp-chat-launcher {
  position: fixed;
  right: 18px;
  bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  z-index: 2147482400;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #fcd307 0%, #b88900 100%);
  color: #101828;
  box-shadow: 0 16px 42px rgba(252,211,7,.34), 0 0 0 8px rgba(252,211,7,.08);
  cursor: pointer;
}

.dfp-chat-launcher svg {
  width: 28px;
  height: 28px;
  display: block;
}

.dfp-chat-launcher:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(252,211,7,.42), 0 0 0 8px rgba(252,211,7,.1);
}

.dfp-chat-fallback {
  position: fixed;
  right: 16px;
  bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  z-index: 2147482500;
  width: min(380px, calc(100vw - 24px));
  max-height: min(640px, calc(100dvh - 112px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(252,211,7,.28);
  border-radius: 18px;
  background: #101828;
  color: #f8fafc;
  box-shadow: 0 24px 70px rgba(0,0,0,.48);
}

.dfp-chat-fallback-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.dfp-chat-fallback-head strong {
  font-size: 15px;
  font-weight: 900;
}

.dfp-chat-fallback-head button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}

.dfp-chat-fallback-list {
  min-height: 220px;
  overflow: auto;
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.dfp-chat-fallback-message {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}

.dfp-chat-fallback-message div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.dfp-chat-fallback-message strong {
  font-size: 12px;
  font-weight: 900;
}

.dfp-chat-fallback-message span {
  color: #fcd307;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.dfp-chat-fallback-message p {
  margin: 0;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.dfp-chat-fallback-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.dfp-chat-fallback-form textarea {
  min-height: 42px;
  max-height: 120px;
  resize: vertical;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 9px 11px;
  outline: none;
}

.dfp-chat-fallback-form button {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fcd307;
  color: #101828;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.dfp-chat-fallback-status {
  grid-column: 1 / -1;
  color: #fcd307;
  font-size: 12px;
  min-height: 16px;
}

.dfp-lc-panel {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  height: 100dvh !important;
  max-height: none !important;
  border-radius: 0 !important;
  background: #0f1726 !important;
  border-color: rgba(255,255,255,.08) !important;
}

@media (max-width: 639px) {
  .dfp-lc-panel {
    left: 0 !important;
    width: 100% !important;
    max-width: none !important;
  }
}

.dfp-lc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #111c2e;
}

.dfp-lc-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.dfp-lc-title svg {
  width: 24px;
  height: 24px;
  color: #fcd307;
}

.dfp-lc-head button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: rgba(239,68,68,.16);
  color: #ef4444;
  font-size: 18px;
  font-weight: 800;
}

.dfp-lc-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 12px 14px 16px;
  background: #0f1726;
}

.dfp-lc-message {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.dfp-lc-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border: 2px solid #fcd307;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #fcd307);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.dfp-lc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dfp-lc-message-body {
  min-width: 0;
}

.dfp-lc-message .lc-message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.dfp-lc-message .lc-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex-wrap: wrap;
}

.dfp-lc-message .lc-username {
  max-width: 120px;
  overflow: hidden;
  color: #fcd307;
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dfp-lc-message time {
  flex: 0 0 auto;
  color: rgba(226,232,240,.52);
  font-size: 10px;
}

.dfp-lc-badge {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border: 1px solid rgba(252,211,7,.34);
  border-radius: 6px;
  background: rgba(252,211,7,.12);
  color: #fcd307;
  font-size: 10px;
  font-weight: 800;
}

.dfp-lc-text {
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.dfp-lc-image {
  width: min(220px, 100%);
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
}

.dfp-lc-empty {
  margin: 24px auto;
  color: rgba(226,232,240,.62);
  font-size: 13px;
  text-align: center;
}

.dfp-lc-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(15,23,38,.98);
}

.dfp-lc-form .lc-text-input {
  min-height: 42px;
  max-height: 110px;
  resize: vertical;
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  color: #fff;
  padding: 10px 14px;
  outline: 0;
}

.dfp-lc-send {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #b88900;
  color: #101828;
}

.dfp-lc-send svg {
  width: 22px;
  height: 22px;
}

.dfp-lc-form .dfp-chat-fallback-status {
  grid-column: 1 / -1;
  min-height: 16px;
  color: #fcd307;
  font-size: 11px;
}

.dfp-search-popular-chip {
  color: #fcd307 !important;
  border-color: rgba(252, 211, 7, .34) !important;
  background: rgba(252, 211, 7, .08) !important;
}

.dfp-search-popular-chip:hover {
  color: #101828 !important;
  border-color: #fcd307 !important;
  background: #fcd307 !important;
}

.dfp-admin-extra-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.dfp-stat {
  background: rgba(31,41,55,.82);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 16px;
  padding: 14px;
}

.dfp-stat strong {
  display: block;
  font-size: 22px;
}

.dfp-stat span {
  color: #9ca3af;
  font-size: 12px;
}

.dracin-footer__inner.dfp-footer-has-translate {
  grid-template-columns: minmax(220px, 1.32fr) minmax(88px, .48fr) minmax(116px, .58fr) minmax(150px, .78fr) minmax(220px, 1.1fr);
  gap: clamp(22px, 3.2vw, 38px);
}

.dfp-footer-translate-slot {
  min-width: 0;
  color: #f8fafc;
}

.dfp-footer-translate-slot h3 {
  margin: 0 0 17px;
  color: #f8fafc;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.dfp-footer-translate-control {
  display: flex;
  align-items: center;
}

.dfp-footer-translate-control .dracin-language-button,
.dfp-footer-translate-slot .dracin-language-button {
  position: static !important;
  width: 54px !important;
  min-width: 54px !important;
  height: 36px !important;
  margin: 0 !important;
  transform: none !important;
}

.dfp-hidden-source-tab {
  display: none !important;
}

.dfp-delete-user-btn {
  margin-left: 10px;
  border: 1px solid rgba(248, 113, 113, .35);
  border-radius: 999px;
  background: rgba(248, 113, 113, .12);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 12px;
}

.dfp-delete-user-btn:disabled {
  cursor: wait;
  opacity: .7;
}

.dfp-platform-extra-hidden {
  display: none !important;
}

.dfp-native-more-hidden {
  display: none !important;
}

.dfp-more-drama-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: min(100% - 32px, 420px);
  min-height: 46px;
  margin: 18px auto 8px;
  border: 1px solid rgba(252,211,7,.45);
  border-radius: 999px;
  background: linear-gradient(135deg, #fcd307, #f59e0b);
  color: #111827;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 14px 26px rgba(252,211,7,.18);
  cursor: pointer;
}

.dfp-more-drama-btn span {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  line-height: 1;
}

.dfp-more-drama-btn svg {
  width: 21px;
  height: 21px;
}

@media (max-width: 900px) and (min-width: 521px) {
  .dracin-footer__inner.dfp-footer-has-translate {
    grid-template-columns: minmax(220px, 1.25fr) minmax(0, 1fr);
    gap: 34px 54px;
  }

  .dracin-footer__inner.dfp-footer-has-translate .dracin-footer__mobile-app {
    grid-column: span 2;
  }
}

@media (max-width: 520px) {
  .dracin-footer__inner.dfp-footer-has-translate {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .dfp-modal-backdrop {
    align-items: flex-start;
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
  }

  .dfp-modal {
    max-height: calc(100vh - 20px);
    border-radius: 18px !important;
  }

  .dfp-modal-body {
    padding: 14px;
  }

  .dfp-avatar-input-row,
  .dfp-free-setting-row,
  .dfp-free-settings-head {
    grid-template-columns: 1fr;
  }

  .dfp-free-settings-head {
    display: grid;
  }

  .dfp-free-toggle-placeholder {
    text-align: left;
  }

  .dfp-featured {
    gap: 8px;
    margin-bottom: 12px;
  }

  .dfp-featured a,
  .dfp-featured span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .dfp-platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .dfp-platform-card {
    min-height: 78px;
    padding: 8px 5px;
    font-size: 10.5px;
    border-radius: 11px !important;
  }

  .dfp-platform-card img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
}

@media (min-width: 430px) and (max-width: 720px) {
  .dfp-platform-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .dfp-global-search-wrap {
    width: min(100% - 24px, 680px);
    margin: 10px auto 14px;
  }

  .dfp-global-search {
    min-height: 48px;
    border-radius: 18px;
  }

  .dfp-global-search__icon {
    width: 46px;
  }

  .dfp-global-search__input {
    min-height: 48px;
    font-size: 14px;
  }

  .dfp-global-search__submit {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .dfp-top-tools {
    left: 0;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .dfp-tool-btn span {
    display: inline;
  }
}
