.detective-ui {
  width: 760px;
  margin: 40px auto;
  padding: 60px 40px;
  box-sizing: border-box;

  font-family: 'Cinzel', serif;
  color: #B2B2B2;
  text-align: center;

  position: relative;
  overflow: hidden;

  min-height: 950px;

  background: #0e0a07;

  border: 1px solid rgba(224, 201, 138, 0.2);

  box-shadow:
    inset 0 0 120px rgba(0,0,0,0.9),
    inset 0 0 60px rgba(0,0,0,0.7),
    0 0 40px rgba(0,0,0,0.7);
}

/* BG */
.detective-ui::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url(https://i.postimg.cc/9XJwkJ8B/clement.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;

  opacity: 0.35;
  z-index: 0;
}

.detective-ui::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(14,10,7,0) 0%,
    rgba(14,10,7,0.3) 40%,
    rgba(14,10,7,0.8) 75%,
    rgba(14,10,7,1) 100%
  );

  z-index: 1;
}

.detective-ui > * {
  position: relative;
  z-index: 2;
}

/* ? BAŞLIK */
.section-title {
  font-size: 15px;
  letter-spacing: 4px;
  margin: 30px 0 15px; /* ? azaltıldı */
  position: relative;
  color: #d6c08a;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: rgba(224, 201, 138, 0.4);
}

.section-title::before { left: 0; }
.section-title::after { right: 0; }

/* ABOUT */
.about {
  font-size: 11px;
  line-height: 1.2;
  margin-bottom: 30px; /* ? azaltıldı */
  color: #A2A2A2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: arial;
  text-align: justify;
}

/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  gap: 20px;

  margin-bottom: 30px; /* ? dengelendi */
  transform: translateX(-12px);
}

/* CARD */
.card {
  width: 180px;
  height: 230px;
  padding: 18px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: rgba(20,12,8,0.9);

  border: 1px solid rgba(224, 201, 138, 0.25);
  position: relative;

  transition: all 0.25s ease;

  color: #d6c08a;
}

.card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(224, 201, 138, 0.15);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(224, 201, 138, 0.25);
}

/* TEXT */
.title {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.desc {
  font-size: 11px;
  line-height: 1.4;
}

.case {
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid rgba(224, 201, 138, 0.2);
  padding-top: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}