    .xferno-profile * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .xferno-profile {
      background-color: var(--bg-main);
      font-family: 'Segoe UI', sans-serif;
      color: var(--text-bright);
    }

    .xferno-profile .profilebanner {
    height: 220px;
    -webkit-mask-image: linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    mask-image: linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    isolation: isolate;
    position: relative;
    z-index: 0;
    height: 22.5rem;
    -webkit-mask-image: linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    mask: linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    /* z-index: -1; */
    margin-top: -114px;
    }

    .xferno-profile .avatar {
      width: 120px;
      height: 120px;
      border-radius: 20px;
      z-index: 10;
      position: relative;
      bottom: -30px;
    }

    .xferno-profile .avatar-actions {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-left: 19px;
      position: relative;
      bottom: -30px;
      z-index: 10;
    }

    .xferno-profile .profile-btn {
      background: linear-gradient(145deg, var(--card-bg), var(--highlight-bg));
      /* background-color: var(--button-bg); */
      color: var(--text-bright);
      border: none;
      padding: 8px 16px;
      border-radius: 12px;
      font-size: 0.95em;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      box-shadow: 0 0 6px var(--accent);
      transition: background 0.2s ease;
    }

    .xferno-profile .scan-btn:hover {
      background-color: var(--button-hover-bg);
    }

    .xferno-profile .dropdown {
      position: relative;
    }

    .xferno-profile .dropdown-toggle {
      background-color: var(--buttonx-bg);
      color: var(--text-bright);
      border: none;
      padding: 10px;
      border-radius: 50%;
      font-size: 1em;
      cursor: pointer;
    }

    .xferno-profile .dropdown-menu {
      position: absolute;
      top: 110%;
      right: 0;
      background-color: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      box-shadow: 0 4px 10px var(--shadow-color);
      display: none;
      flex-direction: column;
      min-width: 170px;
      z-index: 999;
    }

    .xferno-profile .dropdown-menu a {
      padding: 10px 16px;
      color: var(--text-bright);
      text-decoration: none;
      font-size: 0.95em;
      transition: background 0.2s ease;
    }

    .xferno-profile .dropdown-menu a:hover {
      background-color: var(--highlight-bg);
    }

    .xferno-profile .dropdown:hover .dropdown-menu {
      display: flex;
    }

    .xferno-profile .breadcrumbs {
      padding: 10px 30px;
      font-size: 0.9em;
      color: var(--text-muted);
    }

    .xferno-profile .layout {
      display: block;
      padding: 70px 30px 30px;
      gap: 20px;
    }

    .xferno-profile .profile-panel {
      width: 300px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .xferno-profile .profile-name {
      font-size: 1.6em;
      font-weight: bold;
      color: var(--red);
      margin-top: 10px;
    }

    .xferno-profile .check-badge {
      color: var(--accent);
      margin-left: 6px;
    }

    .xferno-profile .role {
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .xferno-profile .action-row {
      font-size: 1.2em;
      margin: 10px 20px;
    }

    .xferno-profile .profile-meta {
      font-size: 0.85em;
      color: var(--text-muted);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .xferno-profile .profile-meta i {
      color: var(--accent);
      margin-right: 6px;
    }

    .xferno-profile .content {
      flex: 1;
      /* margin-top: 47px; */
    }

    .xferno-profile .section-tabs {
      background-color: var(--card-bg);
      border-radius: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
      padding: 12px 0;
      font-weight: bold;
      font-size: 1em;
    }

    .xferno-profile .section-tabs i {
      margin-right: 6px;
    }

    .xferno-profile .cards {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .xferno-profile .card {
      background-color: var(--card-bg);
      border-radius: 10px;
      padding: 20px;
      flex: 1 1 48%;
      min-width: 300px;
    }

    .xferno-profile .card h3 {
      font-size: 1.1em;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      color: var(--accent);
    }

    .xferno-profile .card h3 i {
      margin-right: 10px;
    }

    .xferno-profile .post,
    .xferno-profile .listing {
      margin-bottom: 15px;
      border-top: 1px solid #222;
      padding-top: 10px;
      color: var(--text-muted);
    }

    .xferno-profile .post strong,
    .xferno-profile .listing strong {
      color: var(--text-bright);
    }

    .xferno-profile .post-meta,
    .xferno-profile .listing-meta {
      font-size: 0.8em;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 5px;
    }

    .xferno-profile .post-meta i,
    .xferno-profile .listing-meta i {
      color: var(--accent);
    }

    .xferno-profile a {
      /* color: var(--accent); */
      text-decoration: none;
    }

    .xferno-profile a:hover {
      color: var(--accent-dark);
    }

    @media (max-width: 900px) {
      .xferno-profile .layout {
        flex-direction: column;
      }

      .xferno-profile .profile-panel {
        width: 100%;
      }

      .xferno-profile .cards {
        flex-direction: column;
      } 
		.xferno-profile .content {
      flex: 1;
      margin-top: 0px !important;
    }

    }


.avatar-block {
  position: absolute;
  top: 326px; /* adjust as needed */
  left: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  flex-direction: row;
  width: 100%;
}

  .xferno-dropdown {
    position: relative;
    display: inline-block;
  }

  .xferno-toggle {
    background: #2c2c2c;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
  }

  .xferno-menu {
    position: absolute;
    top: 140%;
    right: 0;
    background: var(--card-bg);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    min-width: 160px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .xferno-menu a {
    padding: 8px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.2s ease;
  }

  .xferno-menu a:hover {
    background: #333;
  }

  .xferno-dropdown.open .xferno-menu {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
  }
.sidebar-right {flex: 1 1 38%;} .middle-item {    flex: 1 1 58%;}
  .block-wrapper {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px var(--shadow-color);
    width: 100%;
    margin-top: 1rem;
  }

  .block-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .block-title i {
    color: var(--accent);
    font-size: 1rem;
  }

  .badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .badge-grid img,
  .signature-content img {
    max-width: 100%;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: var(--highlight-bg);
    padding: 4px;
    transition: 0.3s ease;
  }

  .badge-grid img:hover {
    border-color: var(--accent-soft);
    transform: scale(1.03);
  }

  .signature-content {
    background: var(--highlight-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .info-label {
    font-weight: 500;
    color: var(--text-light);
  }

  .info-value {
    color: var(--text-bright);
    font-weight: 500;
    margin-left: 4px;
  }

  .info-value.accent {
    color: var(--accent-soft);
  }  .info-card {
    background-color: var(--highlight-bg);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px var(--shadow-color);

    width: 100%;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--highlight-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    gap: 1rem;
  }

  .info-row:hover .info-icon {
    color: var(--accent-soft);
  }

  .info-icon {
    color: var(--text-light);
    font-size: 1rem;
    flex-shrink: 0;
    transition: color 0.3s ease;
  }

  .info-label {
    flex-grow: 1;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .info-value {
    font-weight: 500;
    color: var(--text-bright);
    font-size: 0.85rem;
    max-width: 50%;
    text-align: right;
    word-break: break-word;
  }

  .info-value.accent {
    color: var(--accent-soft);
  }

  .music-wrapper {
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 16px var(--shadow-color);

    width: 100%;
    margin-top: 1rem;
  }

  .music-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-bright);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
  }

  .music-title i {
    color: var(--accent);
    font-size: 1rem;
  }

  .music-player iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
    outline: none;
  }

  @media (max-width: 500px) {
    .music-player iframe {
      height: 200px;
    }
  }
  .latest-visitor-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 6px 16px var(--shadow-color);
    width: 100%;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
	      margin-top: 1rem;
  }

  .latest-visitor-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-bright);
    letter-spacing: 0.4px;
  }

  .latest-visitor-title i {
    color: var(--accent);
  }

  .latest-visitor-content {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .latest-visitor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 20px;
    object-fit: cover;
    background-color: var(--buttonx-bg);
  }

  .latest-visitor-info {
    display: flex;
    flex-direction: column;
  }

  .visitor-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-bright);
  }

  .visitor-date {
    font-size: 0.75rem;
    color: var(--text-light);
  } 
.profilethreads-ui-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 5px 14px var(--shadow-color);
    max-width: 440px;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;    margin-top: 1rem;
  }

  .profilethreads-ui-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-bright);
    letter-spacing: 0.5px;
	   
  }

  .profilethreads-ui-title i {
    color: var(--accent);
    font-size: 1rem;
  }

  .profilethread-entry {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    background-color: var(--highlight-bg);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: border-color 0.3s ease, transform 0.2s ease;
  }

  .profilethread-entry:hover {
    border-color: var(--accent-soft);
    transform: translateY(-2px);
  }

  .profilethread-info {
    display: flex;
    flex-direction: column;
  }

  .profilethread-title {
    font-weight: 600;
    color: var(--text-bright);
    font-size: 0.87rem;
    transition: color 0.3s ease;
    cursor: pointer;
  }

  .profilethread-title:hover {
    color: var(--accent);
  }

  .profilethread-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
  }
.avatar-actions-button-wrap {display: flex
;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    position: relative;
    bottom: -30px;
    z-index: 10;

    flex-direction: column;
    margin-right: 50px;}}
  .avatar-actions-button {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    position: relative;
    bottom: -30px;
    z-index: 10;
    flex-wrap: wrap;
  }

  .profile-btn {
    /* background-color: var(--button-bg); */
    color: var(--text-bright);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    flex: 1 1 auto;
  }

  .profile-btn:hover {
    background-color: var(--button-hover-bg);
    color: var(--accent-soft);
    border-color: var(--accent);
  }

  .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    margin-left: auto;
    position: relative;
    bottom: -30px;
    z-index: 9;
  }

  .social-icons a {
    color: var(--text-light);
    font-size: 1rem;
    transition: color 0.2s ease;
  }

  .social-icons a:hover {
    color: var(--accent-soft);
  }

  @media (max-width: 480px) {
    .avatar-actions-button {
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .profile-btn {
      width: 100%;
    }

    .social-icons {
      justify-content: flex-end;
    }
  }  .avatar-actions-button {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    position: relative;
    bottom: -30px;
    z-index: 10;
    flex-wrap: wrap;
  }

  .profile-btn {
    /* background-color: var(--button-bg); */
    color: var(--text-bright);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    flex: 1 1 auto;
  }

  .profile-btn:hover {
    background-color: var(--button-hover-bg);
    color: var(--accent-soft);
    border-color: var(--accent);
  }

  .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    margin-left: auto;
    position: relative;
    bottom: -30px;
    z-index: 9;
  }

  .social-icons a {
    color: var(--text-light);
    font-size: 1rem;
    transition: color 0.2s ease;
  }

  .social-icons a:hover {
    color: var(--accent-soft);
  }

  @media (max-width: 480px) {
    .avatar-actions-button {
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .profile-btn {
    }

    .social-icons {
      justify-content: flex-end;
    }
  }

 @media (max-width: 680px) {
    .avatar-actions-button {
      flex-direction: row;
      align-items: flex-end;
      gap: 10px;
    }

    .profile-btn {
      justify-content: center;
    }


    .profile-btn span {
      display: none;
    }
  }
.xferno-panel-ui {
  max-width: 480px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.xferno-card-ui {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.xferno-card-ui:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.rep-vouches {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.xferno-card-ui .value {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 6px;
}
.rep, .vouches {
  flex: 1;
}

.label {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}


.bar-track {
  width: 100%;
  height: 8px;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 8px;
  transition: width 0.4s ease;
}

.bar-muted {
  background: var(--highlight-bg);
}

.tag {
  background: rgba(127, 86, 217, 0.15);
  color: var(--legend);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 14px;
  margin-left: 5px;
  display: inline-block;
}

.tag-success {
  background: rgba(0, 255, 136, 0.1);
}

.stats-ui {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 10px;
}

.stat {
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px 4px;
  border-radius: 8px;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(127, 86, 217, 0.25);
}

.stat i {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat .num {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-bright);
}

.stat small {
  font-size: 13px;
  color: var(--text-light);
}

.award-ui .award-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.award-header i {
  color: var(--accent);
}

.award-header .badge {
  margin-left: auto;
  background: var(--highlight-bg);
  color: var(--text-muted);
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 12px;
}

.award-body {
  text-align: center;
  padding: 16px 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.icon-faded {
  font-size: 42px;
  color: var(--text-light);
  opacity: 0.08;
  margin-bottom: 10px;
}

.award-body h4 {
  color: var(--text-bright);
  margin: 6px 0;
  font-size: 16px;
}

.award-body .note {
  font-size: 13px;
  color: var(--text-muted);
}

    .statprofiles-wrapper {
      background-color: var(--card-bg);
      padding: 1.5rem;
      border-radius: 16px;
      border: 1px solid var(--border-color);
      box-shadow: 0 6px 16px var(--shadow-color);
      width: 100%;
    }

    .statprofiles-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 1.2rem;
      color: var(--text-bright);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .statprofiles-title i {
      color: var(--accent);
      font-size: 1.2rem;
    }

    .user-statprofiles-card {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .statprofile {
      background-color: var(--highlight-bg);
      padding: 0.6rem 0.8rem;
      border-radius: 10px;
      text-align: center;
      min-width: 80px;
      flex: 1 1 80px;
      transition: all 0.3s ease;
      box-shadow: 0 0 0 transparent;
      border: 1px solid transparent;
    }

    .statprofile:hover {
      box-shadow: 0 0 12px var(--accent);
      border-color: var(--accent-soft);
      transform: translateY(-3px);
    }

    .statprofile .label {
      color: var(--text-light);
      font-size: 0.75rem;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }

    .statprofile .icon-value {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .statprofile i {
      color: var(--accent-soft);
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .statprofile:hover i {
      transform: scale(1.15) rotate(4deg);
    }

    .statprofile .value {
      color: var(--text-bright);
      font-weight: 600;
      font-size: 1rem;
    }

    @media (max-width: 500px) {
      .user-statprofiles-card {
        flex-direction: column;
        align-items: center;
      }

      .statprofiles-title {
        justify-content: center;
      }
    }

    .ban-wrapper {
      flex: 1 1 100%;
      width: 100%;
    }

    .ban-notice {
      background: var(--ban-bg);
      border-left: 5px solid var(--ban-red);
      border-radius: 12px;
      padding: 1.2rem 1.5rem;
      box-shadow: 0 0 10px rgba(255, 59, 59, 0.15);
    }

    .ban-notice h3 {
      color: var(--ban-red);
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .ban-notice em {
      color: var(--ban-red-soft);
      font-style: normal;
      display: block;
      margin-bottom: 0.4rem;
    }

    .ban-details {
      font-size: 0.9rem;
      color: var(--text-light);
    }

    .ban-details a {
      color: var(--ban-red-soft);
      text-decoration: none;
    }

    .ban-details a:hover {
      text-decoration: underline;
    }

    .moderate_banned {
      color: var(--ban-red);
      font-weight: bold;
    }
    .away-notice {
      background: var(--card-bg);
      border-left: 5px solid var(--away-yellow) !important;
      border-radius: 10px;
      padding: 1.2rem 1.5rem;
      /* max-width: 600px; */
      box-shadow: 0 0 10px rgba(255, 204, 102, 0.1);
      border: 1px solid var(--border-color);
      box-shadow: 0 6px 16px var(--shadow-color);
    }

    .away-notice h3 {
      color: var(--away-yellow);
      font-size: 1.15rem;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .away-notice em {
      color: var(--accent-soft);
      font-style: normal;
      display: block;
      margin-bottom: 0.5rem;
    }

    .away-meta {
      font-size: 0.9rem;
      color: var(--text-light);
    }
.add_buddy_button::before {
  content: "\f234"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.add_ignore_button::before {
  content: "\f05e"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.report_user_button::before {
  content: "\f071"; /* exclamation-triangle */
  font-family: "Font Awesome 6 Free";
	font-weight: 900;}
.message-btn::before {
  content: "\f0e0"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #9a7fe0;
}


.rate-btn::before {
  content: "\f005"; /* Font Awesome star */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffcc66;
}
:root {

      --ban-red: #ff3b3b;
      --ban-red-soft: #ff6f6f;
      --ban-bg: #1a1a1a;
	     --away-yellow: #ffcc66;
      --away-bg: #1b1b17;
    }

		
		