/* Modern Buton Container */
.modern-btn-group {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* Modern Buton */
.rc-modern-btn {
  position: relative;
  width: 100%;
  max-width: 260px;
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
}

/* Gradient arkaplan */
.update-btn {
  background: linear-gradient(135deg, #22d3ee, #0ea5e9);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14,165,233,0.4);
}

.profit-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 8px 20px rgba(16,185,129,0.4);
}

/* Hover efekti */
.rc-modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* Tıklama efekti */
.rc-modern-btn:active {
  transform: scale(0.97);
}

/* Parlama efekti */
.rc-modern-btn::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.rc-modern-btn:hover::before {
  opacity: 1;
}