@charset "UTF-8";
.CSS-regular-acc-state-cl {
  background-color: var(--vcn-regular-acc-state-cl);
}

#load-more-container.QUERY-is-more {
  display: block;
}
#load-more-container.QUERY-no-more {
  display: none;
}

#arrows-animation {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 120px;
  overflow: visible;
}
#arrows-animation::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 240, 255, 0.4) 0%, rgba(0, 240, 255, 0.16) 36%, rgba(0, 240, 255, 0) 72%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: arrow-cluster-flash 2.8s ease-in-out infinite;
}
#arrows-animation .arrow {
  position: relative;
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.9)) drop-shadow(0 0 24px rgba(0, 240, 255, 0.65));
  animation: neon-arrow-pulse 1.4s ease-in-out infinite;
}
#arrows-animation .arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: linear-gradient(135deg, #9bfaff 0%, #00f0ff 42%, #2a7bff 100%);
  clip-path: polygon(0 74%, 74% 74%, 74% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.7), 0 0 20px rgba(42, 123, 255, 0.5);
}
#arrows-animation .arrow-sliding {
  position: absolute;
  top: 0;
  animation: neon-arrow-flow 1.4s cubic-bezier(0.2, 0.95, 0.45, 1) infinite;
  opacity: 0;
  will-change: transform, opacity;
}
#arrows-animation .delay1 {
  animation-delay: 0.3s;
}
#arrows-animation .delay2 {
  animation-delay: 0.6s;
}

@keyframes neon-arrow-flow {
  0% {
    opacity: 0;
    transform: translateY(-18px) scale(0.42);
  }
  20% {
    opacity: 1;
    transform: translateY(22px) scale(1.22);
  }
  55% {
    opacity: 1;
    transform: translateY(68px) scale(1.02);
  }
  100% {
    opacity: 0;
    transform: translateY(128px) scale(0.34);
  }
}

@keyframes neon-arrow-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.9)) drop-shadow(0 0 24px rgba(0, 240, 255, 0.65));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(0, 240, 255, 1)) drop-shadow(0 0 34px rgba(0, 240, 255, 0.9));
  }
}

@keyframes arrow-cluster-flash {
  0%,
  58%,
  100% {
    opacity: 0.26;
    transform: translate(-50%, -50%) scale(0.88);
  }
  64% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1.14);
  }
  72% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(0.96);
  }
}

.STATE-account-avatar-on-responsive {
  width: max-content;
}
@media screen and (max-width: 600px) {
  .STATE-account-avatar-on-responsive {
    width: 100%;
  }
}

.STATE-account-avatar-wrapper-on-responsive {
  padding: 40px 100px;
}
@media screen and (max-width: 600px) {
  .STATE-account-avatar-wrapper-on-responsive {
    padding: 40px 20px;
  }
}

.CSS-account-card-animate-scaling {
  animation: animate-scaling 0.5s linear infinite backwards;
}
@keyframes animate-scaling {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* animation cho loại acc đặc biệt - đường viền chạy xung quanh card */
.CSS-acc-type-special-shine-animation {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.CSS-acc-type-special-shine-animation::before {
  content: "";
  background-image: conic-gradient(#0011ff 20deg, transparent 120deg);
  width: 150%;
  height: 150%;
  position: absolute;
  z-index: 10;
  animation: acc-type-special-shine-animation-rotate-1 1s linear infinite;
}
.CSS-acc-type-special-shine-animation::after {
  content: "";
  background-image: conic-gradient(#ff00fb 20deg, transparent 120deg);
  width: 150%;
  height: 150%;
  position: absolute;
  z-index: 10;
  animation: acc-type-special-shine-animation-rotate-2 1s linear infinite;
}
.CSS-acc-type-special-shine-animation .CSS-acc-type-special-shine-animation-content {
  position: relative;
  z-index: 20;
}

/* Styles for requirement component */
/* Container tổng của Account Card */
.account-card {
  display: flex;
  align-items: stretch;
  gap: 15px;
  margin-bottom: 20px;
}

.account-card-main {
  flex: 1;
}

/* --- Card Yêu cầu máy (Tông màu sáng, theo website) --- */
.requirement-section {
  width: 120px; /* Độ rộng cố định trên Laptop */
  background-color: #f0f9ff; /* Màu xanh nhạt cực sáng (tông blue của web) */
  border: 1px solid var(--vcn-regular-blue-cl, #38bdf8); /* Border theo tone chủ đạo */
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.requirement-header {
  font-size: 0.9em;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
  color: var(--vcn-regular-blue-cl, #0369a1);
  text-transform: uppercase;
}

/* Container chứa các item */
.requirement-data {
  display: flex;
  flex-direction: column; /* Laptop: xếp dọc */
  gap: 8px;
  flex: 1; /* Chiếm hết chiều cao còn lại của card */
}

/* Từng item trong card */
.requirement-item {
  flex: 1; /* CHIA ĐỀU: các item sẽ có độ cao/rộng bằng nhau để lấp đầy card */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.85em;
  font-weight: 500;
  text-align: center;
}

/* Item được Highlight: Đỏ gaming rực rỡ */
.requirement-item.highlight {
  background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
  color: #ffffff;
  font-weight: bold;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.2);
}

/* --- Responsive cho Mobile --- */
@media screen and (max-width: 768px) {
  .account-card {
    flex-direction: column; /* Đẩy section xuống dưới */
  }

  .requirement-section {
    width: 100%; /* Chiếm hết chiều ngang điện thoại */
    flex-direction: column; /* Giữ header ở trên, data ở dưới */
  }

  .requirement-data {
    flex-direction: row; /* CHUYỂN THÀNH HÀNG NGANG TRÊN MOBILE */
    width: 100%;
  }

  .requirement-item {
    flex: 1; /* CHIA ĐỀU: mỗi item chiếm % chiều ngang bằng nhau */
    white-space: nowrap;
    padding: 10px 5px;
  }
}