.home-buttons-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 32px 0 0 0;
  flex-wrap: wrap;
}
.home-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 280px;
  width: 445px !important;
  height: 80px !important;
  padding: 24px 32px 24px 32px;
  border-radius: 24px;
  background: linear-gradient(90deg, #3fd1b2 0%, #269e8c 100%);
  box-shadow: 0 4px 24px 0 rgba(64,224,208,0.10);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}
.home-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 0 4px #00ffe7, 0 8px 32px 0 rgba(64,224,208,0.18);
  outline: 2px solid #00ffe7;
  outline-offset: 0;
}
.home-btn:hover .home-btn-img {
  transform: translateY(-50%) scale(2.1);
  transition: transform 0.18s;
}
.home-btn-img {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 120px;
  width: auto;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
  z-index: 2;
  pointer-events: none;
}
.home-btn-text {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.01em;
  z-index: 2;
  margin-left: 0;
}
.home-btn-skin .home-btn-img {
  right: 51px;
  top: calc(50% - 10px);
  transform: translateY(-50%) scale(1.95);
  user-select: none;
}
.home-btn-leaders .home-btn-img {
  height: 130px;
  transform: translateY(-50%);
  user-select: none;
}
.home-btn-privil .home-btn-img {
  transform: translateY(-50%) scale(1.8);
  user-select: none;
}
.home-btn-leaders:hover .home-btn-img {
  transform: translateY(-50%) scale(1.3);
  transition: transform 0.18s;
}
.home-btn:last-child {
  margin-right: 0 !important;
}
.home-btn:first-child {
  margin-left: 0 !important;
}
@media (max-width: 900px) {
  .home-buttons-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .home-btn {
    min-width: 220px;
    max-width: 95vw;
    padding: 18px 18px 18px 18px;
  }
  .home-btn-img {
    height: 80px;
    right: 8px;
  }
  .home-btn-text {
    font-size: 1.2rem;
  }
} 