#expose {
  padding: 24px 32px;
}

#expose * {
  box-sizing: border-box;
}

#expose .expose-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#expose .expose-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 70, 70, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 64, 64, 0.15), transparent 30%),
    linear-gradient(135deg, #090909 0%, #111111 45%, #170808 100%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#expose .expose-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 22px,
      rgba(255, 80, 80, 0.03) 22px,
      rgba(255, 80, 80, 0.03) 44px
    );
  pointer-events: none;
}

#expose .hero-badge-row {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}

#expose .hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

#expose .hero-badge.red {
  background: linear-gradient(90deg, #ff3d3d, #ff7b2c);
  color: #fff;
}

#expose .hero-badge.dark {
  background: rgba(255, 255, 255, 0.04);
  color: #cfd3d8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#expose .hero-main {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: end;
}

#expose .hero-main h3 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

#expose .hero-main p {
  margin: 10px 0 0;
  color: #b9c0c8;
  font-size: 14px;
  line-height: 1.8;
  max-width: 760px;
}

#expose .hero-side-note {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#expose .hero-side-note span {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 14px;
  color: #f2f4f6;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#expose .expose-main-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#expose .main-tab-btn {
  min-width: 120px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #151515, #0b0b0b);
  color: #d2d5d9;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.18s ease;
}

#expose .main-tab-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 90, 0.4);
}

#expose .main-tab-btn.active {
  background: linear-gradient(90deg, #ff3d3d, #ff7b2c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(255, 61, 61, 0.2);
}

#expose .main-panel {
  display: none;
}

#expose .main-panel.active {
  display: block;
}

#expose .dual-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 16px;
}

#expose .admin-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 16px;
}

#expose .panel-block {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 80, 80, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.98));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#expose .panel-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

#expose .panel-title.mini {
  margin-bottom: 12px;
}

#expose .panel-title strong {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

#expose .panel-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffb2b2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 90, 90, 0.2);
  background: rgba(255, 61, 61, 0.08);
}

#expose .target-search-box,
#expose .public-filter-row {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 10px;
}

#expose .public-filter-row {
  grid-template-columns: 1fr 180px 120px;
  margin-bottom: 16px;
}

#expose input[type="text"],
#expose input[type="file"],
#expose select,
#expose textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0d0d;
  color: #f4f5f7;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  font-size: 13px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

#expose textarea {
  resize: vertical;
  min-height: 160px;
}

#expose input:focus,
#expose select:focus,
#expose textarea:focus {
  border-color: rgba(255, 95, 95, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 70, 70, 0.08);
}

#expose .status-text {
  min-height: 20px;
  margin-top: 10px;
  color: #96a0ab;
  font-size: 12px;
  line-height: 1.6;
}

#expose .status-text.success {
  color: #56d48e;
}

#expose .status-text.error {
  color: #ff7b7b;
}

#expose .status-text.loading {
  color: #ffb158;
}

#expose .target-result-area {
  margin-top: 12px;
}

#expose .target-confirm-box,
#expose .target-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 61, 61, 0.06), rgba(255, 61, 61, 0.02));
  border: 1px solid rgba(255, 100, 100, 0.14);
}

#expose .target-confirm-box {
  grid-template-columns: 1fr;
  gap: 14px;
}

#expose .target-thumb {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  overflow: hidden;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#expose .target-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#expose .target-fallback {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff3d3d, #ff7b2c);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

#expose .target-fallback.sm {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  font-size: 18px;
}

#expose .target-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#expose .target-meta strong {
  color: #fff;
  font-size: 17px;
}

#expose .target-meta span {
  color: #a6afb8;
  font-size: 12px;
}

#expose .selected-target-wrap {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(86, 212, 142, 0.08);
  border: 1px solid rgba(86, 212, 142, 0.2);
}

#expose .selected-title {
  margin-bottom: 12px;
  color: #56d48e;
  font-size: 12px;
  font-weight: 800;
}

#expose .form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

#expose .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

#expose .field label {
  color: #dbe1e7;
  font-size: 12px;
  font-weight: 800;
}

#expose .warning-box {
  margin-top: 6px;
  border-radius: 18px;
  padding: 15px 16px;
  background:
    linear-gradient(180deg, rgba(255, 61, 61, 0.08), rgba(255, 123, 44, 0.05));
  border: 1px solid rgba(255, 100, 100, 0.16);
}

#expose .warning-title {
  margin-bottom: 8px;
  color: #ff8f8f;
  font-size: 12px;
  font-weight: 900;
}

#expose .warning-box ul {
  margin: 0;
  padding-left: 18px;
  color: #f0f2f4;
  font-size: 12px;
  line-height: 1.8;
}

#expose .form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

#expose .danger-btn,
#expose .ghost-btn {
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

#expose .danger-btn:hover,
#expose .ghost-btn:hover {
  transform: translateY(-1px);
}

#expose .danger-btn {
  color: #fff;
  background: linear-gradient(90deg, #ff3d3d, #ff7b2c);
  box-shadow: 0 12px 24px rgba(255, 61, 61, 0.18);
}

#expose .danger-btn.wide {
  min-width: 160px;
}

#expose .danger-btn.small,
#expose .ghost-btn.small {
  padding: 10px 14px;
  font-size: 12px;
}

#expose .ghost-btn {
  color: #e5e8eb;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#expose .ghost-btn.delete {
  color: #ff9c9c;
  border-color: rgba(255, 90, 90, 0.18);
}

#expose .archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

#expose .archive-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 90, 90, 0.1);
  background:
    linear-gradient(180deg, #111111 0%, #090909 100%);
}

#expose .archive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 61, 61, 0.04), transparent 35%);
  pointer-events: none;
}

#expose .archive-top,
#expose .archive-bottom,
#expose .admin-meta-line,
#expose .detail-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

#expose .archive-top {
  margin-bottom: 14px;
}

#expose .archive-bottom {
  margin-top: 14px;
}

#expose .archive-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 61, 61, 0.12);
  border: 1px solid rgba(255, 100, 100, 0.18);
  color: #ff9898;
  font-size: 11px;
  font-weight: 900;
}

#expose .archive-date {
  color: #7c8792;
  font-size: 12px;
}

#expose .archive-target {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

#expose .archive-target img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  background: #111;
}

#expose .archive-target.detail img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

#expose .archive-target div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#expose .archive-target strong {
  color: #fff;
  font-size: 15px;
}

#expose .archive-target span {
  color: #9ea8b2;
  font-size: 12px;
}

#expose .archive-card h5,
#expose .detail-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}

#expose .archive-card p,
#expose .detail-content {
  margin: 0;
  color: #d6dce2;
  font-size: 13px;
  line-height: 1.8;
}

#expose .detail-content {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#expose .detail-sub {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 14px;
}

#expose .media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

#expose .media-grid img,
#expose .media-grid video {
  width: 100%;
  display: block;
  border-radius: 16px;
  background: #000;
}

#expose .admin-list-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#expose .admin-list-item {
  text-align: left;
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 90, 90, 0.1);
  background: linear-gradient(180deg, #111111, #0a0a0a);
  cursor: pointer;
  transition: all 0.18s ease;
}

#expose .admin-list-item:hover {
  border-color: rgba(255, 90, 90, 0.28);
  transform: translateY(-1px);
}

#expose .admin-list-top,
#expose .admin-list-bottom {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

#expose .admin-list-top strong {
  color: #fff;
  font-size: 14px;
}

#expose .admin-list-top span,
#expose .admin-list-bottom span {
  color: #a1acb6;
  font-size: 12px;
}

#expose .admin-list-bottom {
  margin-top: 6px;
}

#expose .admin-detail-empty,
#expose .empty-box {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: #97a1ab;
  font-size: 13px;
  line-height: 1.7;
}

#expose .admin-detail-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#expose .appeal-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 123, 44, 0.08), rgba(255, 61, 61, 0.05));
  border: 1px solid rgba(255, 115, 70, 0.16);
}

#expose .overlay-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}

#expose .overlay-inner {
  width: min(1020px, 100%);
  max-height: 92vh;
  overflow: auto;
  position: relative;
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 90, 90, 0.16);
  background: linear-gradient(180deg, #101010, #070707);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46);
}

#expose .overlay-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 0;
  background: #1c1c1c;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1280px) {
  #expose .dual-grid,
  #expose .admin-split {
    grid-template-columns: 1fr;
  }

  #expose .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #expose .hero-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  #expose {
    padding: 18px 16px;
  }

  #expose .archive-grid,
  #expose .form-row.two,
  #expose .media-grid,
  #expose .public-filter-row,
  #expose .target-search-box {
    grid-template-columns: 1fr;
  }

  #expose .detail-head,
  #expose .archive-top,
  #expose .archive-bottom,
  #expose .admin-meta-line {
    flex-direction: column;
    align-items: flex-start;
  }

  #expose .hero-main h3 {
    font-size: 24px;
  }
}