.user-section {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 1000px;
  margin: 30px auto;
}

.user-section-top {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.avatar-wrap {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
}

.avatar-wrap img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.avatar-edit {
  background: #e6191f;
  border-radius: 100%;
  padding: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.text b {
  display: block;
  font-size: 14px;
}

.text small {
  color: #bbb;
  font-size: 12px;
}

.user-section-btn {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.user-section-btn a {
  display: block;
  background: #1a1a1a;
  color: #bbb;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.user-section-btn .active2 {
  background: #a00;
  color: #fff;
}

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.wallet-card {
  background: #111;
  border: 1px solid #a00;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 15px;
}

.wallet-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;

}

.wallet-top img {
  width: 35px;
  height: 35px;
}

.wallet-card input {
  background: #1a1a1a;
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: #ddd;
  font-size: 12px;
}

.wallet-card input::placeholder {
  color: #777;
}

.save-btn {
  background: #e00;
  border: none;
  padding: 12px 0;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  margin-top: 25px;
  width: 100%;
  cursor: pointer;
  max-width: 307px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.verify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.verify-card {
  background: #111;
  border: 1px solid #a00;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.verify-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  position: relative;
  justify-content: center;
}

.verify-top img {
  max-width: 30px;
}

.verify-status {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  font-weight: 500;
}

.verified {
  background: #00b050;
  color: #fff;
}

.unverified {
  background: #e00;
  color: #fff;
}

/*.verify-close {
  color: #fff;
  background: #a00;
  font-size: 10px;
  border-radius: 50%;
  padding: 2px 5px;
  margin-left: 5px;
  cursor: pointer;
}*/

.verify-username {
  text-align: center;
  font-size: 13px;
  color: #bbb;
  margin: 5px 0;
}

.verify-input {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border-radius: 5px;
  padding: 5px 8px;
  gap: 5px;
}

.verify-input img {
  width: 18px;
  height: 12px;
}

.verify-input input {
  background: transparent;
  border: none;
  color: #ddd;
  font-size: 12px;
  flex: 1;
  outline: none;
}

.verify-card input {
  background: #1a1a1a;
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: #ddd;
  font-size: 12px;
}

.verify-card input::placeholder {
  color: #777;
}

.verify-card button {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.verify-card button:hover {
  background: #e00;
  color: #fff;
}

.verify-manage {
  background: #fff;
  color: #000;
}



.user-spon {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.user-spon__card {
  background: #111;
  border: 1px solid #a00;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
}

.user-spon__card img {
  max-width: 150px;
  height: 35px;
  object-fit: contain;
}

.user-spon__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.user-spon__logo {
  max-width: 180px;
  height: auto;
}

.user-spon__input {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  outline: none;
  transition: 0.2s;
}

.user-spon__input::placeholder {
  color: #aaa;
  font-size: 11px;
}

.user-spon__input:focus {
  background: #1a1a1a;
  border: 1px solid #a00;
}


.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.d-flex {
  display: flex;
}

.w-100 {
  width: 100% !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.row {
  display: flex;
  margin: 0 -5px;
}

.w-100 {
  width: 100% !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.sub-menu {
  display: flex;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border: none;
}

.sub-menu li a {
  padding: 7px 10px;
  border-radius: 10px;
  margin-right: 10px;
  font-size: 14px;
  color: rgba(var(--t), .7);
  font-weight: 500;
  display: flex;
  background: #0003;
  border: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
}

.sub-menu li a.router-link-active {
  background: rgba(var(--primary), 1);
  color: rgba(var(--primary-sc), 1);
}

table thead {
  background: rgba(var(--primary), 1);
  color: rgba(var(--primary-sc), 1);
}

table th,
table td {
  padding: 12px 10px;
  font-size: 14px;
  border: none !important;
  font-weight: 500;
  text-align: left;
}

.ticket_table th,
.ticket_table td {
  padding: 10px;
  font-size: 12px;
}

.pagination {
  display: flex;
  flex-direction: row;
}

.pagination li.disabled {
  opacity: .5;
}

.pagination li {
  margin: 0 2px;
}

.disabled {
  opacity: .2;
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  pointer-events: none !important;
}

.pagination li a {
  padding: 7px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--t), .1);
  color: rgba(var(--sc), .8);
}

.pagination li.active a {
  background: rgba(var(--primary), .1);
  color: rgba(var(--primary), 1);
}


.puan-section {
  padding: 30px 20px;
  background: #0e0e0e;
  color: #fff;
}

.puan-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.puan-subtitle {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 25px;
}

.puan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.puan-card {
  background: #111;
  border: 1px solid #a00;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.puan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.puan-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 1px solid #a00;
}

.puan-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.puan-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.puan-info p {
  font-size: 13px;
  color: #ccc;
  flex-grow: 1;
  line-height: 1.4;
  margin-bottom: 15px;
}

.puan-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.puan-points {
  font-weight: 700;
  font-size: 14px;
}

.puan-btn {
  background: #d40000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}

.puan-btn:hover {
  background: #ff1919;
}

/* 🔸 Адаптив */
@media (max-width: 768px) {
  .puan-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  .puan-img {
    height: 130px;
  }

  .puan-info h3 {
    font-size: 14px;
  }

  .puan-info p {
    font-size: 12px;
  }

  .puan-btn {
    font-size: 12px;
    padding: 7px 12px;
  }

  .user-section-btn {
    flex-direction: column;
  }

  .user-spon {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .ticket_table th,
  .ticket_table td {
    font-size: 12px;
    padding: 8px;
  }

  .sub-menu li a {
    font-size: 13px;
    padding: 7px 10px;
  }
    .sub-menu {
      flex-direction: column;
    }
}