:root {
  --depth: 150px;
  --bg: rgb(24 28 38 / 1);
  --success: #22c55e;
  --error: #ef4444;
  --text: #f1f5f9;
  --card-bg: rgba(255, 255, 255, 0.03);
  --pbcolor: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  font-size: 16px;
  line-height: 1.5;
  --tw-bg-opacity: 1;
  background-color: rgb(24 28 38 / var(--tw-bg-opacity, 1));
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #fff;
}

body::-webkit-scrollbar {
  display: none;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  color: #5c92ff;
  font-weight: bold;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.pc {
  display: block;
}

.mobile {
  display: none;
}

.header {
  width: 100%;
  height: 60px;
  background-color: #1e232f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .logo {
  font-family: "Poppins", "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(180deg, #93c5fd, #5c92ff, #1e3a8a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.header-activities {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.header-notif {
  color: white;
  margin-right: 80px;
}

.header-notif:hover {
  color: #5c92ff;
}

.header-balance-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  height: 40px;
  padding: 0 11px;
  min-width: 100px;
  background: linear-gradient(
    to bottom,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 10px;
  margin-right: 80px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.header-balance-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #5c92ff, #3865cc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 2px 6px rgba(92, 146, 255, 0.4);
}

.header-balance-icon svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.header-balance-amount {
  font-size: 17px;
  text-align: left;
  align-items: center;
  justify-content: left;
}

.header-profile-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  height: 40px;
  padding: 0 11px;
  min-width: 100px;
  background: linear-gradient(
    to right,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 10px;
  margin-right: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.header-profile-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  margin-right: 8px;
}

.header-profile-name {
  font-size: 17px;
  text-align: left;
  align-items: center;
  justify-content: left;
}

.buttons-auth {
  display: flex;
  gap: 10px;
  justify-content: end;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.buttons-auth .sign-in {
  padding: 6px 20px;
  background-color: transparent;
  border: 1px solid #5c92ff;
  border-radius: 8px;
  color: #5c92ff;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.buttons-auth .sign-in:hover {
  background-color: #5c92ff;
  color: #ffffff;
}

.buttons-auth .sign-up {
  padding: 8px 20px;
  background-color: #5c92ff;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buttons-auth .sign-up:hover {
  background-color: #5d8ae6;
}

.live-offers {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  overflow: auto;
}

.live-offers::-webkit-scrollbar {
  display: none;
}

.live-offers .payment-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #5c92ff;
  border-radius: 8px;
  padding: 4px;
  background-color: #0c1020;
  color: white;
}

.live-offers .payment-card .avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  margin-right: 10px;
}

.live-offers .payment-card .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.live-offers .payment-card .payment-left {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-right: 5px;
}

.live-offers .payment-card .payment-left .title {
  font-weight: 650;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 110px;
}

.live-offers .payment-card .payment-left .subtitle {
  font-size: 13px;
  color: #d0d0d0;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 70px;
}

.live-offers .payment-card .payment-amount {
  background-color: #5c92ff;
  color: white;
  padding: 4px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  margin-left: 5px;
}

.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 998;
}

.blur-background.active {
  opacity: 1;
  pointer-events: auto;
}

.start-form {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 800;
  position: fixed;
  left: 50%;
  top: 50%;
  overflow-y: auto;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(135deg, #1e3a8a, #020202dc 40%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  width: 420px;
  text-align: center;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 999;
  color: #fff;
}

.start-form::-webkit-scrollbar {
  display: none;
}

.start-form.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.start-form .close-btn {
  outline: transparent solid 2px;
  outline-offset: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  background-color: transparent;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, fill 0.2s,
    stroke 0.2s, opacity 0.2s, box-shadow 0.2s, transform 0.2s;
  --close-button-size: 1.25rem;
  font-size: 11px;
  position: absolute;
  right: 16px;
  border-radius: 50%;
  border: 1.25px solid #1e3a8a;
  z-index: 10000;
  top: 16px;
  margin-bottom: 1.5rem;
}

.start-form .close-btn:hover {
  background: #5c92ff;
  color: #fff;
  border-color: #5c92ff;
}

.start-form .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-label {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 6px;
  display: block;
  text-align: left;
  font-weight: 800;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.426rem 0.9375rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.625;
  color: #cccade;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #403f44;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #5c92ff;
  box-shadow: 0 0 5px rgba(92, 146, 255, 0.5);
}

.justify-content-between {
  justify-content: space-between !important;
}

.d-flex {
  display: flex !important;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-check-label {
  color: #cccade;
  cursor: pointer;
  font-size: 14px;
}

.form-check-input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1em;
  height: 1em;
  margin-top: 0.4em;
  border-radius: 0.267em;
  border: 2px solid #65646d;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.form-check-input[type="checkbox"]:checked {
  background-color: #5c92ff;
  border-color: #5c92ff;
}

.form-check-input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.8em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.4em;
  background-color: transparent;
  background: transparent;
  border: 2px solid #65646d;
}

.extra {
  font-size: 14px;
  color: #aaa;
}

.extra a {
  color: #5c92ff;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background: #1e3a8a;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
  margin-bottom: 10px;
}

.btn-primary:hover {
  background: #5c92ff;
}

.form-alrt {
  color: #65646d !important;
  font-size: 13px;
  margin-top: 10px;
}

.alert-msg {
  color: #ff6b6b !important;
  font-size: 1em;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.alert-warning {
  color: #ddac0b !important;
}
.alert-danger {
  color: #ff6b6b !important;
}

.alert-success {
  color: #70ff6b !important;
}

.head-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 1.7rem;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
}

.h2-title {
  font-size: 3.8rem;
  margin-bottom: 0.5rem;
  line-height: 2.5rem 40px;
  font-weight: 800;
  color: var(--h2tclr);
}

.p-subtitle {
  font-size: 2.2rem;
  line-height: 2rem;
  color: var(--psclr);
  font-weight: 900;
}

.cursor {
  display: inline-block;
  color: #5c92ff;
  margin-left: 2px;
  animation: blink 0.7s infinite;
}

.home-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(auto, 1fr));
  gap: 20px;
  padding: 20px;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.stage-work {
  width: 700px;
  height: 420px;
  perspective: 1400px;
}

.wrapper-work {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: stepRotate 30s infinite;
}

.card-h-work {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 190px;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(to bottom, #2d3547, #1a1f2b);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 800;
  padding: 10px;
}

.card-h-work--center {
  transform: translate(-50%, -50%) rotateY(0deg) translateZ(var(--depth));
}

.card-h-work--right {
  transform: translate(-50%, -50%) rotateY(120deg) translateZ(var(--depth));
}

.card-h-work--left {
  transform: translate(-50%, -50%) rotateY(-120deg) translateZ(var(--depth));
}

.card-h-work-title {
  color: #5c92ff;
  text-align: center;
  font-size: 17px;
  margin-bottom: 15px;
  font-weight: 700;
}

.card-h-work-title-play {
  color: #5c92ff;
  text-align: center;
  font-size: 17px;
  margin-bottom: 0px;
  font-weight: 700;
}

.card-h-work-title-play-img {
  width: 100%;
  height: auto;
  margin-top: -20px;
}

.card-h-work-title-invite-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-h-work-img {
  width: 95%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--chwimg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  z-index: 0;
}

.card-h-work-img img {
  height: 50%;
  object-fit: fill;
  border-radius: 12px;
  z-index: 1;
}

.card-h-work-name {
  color: #ccc;
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
}

.card-h-work-desc {
  color: #ccc;
  text-align: center;
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-h-work-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.card-h-work-price {
  color: #5c92ff;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
}

.card-h-work-stars {
  color: #ffb400;
  font-size: 13px;
  margin-top: 8px;
}

.checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #4caf50;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.checkmark::after {
  content: "";
  width: 8px;
  height: 14px;
  border: solid #4caf50;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.card-g-start {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 800;
  background: linear-gradient(to bottom, #2d3547, #1a1f2b);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  width: 420px;
  text-align: center;
  color: #fff;
  margin: 20px auto;
}

.card-g-start .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.card-home-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 3rem;
  margin-top: 1.5rem;
  font-weight: 800;
  color: hsl(0, 0%, 100%);
}

.driver-line {
  width: 1px;
  background: #403f44;
  margin: 20px;
}

.website-countes {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 800;
  background: linear-gradient(to bottom, #2d3547, #1a1f2b);
  width: 90%;
  border-radius: 10px;
  padding: 30px 50px;
  gap: 40px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  margin: 20px auto;
  margin-bottom: 3rem;
  margin-top: 7rem;
}

.website-countes-col {
  text-align: center;
  flex: 1;
  position: relative;
}

.website-countes-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.website-countes-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.website-countes-flex-icon {
  font-size: 22px;
}

.website-countes-flex-text {
  font-size: 20px;
  font-weight: 700;
}

.website-countes-col-desc {
  font-size: 15px;
  color: #b5b6c3;
  margin-top: 6px;
  line-height: 1.4;
}

.ways-left-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  text-align: left;
}

.ways-left-start-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.ways-left-start-desc {
  font-size: 1.8rem;
  line-height: 2rem;
  color: #b5b6c3;
  font-weight: 900;
}

.ways-btn {
  width: 575px;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: #1e3a8a;
  color: white;
  border: none;
  padding: 15px;
  font-size: 21px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  animation: bounce2 1.5s infinite;
  transition: background-color 0.3s ease;
}

.ways-g-p-s-card-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 2rem;
  margin-bottom: 18rem;
}

.ways-g-p-s-card-flex-title {
  font-size: 25px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: #fff;
  margin-bottom: 0.8rem;
}

.ways-g-p-s-card-flex-icon {
  margin-right: 10px;
  margin-top: 5px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ways-g-p-s-card-flex-desc {
  font-size: 18px;
  color: #b5b6c3;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
  max-width: 350px;
}

.ways-g-p-s-card-coulmn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.8rem;
  height: 450px;
}

.ways-g-p-s-card-coulmn:first-child {
  margin-left: 10px;
}

.ways-g-p-s-card-coulmn:last-child {
  margin-right: 10px;
}

.ways-g-p-s-card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 1000px;
  height: 300px;
}

.ways-g-p-s-card {
  width: 160px;
  height: 230px;
  background: linear-gradient(to bottom, #2d3547, #1a1f2b);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
}

.ways-g-p-s-card.left {
  transform: translate(-50%, -50%) rotateY(60deg) translateZ(-150px);
}

.ways-g-p-s-card.center {
  transform: translate(-50%, -50%) rotateY(0deg) translateZ(0);
  border: #1e3a8a solid 3px;
  z-index: 2;
}

.ways-g-p-s-card.right {
  transform: translate(-50%, -50%) rotateY(-60deg) translateZ(-150px);
}

.ways-g-p-s-card-icon {
  width: 160px;
  height: 150px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin-bottom: 15px;
  object-fit: fill;
}

.ways-g-p-s-card-text {
  font-size: 12px;
  color: #b5b6c3;
  margin-bottom: 20px;
  width: 160px;
  margin-left: 10px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ways-g-p-s-card-b-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  margin-bottom: 5px;
  text-align: left;
}

.ways-g-p-s-card-b-bar-price {
  font-size: 14px;
  color: #5c92ff;
  font-weight: 700;
}

.ways-g-p-s-card-b-bar-stars {
  font-size: 14px;
  color: gold;
  font-weight: 500;
}

.ways-g-p-s-card-completed-card {
  background: #1a1f2b;
  border-radius: 16px;
  width: 360px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.ways-g-p-s-card-completed-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.ways-g-p-s-card-completed-header img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin-right: 14px;
}

.ways-g-p-s-card-completed-header-info {
  display: flex;
  flex-direction: column;
}

.ways-g-p-s-card-completed-header-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.tag {
  font-size: 12px;
  color: #5c92ff;
  background: #5c92ff26;
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 4px;
  width: fit-content;
  font-weight: 500;
}

.ways-g-p-s-card-completed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.ways-g-p-s-card-completed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.ways-g-p-s-card-completed-item span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ways-g-p-s-card-completed-done {
  background: #1f2f1f;
  color: #a7c9a7;
  text-decoration: line-through;
}

.ways-g-p-s-card-completed-done i {
  color: #00c46c;
}

.ways-g-p-s-card-completed-active {
  border: 1px solid #ff4d4d;
  background: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
  font-weight: 600;
}

.ways-g-p-s-card-completed-active i {
  color: #ff4d4d;
}

.ways-g-p-s-card-completed-locked {
  background: #141826;
  color: #6f7589;
}

.ways-g-p-s-card-completed-locked i {
  color: #555b70;
}

.ways-g-p-s-card-completed-item:hover.ways-g-p-s-card-completed-locked {
  background: #1e2435;
}

.ways-g-p-s-card-completed-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.ways-g-p-s-card-completed-progress {
  color: #9fa4b8;
  font-weight: 600;
}

.ways-g-p-s-card-completed-balance {
  font-weight: 700;
  color: #5c92ff;
  font-size: 15px;
}

.ways-g-p-s-card-g-paid-container {
  position: relative;
  border-radius: 50%;
}

.ways-g-p-s-card-g-paid-item {
  --total: 8;
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #38bdf8;
  left: 85%;
  margin-top: 35px;
  margin-left: -35px;
  transform-origin: center 170px;
  animation: rotateCircle 30s linear infinite;
  animation-delay: calc(var(--i) * -3.75s);
}

.ways-g-p-s-card-g-paid-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(36, 41, 58, 0.85);
  box-shadow: 0 0 16px 4px rgba(255, 255, 255, 0.13);
  padding: 10px;
  object-fit: contain;
}

.ways-g-p-s-card-g-paid-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
}

.ways-g-p-s-card-g-paid-center-card {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #38bdf8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 210%);
}

.ways-g-p-s-card-g-paid-center-card img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.home-partners-title {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 3rem;
  margin-top: 3rem;
  font-weight: 800;
  color: hsl(0, 0%, 100%);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.home-partners-wrapper {
  width: 98%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.home-partners-clsec2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

.home-partners-cl2 {
  flex: 0 0 auto;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-partners-cl2 img {
  height: auto;
  max-height: 50px;
  display: block;
  width: auto;
}

.trustpilot-text {
  font-size: 2.1rem;
  line-height: 1.3;
  font-weight: bold;
  margin-top: 6.5rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.carousel-trustpilot {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  margin-left: 15px;
}

.trustpilot-container {
  display: flex;
  gap: 10px;
  transition: transform 0.6s ease;
}

.card-trustpilot {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 800;
  background: linear-gradient(to bottom, #2d3547, #1a1f2b);
  min-width: 300px;
  min-height: 120px;
  padding: 14px;
  border-radius: 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.card-trustpilot-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-trustpilot-info-bar-name {
  line-height: 1.5;
  color: currentColor;
  text-align: left;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 16px;
}

.card-trustpilot-info-feedback {
  line-height: 1.5;
  font-weight: 500;
  font-size: 12px;
  text-align: left;
  color: #c9c9d3;
  margin-bottom: 3px;
  height: 75px;
  display: flex;
  align-items: center;
}

.card-trustpilot-info-feedback span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trustpilot-title {
  line-height: 1.5;
  color: currentColor;
  text-align: left;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 20px;
}

.trustpilot-arrow {
  width: 27px;
  height: 27px;
  background: #1a1f2b;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.trustpilot-arrow .left {
  margin-right: 35px;
}

.trustpilot-arrow .right {
  margin-left: 35px;
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #2d3547, #1a1f2b);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #fff;
}

.home-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: 15px;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  z-index: 5;
}

.home-footer-flex {
  font-size: 22px;
  color: #5c92ff;
  margin-right: 15px;
  margin-left: 15px;
  text-align: left;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-right: 3rem;
  transition: color 0.3s ease;
}

.home-footer-flex-icon {
  margin-left: 8px;
  height: 60px;
  width: 60px;
}

.home-footer-col {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-direction: column;
  margin-left: 10px;
  margin-top: 15px;
}

.home-footer-col-title {
  font-size: 13px;
  color: #fff;
  line-height: 1.2;
  font-family: "Lucida Console", "Courier New", monospace;
  font-weight: 700;
}

.home-footer-col-gplay {
  font-size: 19px;
  color: #fff;
  margin-bottom: 6px;
  font-family: "Lucida Console", "Courier New", monospace;
  font-weight: 800;
}

.home-footer-col-b-ab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.home-footer-col-b-ab:last-child {
  margin-right: 15px;
}

.home-footer-col-b-ab-title {
  font-size: 19px;
  color: #fff;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 6px;
  text-align: left;
}

.home-footer-col-b-ab-subtitle {
  font-size: 13px;
  color: #b5b6c3;
  line-height: 1.2;
  font-weight: 700;
}

.home-footer-col-b-ab-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-top: 10px;
}

.home-footer-col-b-ab-flex-icon {
  margin-right: 8px;
}

.termsec {
  padding: 10px;
  color: #333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  text-align: left;
  align-items: center;
  justify-content: flex-start;
}

.terms {
  margin-bottom: 40px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.terms h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.terms p {
  font-size: 15px;
  color: #d6d6d6;
  margin-bottom: 18px;
}

.sc-bottom-bar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  width: 95%;
  bottom: 6px;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(32, 36, 48);
  filter: drop-shadow(0px -1px 6px rgba(0, 0, 0, 0.08))
    drop-shadow(0px -2px 12px rgba(0, 0, 0, 0.12));
  -webkit-mask: radial-gradient(
    circle 55px at center -30px,
    transparent 99%,
    black 100%
  );
  mask: radial-gradient(circle 55px at center 0px, transparent 99%, black 100%);
  z-index: 1;
}

.sc-nav-indicator {
  position: fixed;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 95px;
  border-radius: 50%;
  z-index: 2;
}

.sc-current {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 95px;
  height: 95px;
  align-items: center;
  justify-content: center;
  background: rgb(32, 36, 48);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.08), 0px 3px 6px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.sc-current.current-selected {
  background: #1e3a8a;
}

.sc-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.sc-bottom-item.active {
  color: #5c92ff;
  filter: brightness(0) saturate(100%) invert(53%) sepia(7%) saturate(6041%)
    hue-rotate(190deg) brightness(104%) contrast(100%);
}

.sc-bottom-item:first-child {
  margin-left: 20px;
}

.sc-bottom-item:last-child {
  margin-right: 20px;
}

.sc-bottom-item-icon {
  width: 37px;
  height: 37px;
  object-fit: fill;
}

.sc-bottom-item-text {
  font-size: 14px;
  font-weight: 550;
  margin-top: 12px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.sc-bottom-item-earn-text {
  font-size: 14px;
  font-weight: 550;
  margin-top: 4px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.card-verify {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 50px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  animation: fadeIn 1s ease forwards;
  height: 100vh;
}

.circle-verify {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  animation: scaleIn 0.6s ease-out;
}

.verify-success {
  background: var(--success);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
}

.verify-success .icon-verify {
  width: 60px;
  height: 30px;
  border-left: 6px solid #fff;
  border-bottom: 6px solid #fff;
  transform: rotate(-45deg);
  opacity: 0;
  animation: drawCheck 0.6s ease forwards 0.4s;
}

.verify-failed {
  background: var(--error);
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.4);
}

.verify-failed .icon-verify {
  position: relative;
  width: 60px;
  height: 60px;
}

.verify-failed .icon-verify::before,
.verify-failed .icon-verify::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 60px;
  background: #fff;
  border-radius: 4px;
  transform-origin: center;
  opacity: 0;
  animation: drawX 0.6s ease forwards 0.4s;
}

.verify-failed .icon-verify::before {
  transform: rotate(45deg) translateX(-50%);
}
.verify-failed .icon-verify::after {
  transform: rotate(-45deg) translateX(-50%);
}

.verify-h1 {
  font-size: 1.8rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.5;
  opacity: 0;
  animation: slideUp 0.8s ease forwards 0.6s;
}

.verify-p {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  margin-top: 15px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: slideUp 0.8s ease forwards 0.6s;
}

.btn-verify {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-verify:hover {
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.6);
  transform: translateY(-2px);
}

.loader {
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-left-color: #22c55e;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 20px;
  height: 20px;
  margin-top: 15px;
  animation: spin 1s linear infinite;
}

.earn-title-flex-linear {
  display: flex;
  padding: 10px;
  margin: 12px;
  align-items: center;
  justify-content: space-between;
}

.earn-title-flex-linear-title {
  font-size: 25px;
  color: white;
  font-weight: 800;
}

.earn-arrow-linear {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.earn-arrow {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}

.earn-arrow.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.earn-arrow .left {
  margin-right: 35px;
}

.earn-arrow .right {
  margin-left: 35px;
}

.earn-arrow:hover {
  background: #1a1f2b;
}

.earn-flex-linear {
  display: flex;
  padding: 10px;
  margin: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 7px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

.earn-flex-linear::-webkit-scrollbar {
  display: none;
}

.earn-offers-card {
  display: grid;
  justify-content: left;
  align-items: flex-start;
  text-align: start;
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 120px;
  height: 200px;
  padding: 5px;
  transition: transform 0.2s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.earn-offers-card-type-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background-color: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  display: flex;
  gap: 4px;
}

.earn-offers-card-icon {
  height: 100px;
  width: 1000px;
  border-radius: 8px;
  margin-bottom: 5px;
  object-fit: fill;
}

.earn-offers-card-title {
  font-weight: 600;
  font-size: 15px;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.earn-offers-card-subtitle {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.earn-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.earn-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.earn-popup {
  width: 512px;
  background: rgb(24 28 38 / 1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  max-height: 92vh;
  overflow: auto;
  position: relative;
  transform: translateY(-80px);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  text-align: left;
}

.earn-overlay.active .earn-popup {
  transform: translateY(0);
  opacity: 1;
}

.earn-popup::-webkit-scrollbar {
  display: none;
}

.earn-popup-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: rgb(24 28 38 / 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.earn-popup-header h2 {
  font-size: 18px;
  font-weight: 650;
}

.earn-close-btn {
  font-size: 30px;
  cursor: pointer;
  color: #bbb;
  transition: color 0.3s;
}

.earn-close-btn:hover {
  color: #fff;
}

.earn-popup-content {
  padding: 20px;
}

.img-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.1);
  z-index: 0;
}

#earn-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.earn-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 10px;
}

.earn-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.earn-price-row h3 {
  font-size: 22px;
}

.earn-stars {
  color: #f39c12;
}

.earn-btn {
  width: 100%;
  background-color: #1e3a8a;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: 750;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.earn-btn:hover {
  background-color: #5c92ff;
}

.earn-section-title {
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  color: whitesmoke;
}

.earn-section-text {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 6px;
}

.earn-reward-box {
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
  cursor: pointer;
  display: flex;
  gap: 5px;
  justify-content: flex-start;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 0.8;
}

.earn-reward-box:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.earn-reward-box-amount {
  width: 60px;
  height: 30px;
  font-size: 15px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-right: 5px;
  background: rgb(24 28 38 / 1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.earn-reward-box span:last-child {
  font-size: 13.5px;
  color: #ccc;
  line-height: 1.4;
}

.earn-requirements-box {
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
}

#vpnOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#vpnPopup {
  background: linear-gradient(to bottom, #2d3547, #1a1f2b);
  padding: 30px 25px;
  max-width: 400px;
  width: 90%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

#vpnPopup h2 {
  color: #fff;
  margin-top: 0;
  font-weight: 650;
  font-size: 1.5rem;
}

#vpnPopup p {
  color: #fff;
  margin: 12px 0 24px;
  line-height: 1.5;
}

#vpnPopup button {
  background: #e53935;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
}

#vpnPopup button:hover {
  background: #c62828;
}

.offer-partners-swiper {
  display: flex;
  justify-content: center;
  width: auto;
  flex-shrink: 0;
}

.offer-partners-card {
  background: var(--card-bg-gradient);
  border-radius: 10px;
  padding: 15px;
  width: 150px !important;
  height: 250px;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 3px 5px rgba(0, 0, 0, 0.23);
}

.offer-partners-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 5px 10px rgba(0, 0, 0, 0.3);
}

.offer-partners-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    var(--glow-color),
    rgba(255, 255, 255, 0)
  );
  border-radius: 180%;
  opacity: 0.9;
  pointer-events: none;
}

.offer-partners-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #1f1f2e;
  color: #31bbfd;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.offer-partners-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}

.offer-partners-image img {
  max-width: 100%;
  max-height: 120px;
  margin: 0 auto;
  display: block;
  transition: transform 0.3s, filter 0.3s;
}

.offer-partners-card:hover .offer-partners-image img {
  transform: scale(1.1);
  filter: blur(4px);
}

.percentage {
  color: #00ff7f;
  padding: 2px 10px;
  border-radius: 12px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: bold;
  text-align: center;
  background-color: rgba(0, 128, 0, 0.2);
  filter: blur(50);
  font-size: 14px;
}

.featured-badge {
  position: absolute;
  top: 23px;
  left: -46px;
  background: linear-gradient(to right, #ff3000, #862222);
  color: white;
  padding: 2px 43px;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(-45deg);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
}

.offer-partners-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.star-container {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.star {
  width: 12px;
  margin-right: 4px;
}

.offer-partners-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.offer-partners-card:hover .offer-partners-overlay {
  opacity: 1;
}

.offer-partners-overlay img {
  width: 20px;
  margin-bottom: 10px;
}

.offer-partners-overlay p {
  font-size: 16px;
  font-weight: bold;
}

.earn-offerwall-container {
  display: none;
  position: fixed;
  top: 2%;
  left: 2.5%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 95%;
  height: 95vh;
  animation: slideUp 0.5s ease forwards;
  z-index: 9999;
}

.earn-offerwall-container.active {
  display: flex;
}

.earn-offerwall-header {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  height: 42px;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  border-bottom: 1px solid #6b6b6bff;
  background: linear-gradient(to top, #233666 0%, #182547 84%, #1e2d53 100%);
  padding: 5px 10px;
  width: 90%;
}

.earn-offerwall-body {
  height: 95vh;
  width: 90%;
  background: #1a1f2b;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.earn-offerwall-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  display: none;
}

.earn-offerwall-body iframe.active {
  display: block;
}
.earn-offerwall-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top: 1px solid #6b6b6bff;
  background: linear-gradient(to right, #233666 0%, #182547 84%, #1e2d53 100%);
  padding: 5px 10px;
  width: 90%;
}

.earn-offerwall-header-text {
  font-size: 20px;
  font-weight: 650;
  color: white;
}

.earn-offerwall-footer-text {
  font-size: 16px;
  color: white;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: 500;
}

.earn-offerwall-header-close {
  font-size: 40px;
  color: white;
}

.cashout-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 500px;
  background: #0f0f1b;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  color: #e0e0ff;
  display: none;
  z-index: 999;
}

.cashout-container.active {
  display: block;
}

.cashout-header {
  background: #1a1a2e;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2a2a40;
}

.cashout-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cashout-logo {
  width: 42px;
  height: 42px;
  object-fit: fill;
  margin-right: 15px;
}

.cashout-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}

.cashout-close {
  background: none;
  border: none;
  color: #a0a0c0;
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cashout-close:hover {
  background: #2a2a40;
  color: #ffffff;
}

.cashout-body {
  padding: 25px;
}

.cashout-info {
  background: rgba(42, 42, 64, 0.5);
  border: 1px solid #5c92ff;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 35px;
  margin-top: 25px;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cashout-info strong {
  color: #ffffff;
}

.cashout-form-group {
  margin-bottom: 20px;
}

.cashout-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #c0c0e0;
  text-align: left;
  font-size: 0.95rem;
}

.cashout-input {
  width: 100%;
  padding: 14px 16px;
  background: #1a1a2e;
  border: 1px solid #1e1e31;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.cashout-input:focus {
  outline: none;
  border-color: #5c92ff;
  box-shadow: 0 0 0 2px #2c54c4;
}

.cashout-amount-container {
  margin-top: 20px;
}

.cashout-amount-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cashout-amount-input {
  display: flex;
  background: #1a1a2e;
  border: 1px solid #2a2a40;
  border-radius: 10px;
  overflow: hidden;
}

.cashout-amount-currency {
  padding: 14px 16px;
  background: #2a2a40;
  color: #c0c0e0;
  font-weight: 500;
}

.cashout-amount-field {
  flex: 1;
  padding: 14px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
}

.cashout-amount-field:focus {
  outline: none;
}

.cashout-max-btn {
  background: #1e3a8a;
  border: none;
  color: #fff;
  padding: 0 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.cashout-max-btn:hover {
  background: #2c54c4;
}

.cashout-min-amount {
  font-size: 0.85rem;
  color: #a0a0c0;
  margin-top: 6px;
  text-align: right;
}

.cashout-fee-section {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #2a2a40;
}

.cashout-fee-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #2a2a40;
}

.cashout-fee-label {
  color: #a0a0c0;
}

.cashout-fee-value {
  color: #ffffff;
  font-weight: 500;
}

.cashout-fee-value.cashout-positive {
  color: #5c92ff;
}

.cashout-total-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0 5px;
  font-weight: 600;
  font-size: 1.1rem;
}

.cashout-receive-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 5px;
  border-top: 1px solid #2a2a40;
  margin-top: 25px;
}

.cashout-receive-label {
  font-weight: 500;
  color: #c0c0e0;
}

.cashout-receive-amount {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.cashout-receive-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #f2a900, #d38d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  font-size: 12px;
}

.cashout-button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #5c92ff, #1e3a8a);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 28px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgb(92, 146, 255, 0.3);
}

.cashout-button:hover {
  background: linear-gradient(135deg, #5c92ffda, #1e3b8ae7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(92, 146, 255, 0.4);
}

.cashout-button:active {
  transform: translateY(0);
}

.cashout-footer {
  padding: 18px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #a0a0c0;
  border-top: 1px solid #2a2a40;
}

.cashout-card {
  background: var(--cashout-card-bg);
  border-radius: 10px;
  padding: 15px;
  width: 150px !important;
  height: 250px;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 3px 5px rgba(0, 0, 0, 0.23);
}

.cashout-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cashout-card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}

.cashout-card-image img {
  max-width: 80px;
  max-height: 120px;
  margin: 0 auto;
  display: block;
  transition: transform 0.3s, filter 0.3s;
}

.cashout-card-name {
  font-size: 18px;
  font-weight: 550;
  margin-bottom: 8px;
}

.cashout-flex-linear {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px;
  margin: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 20px;
}

.offerwall-loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offerwall-loader {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.offerwall-loader-span {
  width: 10px;
  height: 36px;
  border-radius: 4px;
  background: linear-gradient(180deg, #3b82f6, #60a5fa);
  animation: pulse 1s ease-in-out infinite;
}

.offerwall-loader-span:nth-child(2) {
  animation-delay: 0.1s;
}
.offerwall-loader-span:nth-child(3) {
  animation-delay: 0.2s;
}
.offerwall-loader-span:nth-child(4) {
  animation-delay: 0.3s;
}
.offerwall-loader-span:nth-child(5) {
  animation-delay: 0.4s;
}

.offerwall-loader-text {
  font-size: 17px;
  color: #fff;
  margin-top: 12px;
  letter-spacing: 0.5px;
  font-family: "Poppins", "Gill Sans", Calibri, sans-serif;
  opacity: 0.9;
}

.dark-popup {
  background: #1e1e1e !important;
  color: #f1f1f1 !important;
}

.profile-flex-linear {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-inline: 80px;
  margin-bottom: 18px;
  margin-top: 18px;
  padding: 10px;
}

.profile-bar-title {
  line-height: 1.5;
  color: currentcolor;
  font-size: 26px;
  font-weight: 650;
  margin: 0px;
}

.profile-bar-span {
  line-height: 1.5;
  color: #5c92ff;
  font-size: 17px;
  font-weight: 650;
  margin: 0px;
}

.profile-flex-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  text-align: center;
  margin-inline: 80px;
  margin-bottom: 18px;
  margin-top: 18px;
  padding: 10px;
  gap: 10px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 10px;
  padding: 25px;
  align-items: flex-start;
  justify-content: center;
}

.profile-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
}

.profile-flex {
  display: flex;
}

.profile-icon-container {
  position: relative;
  display: inline-block;
}

.profile-icon {
  width: calc(100px * 1.1);
  height: calc(100px * 1.1);
  border-radius: 50%;
  object-fit: fill;
  border: 2px solid #ccc;
  margin-right: 20px;
}

.profile-hover-blur {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100px * 1.1);
  height: calc(100px * 1.1);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-icon-container:hover .profile-hover-blur {
  opacity: 1;
}

.profile-hover-blur i {
  color: #fff;
  font-size: 18px;
}

.profile-user {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  color: white !important;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  margin: -15px 0px 4px -10px;
}

.profile-email {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: rgb(235, 233, 233) !important;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  margin: 15px 9px;
}

.profile-join {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ccc !important;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  margin: 9px 0px 4px -8px;
}

.profile-info {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 1fr;
  row-gap: 50px;
  align-items: center;
  justify-content: center;
}

.profile-info-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(92, 146, 255, 0.2);
  color: #fff;
  font-size: 25px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-info-span {
  line-height: 1.5;
  color: #ccc !important;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-size: 16px;
}

.profile-info-amount {
  line-height: 1.5;
  color: #fff !important;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  margin-top: 0px;
}

.profile-table-container {
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 10px;
  margin-inline: 80px;
  display: none;
}

.profile-table-container.active {
  display: flex;
  flex-direction: column;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #fff;
}

th {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 10px;
  cursor: pointer;
  text-align: center;
  padding: 10px 0 20px 0;
}

th::after {
  font-size: 10px;
  margin-left: 5px;
  opacity: 0.3;
}

tr {
  border-bottom: 1px solid #5f5f5f;
}

td {
  text-align: center;
  padding: 15px 0;
  color: #cfcfcf;
  font-size: 15px;
  font-weight: 650;
  vertical-align: middle;
}

.no-records {
  text-align: center;
  color: #cfcfcf;
  padding: 20px 0;
  font-size: 14px;
}

.profile-withdraw-adreess-mobile {
  font-size: 13px;
  color: #cfcfcf;
  word-break: break-word;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 110px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}

.profile-withdraw-adreess-mobile:hover::after {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 2%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
  white-space: normal;
  text-align: center;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.profile-withdraw-adreess-mobile:hover::after {
  animation: fadeIn 0.15s ease-in-out forwards;
}

.text-warning {
  color: #ffc107;
}

.text-danger {
  color: #dc3545;
}

.text-success {
  color: #28a745;
}

.text-primary {
  color: #e4c16f;
}

.profile-tabs {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  margin-inline: 80px;
  margin-bottom: 50px;
  margin-top: 50px;
  font-size: 18px;
}

.profile-tab-button {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
  background: transparent;
  color: #cfcfcf;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-tab-button i {
  font-size: 25px;
}

.profile-tab-button:hover {
  color: #fff;
}

.profile-tab-button.active {
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 0 8px rgba(92, 146, 255, 0.4);
}

.profile-account-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 80px;
  gap: 30px;
  padding: 12px;
}

.profile-account-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--pbcolor);
  font-size: 18px;
  font-weight: 650;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 360px;
  height: 50px;
  padding: 0 15px;
  position: relative;
}

.profile-avatars-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.profile-avatars-overlay.active {
  opacity: 1;
  visibility: visible;
}

.profile-avatars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(to bottom, #2d3547, #1a1f2b);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 10px;
  row-gap: 10px;
  column-gap: 10px;
  padding: 25px;
  z-index: 999;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-align: center;
  justify-content: center;
  justify-items: center;
}

.profile-avatars-overlay.active .profile-avatars {
  transform: scale(1);
  opacity: 1;
}

.profile-icon-avatar {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  width: 55px;
  height: 55px;
}

.profile-icon-avatar:hover {
  border: 3px solid goldenrod;
}

.leaderboard-username {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.leaderboard-title {
  font-size: 23px;
  font-weight: 850;
  color: #fff;
  margin: 35px 0 50px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.leaderboard-avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  margin-right: 10px;
}

.leaderboard-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.leaderboard-rank {
  margin: 0 auto;
  width: 28px;
  height: 28px;
  background: linear-gradient(to bottom, #2d3547, #1a1f2b);
  border-radius: 6px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.leaderboard-tops {
  margin: 0 auto;
  width: 28px;
  height: 28px;
}

.leaderboard-user-earned {
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  font-weight: 550;
  color: #d7d8de;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 10px 15px;
  width: 360px;
  margin: 15px;
}

.leaderboard-podium-overly {
  perspective: 800px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: bottom;
  margin: 160px 0 110px 0;
}

.leaderboard-podium {
  --podium-width: 150px;
  position: relative;
  width: var(--podium-width);
  transform-style: preserve-3d;
  transform: rotateX(-30deg) rotateY(0deg);
}

.leaderboard-podium:nth-child(1) {
  --podium-height: 118px;
  --depth: 58px;
  height: var(--podium-height);
}
.leaderboard-podium:nth-child(2) {
  --podium-height: 160px;
  --depth: 78px;
  height: var(--podium-height);
  z-index: 999;
}
.leaderboard-podium:nth-child(3) {
  --podium-height: 130px;
  --depth: 64px;
  height: var(--podium-height);
}

.leaderboard-face {
  position: absolute;
  width: var(--podium-width);
  height: var(--podium-height);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  backface-visibility: hidden;
  background: #2d3547;
}

.front {
  transform: translateZ(var(--depth));
}
.back {
  transform: rotateY(180deg) translateZ(var(--depth));
}
.right {
  transform: rotateY(90deg) translateZ(var(--depth));
}
.left {
  transform: rotateY(-90deg) translateZ(var(--depth));
}
.top {
  transform: rotateX(90deg) translateZ(calc(var(--podium-height) / 2));
}
.bottom {
  transform: rotateX(-90deg) translateZ(var(--depth));
}

.leaderboard-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: radial-gradient(circle at 30% 30%, #ffffff40, #00000010);
  box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.3),
    inset -2px -2px 8px rgba(0, 0, 0, 0.4), 0 6px 15px rgba(0, 0, 0, 0.5),
    0 -3px 6px rgba(255, 255, 255, 0.1);
  transform: perspective(600px) rotateX(10deg) rotateY(-8deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: fill;
}

.leaderboard-icon:hover {
  transform: perspective(600px) rotateX(0deg) rotateY(0deg) scale(1.05);
  box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.25),
    inset -2px -2px 8px rgba(0, 0, 0, 0.5), 0 10px 25px rgba(0, 0, 0, 0.6),
    0 -3px 6px rgba(255, 255, 255, 0.1);
}

.leaderboard-crown {
  width: 48px;
  height: 40px;
}

.position-label {
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}

.position-label.center {
  top: -125px;
}

.position-top {
  width: 80px;
  height: 80px;
}

.position-top:nth-child(1) {
  width: 60px;
  height: 60px;
}

.position-top:nth-child(3) {
  width: 70px;
  height: 70px;
}

.invite-flex {
  display: grid;
  grid-template-columns: 650px repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 10px;
  margin: 20px 0;
  align-items: stretch;
  justify-content: flex-start;
  border-radius: 10px;
  font-weight: 450;
  color: #d7d8de;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.invite-flex.showmobile,
.invite-flex-card.showmobile {
  display: none !important;
}

.invite-flex:not(.showmobile) {
  display: grid !important;
}

.invite-flex-card {
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.invite-flex-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.invite-card-title {
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 17px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  color: #d7d8de;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 7px 10px;
  width: fit-content;
  margin: 25px 15px;
}

.invite-subtitle {
  font-size: 16px;
  font-weight: 400;
}

.invite-flex-refer {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.invite-refer-link {
  display: block;
  width: 95%;
  padding: 5px 8px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.625;
  color: #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #2d3547;
  border: 2px solid #2d3547;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.invite-refer-link-btn {
  display: block;
  align-items: center;
  text-align: center;
  width: 95px;
  padding: 5px 8px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.625;
  color: #ccc;
  border: none;
  background: #1e3a8a;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.invite-refer-share-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(
    to top,
    rgba(92, 146, 255, 0.1) 0%,
    rgba(92, 146, 255, 0.2) 84%,
    rgba(92, 146, 255, 0.2) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  margin: 28px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.invite-refer-share-title {
  font-size: 18px;
  font-weight: 700;
  color: #ccc;
  margin: 2px 6px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.invite-refer-share-icons {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 20px 3px 6px 3px;
  padding: 7px 5px;
  gap: 20px;
}

.invite-social-a {
  width: 1.7em;
  height: 1.7em;
  border-radius: 50%;
  background: #e0e0e0;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}

.invite-social-a:hover {
  color: #e0e0e0;
  transform: scale(1.1);
}

.invite-social-a:nth-child(1):hover {
  background: #000;
}
.invite-social-a:nth-child(2):hover {
  background: #1877f2;
}
.invite-social-a:nth-child(3):hover {
  background: #0088cc;
}
.invite-social-a:nth-child(4):hover {
  background: #25d366;
}
.invite-social-a:nth-child(5):hover {
  background: #5c92ff;
}
.invite-social-a:nth-child(6):hover {
  background: #5c92ff;
}

.point-to-me {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  position: relative;
}

.point-to-me a {
  font-weight: 700;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
  -webkit-text-stroke: 1px #00ffcc;
  color: transparent;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-decoration: none;
}

.point-to-me a:hover {
  transform: scale(1.05);
  color: #00ffcc;
}

.point-to-me a span {
  font-size: 0.5em;
  opacity: 0.8;
  -webkit-text-stroke: 0px;
  color: #00ffcc;
  text-transform: lowercase;
  margin-right: 5px;
}

.chat-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
  background-color: rgb(24 28 38 / 1);
  z-index: 9999;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.chat-container::-webkit-scrollbar {
  display: none;
}

.chat-container-closer {
  position: fixed;
  top: 5px;
  right: 5px;
  margin-bottom: 5px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cancel-reply {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.message-card {
  background: #2b2d42;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
  min-width: 250px;
  max-width: 85%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: 0.2s;
  scroll-margin-top: 80px;
}

.message-card:last-child {
  margin-bottom: 80px;
}

.message-card.mine {
  align-self: flex-end;
  background: #4338ca;
}

.message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.chat-username {
  font-weight: 600;
}

.message-time {
  font-size: 12px;
  opacity: 0.7;
}

.message-text {
  font-size: 15px;
  line-height: 1.5;
  word-break: break-word;
  padding-left: 38px;
}

.message-card.mine .message-text {
  padding-left: 0;
}

.reply-btn {
  background: none;
  border: none;
  color: #6c8dff;
  font-size: 0.9em;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 4px;
}

.reply-btn:hover {
  text-decoration: underline;
}

.reply-box {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #aaa;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 13px;
  margin-top: 5px;
  margin-left: 38px;
  word-break: break-word;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  gap: 8px;
  align-items: center;
}

.reply-box:hover {
  background: rgba(255, 255, 255, 0.15);
}

.message-card.mine .reply-box {
  margin-left: 0;
}

.input-area {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #2b2d42;
  gap: 8px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 20px;
  z-index: 9999;
}

.input-area input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #1a1b26;
  color: #fff;
}

.emoji-btn,
.send-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.emoji-picker {
  position: absolute;
  bottom: 60px;
  right: 60px;
  background: #2b2d42;
  padding: 10px;
  border-radius: 10px;
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  width: 250px;
  z-index: 9999;
}

.emoji-picker span {
  cursor: pointer;
  font-size: 22px;
}

.replying-to {
  font-size: 0.9em;
  background: #2f3555;
  padding: 6px 10px;
  border-radius: 8px;
  color: #a5b1ff;
  margin-bottom: 5px;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  align-items: center;
}

.replying-to span {
  font-weight: 600;
}

.highlighted {
  box-shadow: 0 0 12px #6c8dff;
  transition: box-shadow 0.8s ease-out;
}

.mention-tag {
  position: absolute;
  top: -35px;
  right: 50px;
  background: #ff4081;
  color: #fff;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  cursor: pointer;
  display: none;
  animation: pop 0.3s ease;
}

.lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8080;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
}

.system-bot-card {
  background: #2b2d42;
  color: #f8f8f2;
  font-style: italic;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 12px;
  width: fit-content;
  max-width: 350px;
  border-radius: 12px;
}

.system-bot-card:last-child {
  margin-bottom: 80px;
}

.bot-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff79c6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.bot-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-left: 12px;
}

.bot-username {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.bot-msg {
  font-size: 14px;
  color: #d7d8de;
}

.admin-card {
  background: #2b2d42;
  color: #f8f8f2;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 8px;
  width: fit-content;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  min-width: 270px;
  max-width: 85%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: 0.2s;
  scroll-margin-top: 80px;
  margin-bottom: 15px;

}

.admin-card:last-child {
  margin-bottom: 80px;
}

.admin-left {
    display: flex;
    align-items: center;
  justify-content: center;
  width: 40px;
}
.admin-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff79c6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.admin-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-left: 12px;
}

.admin-username {
  font-weight: 700;
  font-size: 15px;
  color: gold;
}

.admin-msg {
  font-size: 14px;
  color: #d7d8de;
}

@keyframes pop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drawCheck {
  from {
    opacity: 0;
    transform: rotate(-45deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }
}

@keyframes drawX {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes stepRotate {
  0%,
  30% {
    transform: rotateY(0deg);
  }

  33%,
  63% {
    transform: rotateY(-120deg);
  }

  66%,
  96% {
    transform: rotateY(-240deg);
  }

  100% {
    transform: rotateY(-360deg);
  }
}

@keyframes bounce2 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 760px) {
  :root {
    --depth: 150px;
  }

  .pc {
    display: none;
  }

  .mobile {
    display: block;
  }

  .header {
    padding: 0 10px;
  }

  .header .logo {
    font-size: 1.4rem;
  }

  .header-notif {
    margin-right: 18px;
  }

  .header-balance-box {
    margin-right: 18px;
    padding: 0 7px;
  }

  .header-balance-icon {
    margin-right: 8px;
  }

  .header-balance-amount {
    font-size: 16px;
  }

  .header-profile-icon {
    width: 38px;
    height: 38px;
    border: 2px solid #5c92ff70;
  }

  .live-offers .payment-card .payment-left .title {
    font-size: 12px;
  }

  .live-offers .payment-card .payment-left .subtitle {
    font-size: 12px;
  }

  .live-offers .payment-card .payment-amount {
    font-size: 13px;
  }

  .start-form {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: scale(0);
    border-radius: 0;
  }

  .start-form.active {
    transform: scale(1);
  }

  .h2-title {
    font-size: 2.3rem;
    margin-top: 0rem;
  }

  .p-subtitle {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .home-grid {
    flex-direction: column;
    margin-top: 2rem;
  }

  .stage-work {
    width: 100%;
    height: 300px;
    perspective: 900px;
  }

  .wrapper-work {
    width: 100%;
    height: 100%;
  }

  .card-h-work {
    width: 160px;
    height: 260px;
    left: 50%;
    font-size: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5),
      inset 0 0 6px rgba(255, 255, 255, 0.05);
  }

  .card-h-work-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .card-h-work-img {
    height: 100px;
    margin-bottom: 1px;
  }

  .card-h-work-name {
    font-size: 13px;
    margin-top: 10px;
  }

  .card-h-work-desc {
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 6px;
  }

  .card-h-work-price {
    font-size: 13px;
    margin-top: 10px;
  }

  .card-h-work-stars {
    font-size: 13px;
    margin-top: 8px;
  }

  .card-h-work-title-play-img {
    margin-top: 5px;
  }

  .card-g-start {
    width: 95%;
    margin-top: 5rem;
  }

  .website-countes {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .website-countes-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 15px;
    width: 100%;
  }

  .website-countes-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .website-countes-col::after {
    display: none !important;
  }

  .ways-left-start {
    align-items: center;
    text-align: center;
    margin-top: 2rem;
  }

  .ways-left-start-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
  }

  .ways-left-start-desc {
    font-size: 1.2rem;
    line-height: 1rem;
    color: #b5b6c3;
    font-weight: 900;
  }

  .ways-btn {
    width: 300px;
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 18px;
  }

  .ways-g-p-s-card-flex {
    flex-direction: column;
    gap: 20px;
    margin-top: 1rem;
    margin-bottom: 8rem;
  }

  .ways-g-p-s-card-coulmn:last-child {
    margin-top: 220px;
  }

  .ways-g-p-s-card-g-paid-item {
    width: 60px;
    height: 60px;
    transform-origin: center 150px;
  }

  .ways-g-p-s-card-g-paid-center-card {
    width: 75px;
    height: 75px;
    transform: translate(-60%, 200%);
  }

  .home-partners-title {
    font-size: 24px;
  }

  .trustpilot-text {
    font-size: 24px;
  }

  .home-footer-flex {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: linear-gradient(to bottom, #2d3547, #1a1f2b);
    border-radius: 4px;
    margin-left: 0;
    margin-right: 0;
    width: 300px;
  }

  .home-footer-flex-icon {
    height: 40px;
    width: 40px;
  }

  .home-footer-col-title {
    font-size: 14px;
    font-weight: 900;
  }

  .home-footer-col-gplay {
    font-size: 18px;
    font-weight: 900;
  }

  .home-footer-col-b-ab:last-child {
    margin-right: 0px;
  }

  .sc-bottom-bar {
    width: 100%;
    border-radius: 0;
    bottom: 0;
    mask: radial-gradient(
      circle 35px at center 8px,
      transparent 99%,
      black 100%
    );
  }

  .sc-bottom-item:first-child {
    margin-left: 0px;
  }

  .sc-bottom-item:nth-child(2) {
    margin-right: 25px;
  }

  .sc-bottom-item:nth-child(3) {
    margin-left: 25px;
  }

  .sc-bottom-item:last-child {
    margin-right: 0px;
  }

  .sc-current {
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
  }

  .sc-bottom-item-icon {
    width: 28px;
    height: 28px;
  }

  .sc-bottom-item-text {
    font-size: 11px;
    margin-top: 6px;
  }

  .sc-bottom-item-earn-text {
    font-size: 11px;
  }

  .verify-h1 {
    font-size: 1.15rem;
  }

  .verify-p {
    font-size: 0.89rem;
  }

  .earn-flex-linear {
    margin: 7px;
  }

  .earn-title-flex-linear {
    margin: 7px;
  }

  .earn-title-flex-linear-title {
    font-size: 19px;
  }

  .earn-popup {
    width: 100%;
    max-height: 100%;
  }

  .featured-badge {
    top: 15px;
    left: -30px;
    padding: 2px 30px;
    font-size: 12px;
  }

  .offer-partners-card {
    width: 130px !important;
    height: 220px;
  }

  .offer-partners-name {
    font-size: 14px;
  }

  .star {
    width: 10px;
  }

  .earn-offerwall-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .earn-offerwall-header {
    width: 100%;
  }

  .earn-offerwall-body {
    width: 100%;
  }

  .earn-offerwall-footer {
    width: 100%;
  }

  .cashout-card {
    width: 120px !important;
    height: 210px;
  }

  .cashout-flex-linear {
    margin: 7px;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-flex-linear {
    margin-inline: 0;
  }

  .profile-bar-title {
    font-size: 19px;
  }

  .profile-bar-span {
    font-size: 15px;
  }

  .profile-flex-card {
    grid-template-columns: repeat(1, 1fr);
    margin-inline: 0;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .profile-icon {
    width: calc(70px * 1.1);
    height: calc(70px * 1.1);
    margin-right: 12px;
  }

  .profile-hover-blur {
    width: calc(70px * 1.1);
    height: calc(70px * 1.1);
    top: 0;
  }

  .profile-user {
    font-size: 18px;
    margin: -5px 0px 4px -3px;
  }
  .profile-email {
    font-size: 15px;
    margin: 10px 8px;
  }
  .profile-join {
    font-size: 13px;
    margin: 4px 0px 4px -8px;
  }
  .profile-info {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
  .profile-table-container {
    margin-inline: 0;
    justify-content: center;
    align-items: center;
    padding: 15px 8px;
    margin: 7px;
  }
  th {
    font-size: 12px;
  }

  td {
    padding: 15px;
    font-size: 13px;
  }
  .profile-withdraw-adreess-mobile {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
  }

  .profile-tabs {
    margin-inline: 0px;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .profile-tab-button {
    font-size: 17px;
    padding: 10px;
  }

  .profile-tab-button i {
    font-size: 21px;
  }

  .profile-account-buttons {
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
  }

  .leaderboard-podium {
    --podium-width: 122px;
  }

  .leaderboard-icon {
    width: 80px;
    height: 60px;
  }

  .invite-flex:not(.showmobile) {
    display: none !important;
  }

  .invite-flex.showmobile {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 8px 0;
  }

  .invite-flex-card.showmobile {
    display: flex !important;
  }

  .invite-card-title {
    font-size: 13px;
    padding: 2px 5px;
    margin: 25px 0px;
  }
}
