.chinelo-captcha-card {
  width: 520px;
  background: #fff;
  border: 1px solid #cfcfcf;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

.chinelo-header {
  background: #1a73e8;
  color: white;
  padding: 18px 22px;
}

.chinelo-header-small {
  font-size: 18px;
  line-height: 1.2;
}

.chinelo-header-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 4px;
}

.chinelo-body {
  padding: 10px;
}

.chinelo-game-area {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 10px;
  align-items: stretch;
}

.chinelo-drop-area {
  min-height: 330px;
  border: 3px solid transparent;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.18s ease;
  position: relative;
  overflow: hidden;
}

.chinelo-drop-area.hovering {
  border-color: #1a73e8;
  background: #eef5ff;
}

.chinelo-drop-area.fixed {
  background: #f1fff3;
  border-color: #188038;
}

.chinelo-img {
  width: 95%;
  max-height: 250px;
  object-fit: contain;
  pointer-events: none;
}

.chinelo-drop-hint {
  margin-top: 12px;
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.chinelo-items-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.chinelo-item-card {
  height: 74px;
  border: 1px solid #ddd;
  background: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition: 0.15s ease;
}

.chinelo-item-card:hover {
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.chinelo-item-card.dragging {
  width: 140px;
  cursor: grabbing;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transform: scale(1.04);
}

.chinelo-item-card.wrong {
  animation: chineloWrong 0.35s ease;
  border-color: #d93025;
}

.chinelo-tool-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  pointer-events: none;
}

.chinelo-tool-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.chinelo-status {
  min-height: 22px;
  font-size: 14px;
  color: #444;
  margin: 12px 4px 4px;
  text-align: center;
}

.chinelo-footer {
  border-top: 1px solid #ddd;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chinelo-footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chinelo-refresh-btn {
  border: none;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #111;
}

.chinelo-timer {
  font-size: 26px;
  font-weight: 700;
  color: red;
  font-family: Arial, sans-serif;
}

.chinelo-verify-btn {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 18px;
  cursor: pointer;
}

.chinelo-verify-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.chinelo-verify-btn.wrong {
  animation: chineloWrong 0.35s ease;
  background: #d93025;
}

@keyframes chineloWrong {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-6px);
  }

  50% {
    transform: translateX(6px);
  }

  75% {
    transform: translateX(-6px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 620px) {
  .chinelo-captcha-card {
    width: 94vw;
  }

  .chinelo-game-area {
    grid-template-columns: 1fr;
  }

  .chinelo-items-area {
    grid-template-columns: repeat(2, 1fr);
  }

  .chinelo-item-card {
    height: 86px;
    flex-direction: column;
    gap: 4px;
  }
}