.hunter-section {
  width: 100%;
  background-color: #0B1220;
  color: #ffffff;
  padding: 80px 24px;
}

.hunter-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hunter-header {
  max-width: 768px;
  margin-bottom: 64px;
}

.bracket-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  margin-bottom: 24px;
}

.bracket-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FF2D55;
  border-left: 2px solid #FF2D55;
}

.bracket-tag::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #FF2D55;
  border-right: 2px solid #FF2D55;
}

.bracket-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #FF2D55;
  text-transform: uppercase;
}

.hunter-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.dot-orange {
  color: #FF2D55;
  display: inline-block;
}

.hunter-description {
  font-size: 18px;
  line-height: 1.6;
  color: #9EA3B0;
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 640px;
}

.hunter-description strong {
  color: #FF2D55;
  font-weight: 600;
}

.hunter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.hunter-card {
  background-color: #111A2E;
  border: 1px solid rgba(31, 33, 40, 0.8);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
  z-index: 1;
}

.hunter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent 0deg,
    #FF2D55 60deg,
    transparent 120deg,
    transparent 180deg,
    #FF2D55 240deg,
    transparent 300deg
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -2;
}

.hunter-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background-color: #111A2E;
  border-radius: 15px;
  z-index: -1;
}

.hunter-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
}

.hunter-card:hover::before {
  opacity: 1;
  animation: spinBorder 2.5s linear infinite;
}

.hunter-card:hover .icon-circle {
  color: #FF2D55;
  border-color: rgba(255, 77, 23, 0.4);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.card-number {
  font-size: 44px;
  font-weight: 900;
  color: #FF2D55;
  letter-spacing: -0.03em;
  line-height: 1;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #FF2D55;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 16px;
  height: 16px;
}

.card-title-head {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.orange-divider {
  width: 32px;
  height: 2px;
  background-color: #FF2D55;
  margin-bottom: 24px;
}

.card-text {
  color: #9EA3B0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.dots-grid {
  width: 80px;
  height: 32px;
  margin-top: 32px;
  opacity: 0.3;
  background-image: radial-gradient(#FF2D55 1.5px, transparent 1.5px);
  background-size: 8px 8px;
}

.hunter-footer-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  margin-top: 32px;
}

.dashed-line {
  flex-grow: 1;
  border-top: 1px dashed rgba(255, 77, 23, 0.3);
}

.center-logo-box {
  margin: 0 16px;
  width: 24px;
  height: 24px;
  border: 2px solid #FF2D55;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0A0B0D;
  position: relative;
}

.box-white {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
}

.box-orange {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  background-color: #FF2D55;
}

@keyframes spinBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .hunter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hunter-title {
    font-size: 2.25rem;
  }
  
  .hunter-description {
    font-size: 16px;
  }
  
  .btn-hunter {
    width: 100%;
  }
}