:root {
  --color-background: #000000;
  --color-text: white;
  --color-primary: #4285f4;
  --color-secondary: #4caf50;
  --color-accent: #ffd700;
  --color-warning: #ff4500;
  --color-dark-1: #1e1e1e;
  --color-dark-2: #333;
  --color-dark-3: #555;
  --color-border: #0d380d;
  --color-inactive: #808080;
  --color-star-1: #ffffff;
  --color-star-2: #fffafa;
  --color-star-3: #ffd700;
  --color-star-4: #87cefa;
  --item-bg-color: #1e1e1e;
  --disabled-text-color: #b0b0b0;
  --disabled-bg-color: #e0e0e0;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  padding-bottom: 70px; /* Adjust this value based on the height of your bottom nav */
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.tribes-section {
  background-color: var(--color-dark-1);
  border-radius: 10px;
  padding: 15px;
  margin: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tribes-icon {
  color: var(--color-accent);
  font-size: 24px;
}

.tribes-text {
  margin-left: 10px;
}

.tribes-button {
  background-color: var(--color-dark-2);
  color: var(--color-text);
  border: none;
  padding: 5px 15px;
  border-radius: 15px;
}

.profile-section {
  text-align: center;
  padding: 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-picture {
  width: 90px;
  height: 90px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 46px;
  margin: 0 auto 10px;
}

.username {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: bold;
}

.balance {
  font-size: 38px;
  font-weight: bold;
}

.game-section {
  background-color: var(--color-background);
  border-radius: 10px;
  padding: 15px 15px;
  margin: 15px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.game-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      to right,
      var(--color-secondary) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, var(--color-secondary) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
}

.game-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-icon {
  width: 90px;
  height: 90px;
}

.game-text {
  flex-grow: 1;
  margin-left: 15px;
}

.game-title {
  font-size: 18px;
  font-weight: bold;
}

.game-badge {
  background-color: var(--color-warning);
  color: var(--color-text);
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
  margin-right: 5px;
}

.play-ticket {
  position: relative;
  top: 2px;
}

.play-button {
  background-color: var(--color-text);
  color: var(--color-background);
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
}

.claim-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  margin: 10px 10px 20px 10px;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  width: auto;
  background-color: #4caf50;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.claim-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.claim-button .left-content {
  display: flex;
  align-items: center;
  font-weight: bold;
  z-index: 1;
}

.claim-button .right-content {
  font-weight: bold;
  z-index: 1;
}

.claim-button i {
  margin-right: 10px;
  font-size: 24px;
}

.claim-button.ready {
  background-color: #2196f3;
}

.claim-button.farming {
  background-color: #ffc107;
  color: #333;
}

.claim-button.claim {
  background-color: #9c27b0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(156, 39, 176, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0);
  }
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: rgb(224 13 13 / 30%);
  transition: width 0.5s linear;
}

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

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

.spinning-icon {
  animation: spin 2s linear infinite;
}

.farming-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.farming-info .coins {
  font-size: 18px;
  font-weight: bold;
}

.farming-info .time-left {
  font-size: 14px;
  opacity: 0.7;
}

/** **/
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark-1);
  padding: 10px 0;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--color-dark-2);
  z-index: 1000; /* Ensures it's on top of other elements */
}

.nav-icon {
  text-align: center;
  color: var(--color-inactive);
  font-size: 12px;
  padding: 5px 0;
  cursor: pointer;
}

.nav-icon i {
  font-size: 20px;
  margin-bottom: 5px;
}

.nav-icon.active {
  color: var(--color-text);
}

#wallet {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: Arial, sans-serif;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#wallet .wallet-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
}

#wallet .wallet-header h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#wallet .wallet-header p {
  color: var(--color-text);
  font-size: 16px;
}

#wallet .connect-wallet-btn {
  background-color: var(--color-primary);
  color: var(--color-text);
  border: 1px solid var(--color-text);
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

#wallet .connect-wallet-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

#wallet .points-card {
  border-radius: 10px;
  margin-bottom: 20px;
}

#wallet .points-value {
  font-size: 18px;
  background: var(--color-dark-2);
  padding: 2px 15px;
  border-radius: 10px;
}

#wallet .tabs {
  display: flex;
  background-color: var(--color-dark-2);
  border-radius: 10px;
  overflow: hidden;
}

#wallet .tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

#wallet .tab.active {
  background-color: var(--color-dark-3);
}

#wallet .tab-content {
  display: none;
}

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

#wallet .earn-more,
#wallet .blum-points {
  background-color: var(--color-dark-1);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#wallet .earn-more-icon,
#wallet .blum-points-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-right: 15px;
}

#wallet .earn-more-text,
#wallet .blum-points-text {
  flex-grow: 1;
}

#wallet .earn-more-arrow {
  font-size: 24px;
}

#wallet .blum-points-value {
  font-size: 18px;
  font-weight: bold;
}

#wallet .claim-btn {
  background-color: var(--color-secondary);
  color: var(--color-text);
  border: none;
  padding: 5px 10px;
  border-radius: 15px;
  cursor: pointer;
}

#wallet .coming-soon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  background-color: var(--color-dark-1);
  border-radius: 10px;
}

#wallet .coming-soon i {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

#wallet .coming-soon p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.modal-container {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: flex-end;
}

.modal {
  background-color: var(--color-dark-1);
  border-radius: 20px 20px 0 0;
  padding: 20px;
  width: 100%;
  height: 50vh;
  /* Ekranın yarısını kaplayacak */
  position: relative;
  animation: slideUp 0.3s ease-out;
  display: flex;
  flex-direction: column;
}
@media (max-width: 375px) {
  .modal {
    height: 55vh; /* iPhone SE gibi küçük ekranlar için */
  }
}

.modal-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
}

.close-btn {
  position: absolute;
  right: 5px;
  top: -10px;
  font-size: 28px;
  cursor: pointer;
  font-weight: bold;
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.modal-icon i {
  font-size: 40px;
  color: var(--color-text);
}

.modal h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.modal p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.modal-button {
  background-color: var(--color-text);
  color: var(--color-background);
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
}
.modal-button:disabled {
  background-color: var(
    --disabled-bg-color
  ); /* Set this to the desired disabled background color */
  color: var(
    --disabled-text-color
  ); /* Set this to the desired disabled text color */
  cursor: not-allowed;
  opacity: 0.6; /* Optional: gives a visual cue that the button is disabled */
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .modal {
    border-radius: 20px 20px 0 0;
  }
}

/* Yıldızlı arka plan için ortak stil */
.starry-background {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.starry-background::before,
.starry-background::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  background-image: radial-gradient(
      1px 1px at 10px 10px,
      var(--color-star-1),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      2px 2px at 20px 50px,
      var(--color-star-2),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1px 1px at 30px 100px,
      var(--color-star-3),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 40px 60px,
      var(--color-star-4),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1px 1px at 50px 90px,
      var(--color-star-1),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 60px 150px,
      var(--color-star-2),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      2px 2px at 70px 70px,
      var(--color-star-3),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1px 1px at 80px 120px,
      var(--color-star-4),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 90px 40px,
      var(--color-star-1),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1px 1px at 100px 80px,
      var(--color-star-2),
      rgba(255, 255, 255, 0)
    );
  background-repeat: repeat;
  background-size: 100px 100px;
  animation: twinkle 4s infinite;
  opacity: 0.7;
  z-index: -1;
}

.starry-background::after {
  background-image: radial-gradient(
      1px 1px at 15px 15px,
      var(--color-star-2),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 25px 55px,
      var(--color-star-3),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1px 1px at 35px 105px,
      var(--color-star-4),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      2px 2px at 45px 65px,
      var(--color-star-1),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 55px 95px,
      var(--color-star-2),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1px 1px at 65px 155px,
      var(--color-star-3),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 75px 75px,
      var(--color-star-4),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      2px 2px at 85px 125px,
      var(--color-star-1),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1px 1px at 95px 45px,
      var(--color-star-2),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 105px 85px,
      var(--color-star-3),
      rgba(255, 255, 255, 0)
    );
  background-size: 110px 110px;
  animation: twinkle 6s infinite, float 10s infinite;
  opacity: 0.5;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  25% {
    transform: translateY(-10px) translateX(5px);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }

  75% {
    transform: translateY(-10px) translateX(15px);
  }
}

/* Add this new rule for an additional layer of tiny stars */
.starry-background::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  right: -150%;
  bottom: -150%;
  background-image: radial-gradient(
      0.5px 0.5px at 5px 5px,
      var(--color-star-1),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      0.5px 0.5px at 10px 15px,
      var(--color-star-2),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      0.5px 0.5px at 15px 25px,
      var(--color-star-3),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      0.5px 0.5px at 20px 35px,
      var(--color-star-4),
      rgba(255, 255, 255, 0)
    );
  background-repeat: repeat;
  background-size: 50px 50px;
  animation: twinkle 8s infinite, float 15s infinite;
  opacity: 0.3;
  z-index: -2;
}

#confettiContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  perspective: 1800px;
  /* Derinlik arttı */
}

.confetti {
  position: absolute;
  background: #f2d74e;
  opacity: 0;
  transform-origin: center;
  transform: scale(var(--scale));
  /* Dinamik ölçek */
}

.confetti.circle {
  border-radius: 50%;
  /* Daire şekli */
}

.confetti.triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid;
  /* Üçgen şekli */
  background: none;
  /* Varsayılan arka planı kaldır */
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(var(--scale));
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--finalX), var(--finalY), var(--finalZ))
      rotateX(var(--rotateX)) rotateY(var(--rotateY)) scale(var(--scale));
  }
}

/**/
/**/
#tasks {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

#tasks .task-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
}

#tasks .task-header h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#tasks .connect-task-btn {
  background-color: var(--color-primary);
  color: var(--color-text);
  border: 1px solid var(--color-text);
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

#tasks .connect-task-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

#tasks .task-header p {
  color: var(--color-text);
  font-size: 16px;
}

.tasks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: auto;
  overflow-y: auto;
}

.tasks-list::-webkit-scrollbar {
  width: 12px;
}

.task-item {
  background-color: var(--item-bg-color);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.task-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.modal-task-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.task-content {
  flex-grow: 1;
  min-width: 0;
}

.task-name {
  font-size: 16px;
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-reward {
  font-size: 12px;
  color: var(--color-text);
  margin: 0;
}

.task-status {
  font-size: 20px;
  color: var(--status-color);
  margin-left: 10px;
}

.task-status.waiting {
  color: #ffd700; /* Bekleyen görev için beyaz */
}

.task-status.pending {
  color: #ffffff; /* Başlamış ama tamamlanmamış görev için sarı */
}

.task-status.completed {
  color: #4caf50; /* Tamamlanmış görev için yeşil */
}

.task-status i {
  font-size: 20px;
}

/**/
/**/
#users {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

#users .user-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
}

#users .user-header h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#users .user-copy-btn {
  background-color: var(--color-primary);
  color: var(--color-text);
  border: 1px solid var(--color-text);
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

#users .user-copy-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

#users .user-header p {
  color: var(--color-text);
  font-size: 16px;
}

/**/
/**/
.friend-list {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.friend-list .friend-item {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--item-bg-color);
  margin-bottom: 10px;
  border-radius: 8px;
  width: 100%;
}

.friend-list .avatar {
  width: 50px;
  height: 50px;
  background-color: var(--color-dark-2);
  color: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 10px;
}

.friend-list .friend-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.friend-list .friend-name {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text);
}

.friend-list .friend-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-inactive);
}

.friend-list .friend-icon {
  display: flex;
  align-items: center;
}

.friend-list .friend-points {
  color: var(--color-star-3);
}
.friend-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
}

.friend-header h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.friend-value {
  font-size: 20px;
  font-weight: bold;
}

/**/
/**/
#leaderboard {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

#leaderboard .user-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
}

#leaderboard .user-header h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#leaderboard .user-copy-btn {
  background-color: var(--color-primary);
  color: var(--color-text);
  border: 1px solid var(--color-text);
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

#leaderboard .user-copy-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

#leaderboard .user-header p {
  color: var(--color-text);
  font-size: 16px;
}

/**/
/**/
.leaderboard-list {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.leaderboard-list .leaderboard-item {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--item-bg-color);
  margin-bottom: 10px;
  border-radius: 8px;
  width: 100%;
}

.leaderboard-list .avatar {
  width: 50px;
  height: 50px;
  background-color: var(--color-dark-2);
  color: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 10px;
}

.leaderboard-list .leaderboard-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.leaderboard-list .leaderboard-name {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text);
}

.leaderboard-list .leaderboard-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-inactive);
}

.leaderboard-list .leaderboard-icon {
  display: flex;
  align-items: center;
}

.leaderboard-list .leaderboard-points {
  color: var(--color-star-3);
}
.leaderboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
}

.leaderboard-header h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.leaderboard-value {
  font-size: 20px;
  font-weight: bold;
}

/**/
#game-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

#game-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  z-index: -1;
}

#game-header {
  display: flex;
  justify-content: space-between;
  padding: 8px 20px;
  background-color: rgba(0, 0, 0, 1);
}

#game-header #score {
  font-weight: bold;
  font-size: 25px;
  color: var(--color-secondary);
}

#game-header #timer {
  border-radius: 25px;
  font-weight: bold;
  font-size: 25px;
}

#game-area {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}

#close-game {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #ff4500;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.collect-effect {
  position: absolute;
  font-size: 24px;
  font-weight: bold;
  color: #ffd700;
  pointer-events: none;
}

/**/
.no-friends-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: var(--color-dark-1); /* Updated to use --color-dark-1 */
  border-radius: 10px;
}

.no-friends-box .no-friends-message {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.no-friends-box .no-friends-message h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-star-1); /* Updated to use --color-star-1 */
}

.no-friends-box .no-friends-message p {
  font-size: 14px;
  color: var(--color-inactive); /* Updated to use --color-inactive */
}

.no-friends-box .icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(
    --color-accent
  ); /* Accent color for the circle background */
  border-radius: 50%;
  margin-bottom: 15px;
}

.no-friends-box .icon-circle i {
  font-size: 24px;
  color: var(--color-star-1); /* White color for the icon */
}
