:root {
  --background-color: #121212;
  --text-color: #b3b3b3;
  --secondary-text-color: #efe5e5;
  --primary-gradient-start: #1d1d20;
  --primary-gradient-end: #2b2c3000;
  --secondary-color: #1d1d1f;
  --secondary-color-2: #1d1d1f;
  --highlight-color: #fac500;
  --button-background: #fac500;
  --button-text: #000;
  --button-hover: #999;
  --check-color: #f89327;
  --claimed-color: #4caf50;
  --claimed-gradient-start: #45a049;
  --claimed-gradient-end: #2e7d32;
  --bg-tertiary: #252525;
}

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
}

.container-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  padding: 20px 0 20px;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  background-color: var(--highlight-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
}

.header .left {
  display: flex;
  align-items: center;
}

.header .left a {
  background: linear-gradient(
    155.03deg,
    var(--primary-gradient-start) 23.72%,
    var(--primary-gradient-end) 95.34%
  );
  border: 1px solid var(--secondary-color);
  color: var(--text-color);
  text-decoration: none;
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 10px;
}

.header .left a i {
  font-size: 16px;
}

.header .left .active {
  font-weight: bold;
  color: var(--highlight-color) !important;
}

.header .right {
  display: flex;
  align-items: center;
  color: var(--text-color);
}

.header .right img {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin-right: 5px;
}

.header .right span {
  font-size: 16px;
  font-weight: bold;
  margin-left: 10px;
}

.circle img {
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 18px;
}

@media (max-width: 375px) {
  .circle img {
    width: 230px;
    height: 230px;
    margin: 10px 0;
  }
}

@media (min-width: 376px) and (max-width: 429px) {
  .circle img {
    width: 250px;
    height: 250px;
  }
}

@media (min-width: 430px) and (max-width: 599px) {
  .circle img {
    width: 300px;
    height: 300px;
    margin: 30px 0;
  }
}

@media (min-width: 600px) {
  .circle img {
    width: 400px;
    height: 400px;
  }
}

@keyframes grow-shrink {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.grow-shrink {
  animation: grow-shrink 0.1s ease-in-out;
}

.progress-bar {
  width: 92%;
  height: 10px;
  min-height: 10px;
  max-height: 10px;
  background-color: #f3f3f3;
  border-radius: 5px;
  overflow: hidden;
  margin: 5px auto;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.progress-bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--highlight-color);
  transition: width 0.5s ease-in-out;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@supports (-webkit-overflow-scrolling: touch) {
  .progress-bar,
  .progress-bar-inner {
    height: 10px !important;
  }
}

.footer {
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: linear-gradient(
    155.03deg,
    var(--primary-gradient-start) 100%,
    var(--primary-gradient-end) 100%
  );
  border: 1px solid var(--secondary-color);
  padding: 10px 0;
  position: fixed;
  bottom: 0;
}

.footer div {
  text-align: center;
  cursor: pointer;
}

.footer div a {
  text-decoration: none;
  color: var(--highlight-color);
}

.footer div a:focus {
  outline: none;
}

.footer div .active {
  font-weight: bold;
  color: #fff !important;
}

.footer div i {
  display: block;
  font-size: 24px;
}

.footer div span {
  font-size: 12px;
}

.user-level-container {
  display: flex;
  justify-content: space-between;
  width: 92%;
  font-size: 12px;
  margin-top: 10px;
  color: var(--text-color);
}

.user-level-container div {
  text-align: center;
}

.boost-container {
  display: flex;
  justify-content: center;
  width: auto;
  border-radius: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 6px 15px;
  font-weight: bold;
  color: var(--secondary-text-color);
  background-color: var(--bg-tertiary);
}

.boost-container div {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.boost-container div .slash {
  margin: 0 5px;
}

.boost-container div img {
  width: 20px;
  margin-right: 5px;
}

.balance-area {
  display: flex;
  width: 92%;
  margin: 0 auto;
  gap: 10px;
}

.balance-area div {
  background: linear-gradient(
    155.03deg,
    var(--primary-gradient-start) 23.72%,
    var(--primary-gradient-end) 95.34%
  );
  border: 1px solid var(--secondary-color);
  color: var(--text-color);
  padding: 12px 8px 10px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.one {
  flex: 0 0 44%;
  /* İlk alan %50 */
}

.two,
.three {
  flex: 0 0 calc(27% - 5px);
  /* Diğer iki alan %25'er (gap'i hesaba katarak) */
}

.one,
.two,
.three {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.one strong,
.two strong,
.three strong {
  margin-top: -3px;
  font-weight: bold;
  color: var(--highlight-color);
  font-size: 20px;
}

.one strong img {
  position: relative;
  top: -1.2px;
}

@keyframes fadeOutAndMoveUp {
  0% {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }

  100% {
    opacity: 0;
    transform: translateY(-20vh) translateX(-50%);
  }
}

.circle {
  position: relative;
  padding: 35px 0 10px;
}

.plus-one {
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary-text-color);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: fadeOutAndMoveUp 1s ease forwards;
}

.booster-container {
  display: flex;
  flex-wrap: wrap;
  width: 92%;
}

.booster {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--secondary-color-2);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.booster .logo {
  width: 48px;
  height: 48px;
  padding: 6px;
  margin-right: 15px;
  background-color: #403939;
  border-radius: 50%;
}

.booster .content {
  flex: 1;
}

.booster .content h2 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 0;
}

.booster .content h2 small {
  font-size: 14px;
  position: relative;
  top: -3px;
  left: 4px;
  color: var(--button-hover);
}

.booster .content p {
  font-size: 16px;
  margin-bottom: 5px;
}

.booster .content .inline-divs {
  display: flex;
}

.booster .content .inline-divs > div {
  margin-right: 15px;
  color: var(--text-color);
}

.booster .content .inline-divs img {
  position: relative;
  top: -2px;
}

.modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
}

.modal-content {
  background: linear-gradient(
    155.03deg,
    var(--primary-gradient-start) 50.72%,
    var(--primary-gradient-end) 95.34%
  );
  border: 1px solid var(--secondary-color);
  width: 92%;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content p {
  margin-bottom: 20px;
  color: var(--text-color);
}

.modal-content .button {
  background-color: var(--button-background);
  color: var(--button-text);
  border: none;
  width: 100%;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

.modal-content .button:hover {
  background-color: var(--button-hover);
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 22px;
}

.hidden {
  display: none;
}

.userlist-container {
  display: flex;
  flex-wrap: wrap;
  width: 92%;
  margin: 0 auto;
}

.list-container {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 10px;
  width: 100%;
}

.userlist-container .list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.userlist-container h5 {
  margin-bottom: 10px;
  margin-left: 10px;
  font-size: 18px;
}

.userlist-container small {
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
  padding-bottom: 12px;
}

.list-container .list-top {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.list-container .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #151517;
  min-height: 50px;
  padding: 0 16px 0 0;
}

.list-container .user-sticky {
  position: sticky;
  bottom: 69px;
  max-width: 480px;
  color: var(--highlight-color);
  background-color: #21212b;
  border-radius: 0;
  min-height: 50px;
  border: 0;
}

.list-container .left-side {
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-container .position {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff4d;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.list-container .name {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0;
}

.list-container .my-name {
  color: var(--highlight-color);
}

.list-container .right-side {
  max-width: 86px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  color: var(--highlight-color);
  margin-bottom: 0;
}

.list-container .list-top > *:not(:last-child) {
  border-bottom: 1px solid #212121;
}

.list-container .border-gradient-top {
  background: linear-gradient(155.03deg, #1d1d20 23.72%, #2b2c3000 95.34%);
  padding: 1px;
  border-radius: 17px 17px 0 0;
}

.leaderboard-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  width: 92%;
}

.leaderboard-tabs .tab-button {
  background-color: #2c2c2c;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.leaderboard-tabs .tab-button:first-child {
  border-radius: 5px 0 0 5px;
}

.leaderboard-tabs .tab-button:last-child {
  border-radius: 0 5px 5px 0;
}

.leaderboard-tabs .tab-button.active {
  background-color: #4a4a4a;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.ref-container {
  display: flex;
  flex-wrap: wrap;
  width: 92%;
}

.ref-container h1 {
  color: var(--text-color);
  font-size: 28px;
  margin-top: 30px;
}

.ref {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--secondary-color-2);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.ref .logo {
  width: 48px;
  height: 48px;
  padding: 6px;
  margin-right: 15px;
  background-color: #403939;
  border-radius: 50%;
}

.ref .content {
  flex: 1;
}

.ref .content h2 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 0;
}

.ref .content p {
  font-size: 16px;
  margin-bottom: 5px;
}

.ref .content .inline-divs {
  display: flex;
}

.ref .content .inline-divs > div {
  margin-right: 15px;
  color: var(--text-color);
}

.ref .content .inline-divs > div strong {
  color: var(--highlight-color);
}

.ref .content .inline-divs img {
  position: relative;
  top: -2px;
}

.invite-friend {
  display: flex;
  align-items: center;
  width: calc(100%);
  margin-top: 10px;
  margin-bottom: 20px;
}

.invite-friend button {
  height: 40px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--button-background);
  color: var(--button-text);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

.invite-friend i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  background-color: var(--button-background);
  margin-left: 10px;
}

.task-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 10px;
  width: 92%;
}

.tab-button {
  flex: 1;
  padding: 10px;
  background-color: var(--secondary-color);
  border: none;
  color: var(--text-color);
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 15px;
}

.tab-button:not(:last-child) {
  margin-right: 10px;
}

.tab-button.active {
  background-color: var(--highlight-color);
  color: var(--button-text);
  font-weight: 600;
}

.tab-content {
  display: none;
  width: 100%;
}

.tab-content.active {
  display: block;
}

.task-container {
  display: flex;
  flex-wrap: wrap;
  width: 92%;
}

.task {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--secondary-color-2);
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  margin-bottom: 10px;
}

.task-container h1 {
  color: var(--text-color);
  font-size: 28px;
  margin-top: 30px;
}

.task .logo {
  max-width: 40px;
  height: 40px;
  border-radius: 5px;
  margin-right: 15px;
}

.task .content {
  flex: 1;
}

.task .content h2 {
  font-size: 18px;
  margin-bottom: 0px;
  margin-top: 0;
  color: var(--secondary-text-color);
}

.task .content p {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--secondary-text-color);
}

.task i {
  font-size: 25px;
  color: var(--secondary-text-color);
}

.task .check-task {
  font-size: 13px;
  color: var(--highlight-color);
  margin-bottom: 3px;
}

.task .check-task i {
  font-size: 13px !important;
  color: var(--highlight-color);
  margin-right: 2px;
}

.task .content .inline-divs {
  display: flex;
}

.task .content .inline-divs > div {
  margin-right: 15px;
  color: var(--text-color);
  font-size: 15px;
  margin-top: 2px;
}

.task .content .inline-divs img {
  position: relative;
  top: -2px;
}

.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  gap: 20px;
}

.button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.go-button,
.check-button {
  width: calc(50% - 10px);
}

.go-button {
  background-color: #4caf50;
  color: white;
}

.check-button {
  background-color: #008cba;
  color: white;
}

.close-button {
  width: 100%;
  background-color: #f44336;
  color: white;
  margin-top: 20px;
}

.coin-explosion {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

.coin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: gold;
  border-radius: 50%;
  animation: coinFall linear forwards;
}

@keyframes coinFall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.fa-check-circle.completed {
  color: var(--highlight-color);
}

.go-button.disabled,
.check-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.check-please {
  color: var(--check-color);
  font-size: 12px;
}

.button-container {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.button-container .button {
  width: calc(50% - 5px);
}

.wallet-container {
  display: flex;
  flex-wrap: wrap;
  width: 92%;
}

.wallet {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--secondary-color-2);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.wallet .content {
  flex: 1;
}

.wallet .content h2 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 0;
}

.wallet .content p {
  font-size: 16px;
  margin-bottom: 5px;
}

.address {
  display: flex;
  align-items: center;
  width: calc(100%);
  margin-top: 0;
}

.address button {
  height: 40px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--button-background);
  color: var(--button-text);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

.address i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  background-color: var(--button-background);
  margin-left: 10px;
}

.content-area {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 20px;
  font-family: Arial, sans-serif;
}

.bonus-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  width: 92%;
  margin: 5px auto;
}

.bonus-box {
  background: linear-gradient(
    var(--primary-gradient-start),
    var(--primary-gradient-end)
  );
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  padding: 5px 10px;
  width: calc(33.33% - 8px);
  box-sizing: border-box;
  text-align: center;
  transition: all 0.1s ease;
  margin-bottom: 8px;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bonus-box.active {
  opacity: 1;
  box-shadow: 0 0 5px var(--highlight-color);
  border-color: var(--highlight-color);
}

.bonus-day {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--highlight-color);
}

.bonus-amount {
  font-size: 16px;
  color: var(--secondary-text-color);
  margin-bottom: 0px;
}

.claim-button {
  background-color: var(--button-background);
  color: var(--button-text);
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  width: 92%;
  margin-top: 5px;
}

.claim-button:hover:not(.disabled) {
  background-color: var(--button-hover);
}

.claim-button-disabled {
  background-color: var(--button-hover) !important;
  color: var(--secondary-text-color);
  cursor: not-allowed;
  opacity: 0.6;
}

.bonus-box.claimed {
  background: linear-gradient(#45a049, #2e7d32);
  border-color: #4caf50;
  opacity: 1;
  box-shadow: 0 0 5px #4caf50;
}

.bonus-box.claimed .bonus-day,
.bonus-box.claimed .bonus-amount {
  color: #ffffff;
}

.bonus-box.claimed .claim-button {
  display: none;
}

.section-content {
  border: 1px solid var(--secondary-color);
  color: var(--text-color);
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
  width: 92%;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
}

.section-content h2 {
  color: var(--secondary-text-color);
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 0;
}

.section-content p {
  color: var(--highlight-color);
  font-size: 13px;
  margin-top: 1px;
}

@keyframes gentle-pulse {
  0%,
  100% {
    transform: scale(1);
    color: var(--text-color);
  }

  50% {
    transform: scale(1.05);
    color: var(--highlight-color);
  }
}

.daily-bonus-link {
  animation: gentle-pulse 4s ease-in-out infinite;
  transition: transform 0.3s ease, color 0.3s ease;
}

.daily-bonus-link:hover {
  animation: none;
  transform: scale(1.1);
  color: var(--highlight-color);
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#loading-overlay .avatar-circle {
  width: 90px;
  height: 90px;
  background-color: var(--highlight-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--secondary-color);
  border-top: 3px solid var(--highlight-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loading-text {
  color: var(--text-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.loading-tip {
  color: var(--highlight-color);
  font-size: 14px;
  max-width: 300px;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.game-logo {
  width: 100px;
  margin-bottom: 20px;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--secondary-color);
  border-top: 3px solid var(--highlight-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loading-text {
  color: var(--text-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.loading-tip {
  color: var(--highlight-color);
  font-size: 14px;
  max-width: 300px;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fade-out {
  opacity: 0;
}

.claim-bonus-button {
  background-color: var(--highlight-color);
  border: none;
  padding: 2vmin 5vmin;
  border-radius: 6vmin;
  font-weight: bold;
  width: 66%;
  font-size: 4vmin;
  margin: 2vmin 0 5vmin;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.claim-bonus-button .bonus-text {
  flex-grow: 1;
  text-align: left;
  color: var(--secondary-color);
}

.claim-bonus-button .bonus-amount {
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-weight: bold;
  color: var(--secondary-color);
}

.claim-bonus-button .bonus-amount img {
  margin-right: 3px;
  vertical-align: middle;
}

.claim-bonus-button .bonus-amount .amount-value {
  display: inline-block;
  vertical-align: middle;
  color: var(--background-color);
}

/* Prevent color change when circle is clicked */
.circle:active + .claim-bonus-button,
.circle:focus + .claim-bonus-button {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a) !important;
  color: #ffffff;
}

.grow-shrink {
  animation: grow-shrink 0.2s ease;
}

@keyframes grow-shrink {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

#miner-image {
  display: block;
}

.airdrop {
  width: 92%;
}

.airdrop-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.airdrop-list {
  list-style-type: none;
  padding: 0;
  border: 1px solid var(--secondary-color-2);
  padding: 20px;
  border-radius: 15px;
}

.airdrop-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

.airdrop-item i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.airdrop-item.completed i {
  color: #5cb85c;
}

.airdrop-item:not(.completed) i {
  color: #ccc;
}

.airdrop-item span {
  flex-grow: 1;
}

/**/
/**/
.league {
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}

.league .league-icon {
  width: 42px;
  height: 42px;
  margin-right: 15px;
}

.league .league-info {
  flex-grow: 1;
}

.league .league-name {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: var(--secondary-text-color);
}

.league .league-details {
  display: flex;
  font-size: 14px;
}

.league .league-details span {
  margin-right: 15px;
}

.league .claim-button {
  color: var(--button-text);
  border: none;
  border-radius: 5px;
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  max-width: 70px !important;
  text-align: center;
}

/* Claimable: yellow */
.league .claimable {
  background-color: #ffd700;
}

/* Claimed: green */
.league .claimed {
  background-color: #4caf50;
  color: var(--secondary-text-color);
  cursor: not-allowed;
}

/* Waiting: orange */
.league .waiting {
  background-image: linear-gradient(to right, #4caf50, #4caf50);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.3s ease-in-out;
}

.league .claim-button:hover:not(:disabled) {
  background-color: var(--button-hover);
}

/**/
/**/
.referral-bonus {
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}

.referral-bonus .referral-icon {
  width: 42px;
  height: 42px;
  margin-right: 15px;
}

.referral-bonus .referral-info {
  flex-grow: 1;
}

.referral-bonus .referral-name {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: var(--secondary-text-color);
}

.referral-bonus .referral-details {
  display: flex;
  font-size: 14px;
}

.referral-bonus .referral-details span {
  margin-right: 15px;
}

.referral-bonus .claim-button {
  color: var(--button-text);
  border: none;
  border-radius: 5px;
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  max-width: 70px !important;
  text-align: center;
}

/* Claimable: yellow */
.referral-bonus .claimable {
  background-color: #ffd700;
}

/* Claimed: green */
.referral-bonus .claimed {
  background-color: #4caf50;
  color: var(--secondary-text-color);
  cursor: not-allowed;
}

/* Waiting: orange */
.referral-bonus .waiting {
  background-image: linear-gradient(to right, #4caf50, #4caf50);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.3s ease-in-out;
}

.referral-bonus .claim-button:hover:not(:disabled) {
  background-color: var(--button-hover);
}
