.app-info {
  min-height: 100vh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Helvetica Neue", Arial;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.1), transparent 45%),
    #f5f7fb;
  color: #1f2328;
  display: flex;
  flex-direction: column;
}
.app-info__inner {
  width: min(960px, 92%);
  margin: 0 auto;
  padding: 60px 0 80px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.app-info__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.app-info__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.app-info__subtitle {
  margin: 0;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}
.app-info__cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.app-card {
  position: relative;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 18px;
  padding: 28px 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.app-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(37, 99, 235, 0.05);
}
.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(37, 99, 235, 0.12);
}
.app-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(37, 99, 235, 0.05));
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.app-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: "Inter", "Segoe UI", "SF Pro Display", sans-serif;
}
.app-card__text {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  font-family: "Inter", "Segoe UI", "SF Pro Text", sans-serif;
}
.app-card__footer {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #2563eb;
  font-weight: 600;
  font-family: "Inter", "Segoe UI", "SF Pro Display", sans-serif;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  align-self: flex-start;
}
.app-card__footer svg {
  width: 16px;
  height: 16px;
}
.app-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(6px);
  z-index: 40;
}
.app-overlay[data-open="true"] {
  display: flex;
}
.app-slider {
  width: min(640px, 95vw);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 28px 68px rgba(15, 23, 42, 0.28);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.app-slider__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.app-slider__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: "Inter", "Segoe UI", "SF Pro Display", sans-serif;
}
.app-slider__desc {
  margin: 8px 0 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  font-family: "Inter", "Segoe UI", "SF Pro Text", sans-serif;
}
.app-slider__close {
  border: none;
  background: rgba(226, 232, 240, 0.45);
  color: #1f2937;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  position: absolute;
  top: 18px;
  right: 18px;
}
.app-slider__close:hover {
  background: #2563eb;
  color: #fff;
}
.app-slider__body {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.12);
}
.app-slider__viewport {
  display: flex;
  transition: transform 0.3s ease;
}
.app-slider__page {
  min-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(37, 99, 235, 0));
}
.app-slider__page h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  font-family: "Inter", "Segoe UI", "SF Pro Display", sans-serif;
}
.app-slider__page p {
  margin: 0;
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  font-family: "Inter", "Segoe UI", "SF Pro Text", sans-serif;
}
.app-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.app-slider__steps {
  display: inline-flex;
  gap: 8px;
}
.app-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  transition: transform 0.2s ease, background 0.2s ease;
}
.app-slider__dot[data-active="true"] {
  background: #2563eb;
  transform: scale(1.2);
}
.app-slider__nav {
  display: flex;
  gap: 10px;
}
.app-slider__btn {
  border: none;
  background: #2563eb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.app-slider__btn[disabled] {
  background: #94a3b8;
  cursor: default;
  box-shadow: none;
}
.app-slider__btn:not([disabled]):hover {
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}
.app-settings {
  margin-top: 8px;
  padding: 24px 22px 26px;
  border-radius: 18px;
  border: 1px dashed rgba(37, 99, 235, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.app-settings[data-loading="true"] > * {
  opacity: 0.42;
  pointer-events: none;
}
.app-settings[data-loading="true"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.7), rgba(255,255,255,0.25));
  transform: translateX(-100%);
  animation: app-settings-shimmer 1.25s ease-in-out infinite;
  z-index: 2;
}
.app-settings[data-loading="true"]::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.5);
  border-top-color: rgba(37, 99, 235, 0.85);
  animation: app-spin 0.7s linear infinite;
  z-index: 3;
}
.app-settings__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.app-settings__subtitle {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}
.app-settings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.app-settings__card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.02), rgba(37, 99, 235, 0.02));
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-settings__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.app-settings__card-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}
.app-settings__card-text {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}
.app-settings__card-body {
  margin-top: 6px;
  padding: 12px 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-settings__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.app-settings__row-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.app-settings__row-label {
  font-size: 13px;
  color: #111827;
  font-weight: 600;
}
.app-settings__row-hint {
  font-size: 11px;
  color: #6b7280;
}
.app-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-field__label {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}
.app-field__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.app-field__bulk {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 999px;
  border: 1px solid #c7d2fe;
  background: #eef2ff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  color: #1d4ed8;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.app-field__bulk:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
  box-shadow: 0 4px 10px rgba(129, 140, 248, 0.35);
}
.app-field__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 8px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  min-height: 120px;
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f9fafb;
  position: relative;
}
.app-field__checkboxes[data-disabled="true"] {
  background: #f3f4f6;
  pointer-events: none;
}
.app-field__checkboxes[data-disabled="true"] .app-field__checkbox {
  color: #9ca3af;
}
.app-field__checkboxes[data-disabled="true"] input[type="checkbox"] {
  opacity: 0.35;
  filter: grayscale(1);
}
.app-field__bulk:disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.app-field__empty {
  height: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #6b7280;
}
.app-field__empty-icon svg {
  width: 32px;
  height: 32px;
  stroke: #a5b4fc;
  fill: none;
  stroke-width: 1.7;
}
.app-field__empty-icon rect {
  fill: #eef2ff;
  stroke: #c7d2fe;
}
.app-field__empty-text {
  margin: 0;
  font-size: 12px;
  text-align: center;
}
.app-field__checkboxes[data-loading="true"] {
  pointer-events: none;
  overflow-y: hidden;
}
.app-field__checkboxes[data-loading="true"]::-webkit-scrollbar {
  width: 0;
}
.app-field__checkboxes[data-loading="true"]::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: rgba(249, 250, 251, 0.9);
  z-index: 1;
}
.app-field__checkboxes[data-loading="true"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.65);
  border-top-color: transparent;
  animation: app-spin 0.7s linear infinite;
  z-index: 2;
}
.app-field__checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #111827;
}
.app-field__checkbox input {
  width: 14px;
  height: 14px;
}
.app-field__checkbox span {
  white-space: normal;
  word-break: break-word;
}
.app-field__checkboxes::-webkit-scrollbar {
  width: 8px;
}
.app-field__checkboxes::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}
.app-field__checkboxes::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.app-field__checkboxes::-webkit-scrollbar-thumb:hover {
  background: rgba(107, 114, 128, 0.8);
}
.app-select {
  position: relative;
  width: 100%;
}
.app-select__trigger {
  width: 100%;
  height: 32px;
  padding: 0 28px 0 10px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 13px;
  color: #111827;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.app-select__trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app-select__trigger::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #9ca3af;
  pointer-events: none;
}
.app-select[data-open="true"] .app-select__trigger {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
}
.app-select[data-open="true"] .app-select__trigger::after {
  transform: translateY(-40%) rotate(180deg);
  border-top-color: #2563eb;
}
.app-select__menu {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  max-height: 220px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
  padding: 4px;
  display: none;
  z-index: 5;
  overflow-y: auto;
}
.app-select[data-open="true"] .app-select__menu {
  display: block;
}
.app-select__option {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 8px;
  color: #111827;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.app-select__option:hover {
  background: rgba(37, 99, 235, 0.06);
}
.app-select__option[data-active="true"] {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}
.app-select__menu::-webkit-scrollbar {
  width: 6px;
}
.app-select__menu::-webkit-scrollbar-track {
  background: transparent;
}
.app-select__menu::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.9);
  border-radius: 999px;
}
.app-select__menu::-webkit-scrollbar-thumb:hover {
  background: rgba(107, 114, 128, 0.95);
}
.app-field__hint {
  font-size: 11px;
  color: #6b7280;
}
.app-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.app-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.app-switch__slider {
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: #e5e7eb;
  position: relative;
  transition: background 0.2s ease;
}
.app-switch__slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
  transition: transform 0.2s ease;
}
.app-switch__slider::after {
  content: "";
  position: absolute;
  display: none;
}
.app-switch[data-loading="true"] .app-switch__slider {
  background: #e5e7eb;
}
.app-switch[data-loading="true"] .app-switch__slider::before {
  opacity: 0;
}
.app-switch[data-loading="true"] .app-switch__slider::after {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(156, 163, 175, 0.9);
  border-top-color: #4b5563;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: app-switch-spin 0.7s linear infinite;
}
.app-switch input:checked + .app-switch__slider {
  background: #2563eb;
}
.app-switch input:checked + .app-switch__slider::before {
  transform: translateX(18px);
}
.app-switch[data-loading="true"] .app-switch__slider,
.app-switch[data-loading="true"] input:checked + .app-switch__slider {
  background: #e5e7eb !important;
}
.app-settings__actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}
.app-settings__save {
  border: none;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease, opacity 0.2s ease;
}
.app-settings__save:hover {
  background: #020617;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
}
.app-settings__save:active {
  transform: translateY(1px) scale(0.98);
}
.app-settings__save[data-state="saving"] {
  min-width: 118px;
}
.app-settings__save[data-state="success"] {
  background: #059669;
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.24);
}
.app-settings__save[data-state="error"] {
  background: #dc2626;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.2);
}
.app-settings__save:disabled,
.app-settings__cancel:disabled {
  cursor: default;
  opacity: 0.8;
}
.app-settings__save-spinner {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  animation: app-spin 0.7s linear infinite;
  flex: 0 0 14px;
}
.app-settings__cancel {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #4b5563;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.app-settings__cancel:hover {
  background: #f3f4f6;
  box-shadow: 0 6px 14px rgba(148, 163, 184, 0.35);
}
@keyframes app-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes app-switch-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes app-settings-shimmer {
  100% {
    transform: translateX(100%);
  }
}
@media (max-width: 720px) {
  .app-info__inner {
    padding: 36px 0 60px;
  }
  .app-card {
    padding: 22px 20px;
  }
  .app-slider {
    padding: 26px 22px;
  }
  .app-slider__header {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .app-slider__title {
    align-self: flex-start;
    font-size: 22px;
  }
  .app-slider__desc {
    font-size: 13px;
  }
  .app-slider__page {
    padding: 22px 20px;
  }
  .app-settings {
    padding: 18px 16px 20px;
  }
}


