* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f9;
  color: #222;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.header h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.sub {
  margin: 0 0 8px;
  color: #555;
  line-height: 1.5;
}

.updated {
  margin: 0 0 20px;
  color: #777;
  font-size: 14px;
}

.controls {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.controls input,
.controls select {
  padding: 12px;
  border: 1px solid #d7d7dc;
  border-radius: 10px;
  font-size: 14px;
}

.controls input {
  flex: 1;
  min-width: 220px;
}

.stats {
  margin-bottom: 16px;
  color: #555;
  font-size: 14px;
}

.app-list {
  display: grid;
  gap: 14px;
}

.card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 14px;
  align-items: center;
}

/* 🔥 아이콘 영역 */
.card-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.card-thumb img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  background: #eee;
  display: block;
}

/* 🔥 리뷰 배지 */
.thumb-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff5a5f;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 6px 7px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* 텍스트 */
.card-body {
  flex: 1;
}

.card-body h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.card-body p {
  margin: 2px 0;
  color: #666;
  font-size: 14px;
}

/* 버튼 */
.card a {
  color: #0b57d0;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

.empty {
  padding: 24px;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e5ea;
  color: #666;
}

.footer-link {
  margin-top: 32px;
  padding-top: 12px;
  text-align: right;
  font-size: 14px;
  color: #666;
}

.footer-link a {
  color: #666;
  text-decoration: none;
}

.footer-link a:hover {
  text-decoration: underline;
}
