.lang-switch a {
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
  font-weight: bold;
}
.lang-switch a.active {
  text-decoration: underline;
}

.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #2963b9, #592ba3);
  color: white;
}

.feature-card {
  border-radius: 12px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.equal-btn {
  width: 120px;
  text-align: center;
}

@media (max-width: 991px) {
  html[dir="rtl"] .navbar-nav {
    flex-direction: column !important;
  }

  .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin-bottom: 10px;
  }

  .navbar-nav .btn {
    width: 90%;
    margin: 5px 0;
  }

  .lang-switch {
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .lang-switch a {
    margin: 0 10px;
  }
}

.robbie-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  z-index: 9999;
  max-width: 300px;
}

#robbie-avatar {
  font-size: 2.2rem;
}

#robbie-text {
  font-weight: 600;
}

.stats-simple-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 30px;
}

.stats-simple-card h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.stats-simple-card small {
  font-size: 0.95rem;
}

#robbie-container {
  cursor: pointer;
}
#robbie-container:hover {
  transform: scale(1.03);
  transition: 0.2s;
}

.helper-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.helper-modal-content {
  background: #fff;
  width: 90%;
  max-width: 450px;
  margin: 10% auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-out;
}

.helper-close {
  float: right;
  font-size: 26px;
  cursor: pointer;
  color: #444;
}

.helper-close:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#donate-button-container {
  transform: scale(1.2);
  transform-origin: top center;
  padding-top: 10px;
}
